diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index 09917c0..2435f24 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -14,12 +14,12 @@ jobs: - name: Use Node.js 20 uses: actions/setup-node@v2 with: - node-version: '20.10' + node-version: '20.11.1' - name: ๐Ÿ”จ Build Project run: | - npm install - npm run build + yarn install + yarn run build - name: ๐Ÿ“‚ Sync files uses: SamKirkland/FTP-Deploy-Action@v4.3.4 diff --git a/.gitignore b/.gitignore index 17895ec..cc7b141 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,42 @@ -.vscode -node_modules +# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files. + +# Compiled output +/dist +/tmp +/out-tsc +/bazel-out + +# Node +/node_modules +npm-debug.log +yarn-error.log + +# IDEs and editors +.idea/ +.project +.classpath +.c9/ +*.launch +.settings/ +*.sublime-workspace + +# Visual Studio Code +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +.history/* + +# Miscellaneous +/.angular/cache +.sass-cache/ +/connect.lock +/coverage +/libpeerconnection.log +testem.log +/typings + +# System files .DS_Store -dist -dist-ssr -*.local -test/images/actual.png -test/images/diff-*.png -yarn.lock \ No newline at end of file +Thumbs.db diff --git a/LICENSE b/LICENSE deleted file mode 100644 index e5cf234..0000000 --- a/LICENSE +++ /dev/null @@ -1,28 +0,0 @@ -BSD 3-Clause License - -Copyright (c) 2024, Mathieu H. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/angular.json b/angular.json new file mode 100644 index 0000000..69c3a07 --- /dev/null +++ b/angular.json @@ -0,0 +1,125 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "RetroSki": { + "projectType": "application", + "schematics": { + "@schematics/angular:component": { + "style": "scss", + "changeDetection": "OnPush", + "skipTests": true + } + }, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist/", + "index": "src/index.html", + "main": "src/main.ts", + "polyfills": [ + "zone.js" + ], + "tsConfig": "tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + "src/assets", + { + "glob": "**/*", + "input": "src/app/game/images", + "output": "assets/images" + }, + { + "glob": "**/*", + "input": "src/app/game/sounds", + "output": "assets/sounds" + }, + { + "glob": "**/*", + "input": "src/app/game/ghosts", + "output": "assets/ghosts" + }, + { + "glob": "**/*", + "input": "src/app/game/tracks", + "output": "assets/tracks" + }, + { + "glob": "**/*", + "input": "public" + } + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + }, + "configurations": { + "production": { + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kB", + "maximumError": "2MB" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kB", + "maximumError": "4kB" + } + ], + "outputHashing": "all" + }, + "development": { + "optimization": false, + "extractLicenses": false, + "sourceMap": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "RetroSki:build:production" + }, + "development": { + "buildTarget": "RetroSki:build:development" + } + }, + "defaultConfiguration": "development" + }, + "extract-i18n": { + "builder": "@angular-devkit/build-angular:extract-i18n" + }, + "test": { + "builder": "@angular-devkit/build-angular:karma", + "options": { + "polyfills": [ + "zone.js", + "zone.js/testing" + ], + "tsConfig": "tsconfig.spec.json", + "inlineStyleLanguage": "scss", + "assets": [ + { + "glob": "**/*", + "input": "public" + } + ], + "styles": [ + "src/styles.scss" + ], + "scripts": [] + } + } + } + } + } +} diff --git a/biome.json b/biome.json index 3d8a79e..3da28bf 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,20 @@ { - "$schema": "https://biomejs.dev/schemas/1.5.3/schema.json", + "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", + "vcs": { + "enabled": false, + "clientKind": "git", + "useIgnoreFile": false + }, + "files": { + "ignoreUnknown": false, + "ignore": [] + }, + "formatter": { + "enabled": true, + "indentStyle": "space", + "indentWidth": 4, + "lineWidth": 120 + }, "organizeImports": { "enabled": true }, @@ -15,15 +30,11 @@ } } }, - "formatter": { - "enabled": true, - "indentWidth": 4, - "lineWidth": 110 - }, "javascript": { "formatter": { "quoteStyle": "single", - "arrowParentheses": "asNeeded" + "arrowParentheses": "asNeeded", + "trailingCommas": "none" } } } diff --git a/index.html b/index.html deleted file mode 100644 index b8f7eca..0000000 --- a/index.html +++ /dev/null @@ -1,350 +0,0 @@ - - - - - - - - - - - Retro Ski - - - -
-
-
- -
-
-
-
โ„๏ธ Welcome
-
-

- Hey Skier ๐Ÿ˜ƒ
- Welcome on RetroSki, let me give you some informations before joining the mountain -

-
โ“ What is RetroSki ?
-

- RetroSki is a small game development project to challenge your friends on randomly generated 2D alpine ski tracks -

-
๐ŸŽฎ Controls
-

- You can play with a โŒจ๏ธ Keyboard, a ๐ŸŽฎ Gamepad or ๐Ÿ“ฑ Touch
- Note: For the moment touch devices are supported but still experimental. We encourage you to link a bluetooth gamepad to your device -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
During the raceโŒจ๏ธ Keyboard๐ŸŽฎ Gamepad๐Ÿ“ฑ Touch
Start skiing (1x)Touch the screen
CarvingTouch left/right
Braking/SlidingTouch bottom
Show/hide ghosts
Return to the event manager (restart the race)
Toggle debug mode
-
-
- - - - - - - - - - - -
Event ManagerโŒจ๏ธ Keyboard๐ŸŽฎ Gamepad
Leave the event and go back to event setup
-
-
๐Ÿ“˜ Gamer guide
-
Event setup
-

- Helps you to provide few informations to setup your ride event : -

-
    -
  1. Name of the track (if the track doesn't exist it generates a new one)
    - Note: Check one of the preloaded tracks below for your first ride -
  2. -
  3. Style of the track (Slalom, Giant slalom, Super-G or Downhill)
    - Note: This param is only applied when generating a new track. -
  4. -
  5. Name of the first player
  6. -
  7. Name of the second player
  8. -
  9. Number of races (1 to 10 is recommended)
  10. -
- -
Event manager
-

- Home place before and after each race. - It provides informations and results about the current event. -

-
Race
-

- You made it to the top of the hill !
- Now it's time to have fun and enjoy some nice carving !
- Press (1x) โŒจ๏ธ, ๐ŸŽฎ or ๐Ÿ“ฑtouch to start skiing and see you at the finish line !
- โš ๏ธ Don't miss a gate or you'll receive a penalty of 3 seconds -

-
Game setup
-

- You can access to specific game setup by clicking the โš™๏ธ on the top right in menus
- Here you can enable or disable few settings for your race : -

-
    -
  • ๐Ÿ”Š Sounds
  • -
  • ๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘ Spectators (can affect performance)
  • -
  • ๐Ÿ‘ป Ghosts (can affect performance)
  • -
-

- You also have the possibility to reset and restore the game to the default content (tracks, ghosts & record). -

-
๐Ÿ’ก Tips
-
Preloaded tracks
-

By default the game provides 5 tracks, so you can use the same track as your friends even on a different setup.

-
    -
  1. Davos (Giant slalom)
  2. -
  3. Adelboden (Slalom)
  4. -
  5. Soelden (Giant slalom)
  6. -
  7. Wengen (Super-G)
  8. -
  9. Zermatt (Downhill)
  10. -
-
Different track styles
-

- Each track style follow is own rule.
- The dynamic of the skier is also impacted by the style of the track to mimic real world differences.
- Note: For your first rides, Giant slalom is a good style to start gaining some experience -

-
Keep your records
-

- RetroSki use localStorage to persist generated tracks and records.
- You can easily export them and share them with friends by using the browser developper tools. -

-
Performance
-

- Retroski should be playable on any modern device with an updated browser.
- In case of performance trouble, you can try to disable via the game setup the display of spectators and ghosts during the race. -

-
Crash
-

- If your game crash, try to reset & erase all content via the game setup menu to reload original content. -

-
- - - - - - - - - - - - - -
Ghost modeDescription
Absolute best time on the track
Current event best time on the track
-
-
๐Ÿ‘ทโ€โ™‚๏ธ Follow the project
-

- View the project on Github -

-
๐Ÿ… Support the project
-

- RetroSki is a small game development project freely provided to you
- Be sure to enjoy your time on the mountain with us ๐Ÿ˜ƒ
- Feel free to support this project ๐Ÿ™
- โค๏ธ Show your support - -

-
-
- -
-
-
- -
-
-
Game setup
-
-
-
Sounds
- -
-
-
Spectators
- -
-
-
Ghosts
- -
-
- -
-
-
- -
-
-
- -
-
-
Event setup
-
-
-
Track
- -
-
-
Style (only used when generating a new track)
- -
-
-
Skier 1
- -
-
-
Skier 2
- -
-
-
Number of races
- -
-
-
- -
-
-
-
-
-
Event manager
-
-
-
Last results
-
-
-
Race
-
Track
-
-
Gap
-
-
-
-
-
Actual ranking
-
-
-
Position
-
Skier
-
Win(s)
-
Time
-
Difference
-
-
-
-
Next races
-
-
-
Race
-
Track
-
Skier
-
Actual record
-
-
-
-
- -
-
-
-
-
-
-
Position
-
Skier
-
Date
-
Time
-
Difference
-
-
-
- - -
-
- - -
-
- -
-
- - timerGR - - -
-
- - timerER - - -
-
-
-
-
- - - - - \ No newline at end of file diff --git a/package.json b/package.json index c0fbfa8..68cfd59 100644 --- a/package.json +++ b/package.json @@ -1,33 +1,45 @@ { - "name": "retroski", - "version": "1.0.0", - "description": "Retro ski game", - "main": "index.js", - "scripts": { - "dev": "vite", - "format": "npx biome format --write ./src", - "lint": "npx biome lint ./src", - "build": "tsc && vite build", - "serve": "vite preview" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/mathieuher/retroSki.git" - }, - "keywords": ["retroSki"], - "author": "Mathieu H.", - "license": "", - "homepage": "https://mathieuher.github.io/restroski", - "devDependencies": { - "@biomejs/biome": "1.5.3", - "excalibur": "0.28.7", - "rxjs": "7.8.1", - "sass": "^1.70.0", - "typescript": "5.3.3", - "vite": "5.2.8" - }, - "dependencies": { - "@excaliburjs/testing": "^0.25.1", - "date-fns": "^3.3.1" - } + "name": "retro-ski", + "version": "0.0.0", + "scripts": { + "ng": "ng", + "start": "ng serve", + "build": "ng build", + "watch": "ng build --watch --configuration development", + "test": "ng test", + "lint": "biome lint --write src", + "format": "biome format --write src", + "postbuild": "cp src/.htaccess dist/" + }, + "private": true, + "dependencies": { + "@angular/animations": "^18.0.0", + "@angular/common": "^18.0.0", + "@angular/compiler": "^18.0.0", + "@angular/core": "^18.0.0", + "@angular/forms": "^18.0.0", + "@angular/platform-browser": "^18.0.0", + "@angular/platform-browser-dynamic": "^18.0.0", + "@angular/router": "^18.0.0", + "date-fns": "4.1.0", + "dexie": "^4.0.9", + "excalibur": "0.29.3", + "rxjs": "~7.8.0", + "tslib": "^2.3.0", + "zone.js": "~0.14.3" + }, + "devDependencies": { + "@angular-devkit/build-angular": "^18.0.7", + "@angular/cli": "^18.0.7", + "@angular/compiler-cli": "^18.0.0", + "@biomejs/biome": "1.9.4", + "@types/jasmine": "~5.1.0", + "jasmine-core": "~5.1.0", + "karma": "~6.4.0", + "karma-chrome-launcher": "~3.2.0", + "karma-coverage": "~2.2.0", + "karma-jasmine": "~5.1.0", + "karma-jasmine-html-reporter": "~2.1.0", + "typescript": "~5.4.2" + } } diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..57614f9 Binary files /dev/null and b/public/favicon.ico differ diff --git a/readme.md b/readme.md index ad019be..7a1da98 100644 --- a/readme.md +++ b/readme.md @@ -1,148 +1,117 @@

- +

# โ„๏ธ Retro Ski game -Welcome on a small game dev project.
-Put your skis and let's race some randomly generated alpine ski tracks with your friends. +Welcome to a fun, small game development project! +Put on your skis and race down randomly generated alpine ski tracks with friends. ## ๐Ÿ’ป Demo Play RetroSki ## ๐ŸŽฎ Controls -### During the race - + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - +
Action โŒจ๏ธ Keyboard ๐ŸŽฎ Gamepad๐Ÿ“ฑ Touch๐Ÿ“ฑ Touch device
Start skiing (1x)Start riding (1x) Touch the screen
CarvingCarve Touch left/right
Braking/SlidingBrake / slide Touch bottom
Show/hide ghostsLeave the race
Return to the event manager (restart the race)Toggle ghosts
Toggle debug mode
-### Event manager - - - - - - - - - - - -
ActionโŒจ๏ธ Keyboard๐ŸŽฎ Gamepad
Leave the event and go back to event setup
- ## ๐Ÿ“˜ Gamer guide -### Event setup -Welcome to your event setup.
-Here you have to provide few informations before starting to ride : -1. Name of the track (if the track doesn't exist it generates a new one)
-Note: Check one of the preloaded tracks below for your first ride -2. Style of the track (Slalom, Giant slalom, Super-G or Downhill)
-Note: This param is only applied when generating a new track. -3. Name of the first player -4. Name of the second player -5. Number of races (1 to 10 is recommended) - -### Event manager -This screen is the home place before and after each race.
-It provides informations about the current event. +### Ride local +Set up your event here!
+Enter a few details to get started:
+1. Choose a track (or create a new one if it doesnโ€™t exist). +2. Enter rider names. +3. Select the number of races (1 to 10). ### Race -You made it to the top of the hill !
-Now it's time to have fun and enjoy some nice carving !

-Press (1x) โŒจ๏ธ, ๐ŸŽฎ or ๐Ÿ“ฑtouch to start skiing and see you at the finish line !
+Youโ€™re at the top of the hill.
+Time to carve some turns!
+Press (1x) โŒจ๏ธ, ๐ŸŽฎ or ๐Ÿ“ฑtouch to start skiing and see you at the finish line !
โš ๏ธ Don't miss a gate or you'll receive a penalty of 3 seconds ### Game setup -You can access to specific game setup by clicking the โš™๏ธ on the top right in menus
-Here you can enable or disable few settings for your race : +You can access to specific game setup by clicking the โš™๏ธ on the top right in the interface
+Here you can enable or disable few settings for your race: -You also have the possibility to reset and restore the game to the default content (tracks, ghosts & record). +You can also reset the game to default settings, restoring all tracks, ghosts, and records. ## ๐Ÿ’ก Tips -### Preloaded tracks -By default the game provides 5 tracks, so you can use the same track as your friends even on a different setup. -1. Davos (Giant slalom) -2. Adelboden (Slalom) -3. Soelden (Giant slalom) -4. Wengen (Super-G) -5. Zermatt (Downhill) - ### Different track styles -Each track style follow is own rule when generating a new track.
-The dynamic of the skier is also impacted by the style of the track to mimic real world differences.
-Note: For your first rides, Giant slalom is a good style to start gaining some experience +Each track style follows unique rules when generating a new track.
+Track style also impacts skier dynamics, mimicking real-world conditions.
+Note: Giant Slalom is a great track style to start gaining experience! ### Keep your records -RetroSki use localStorage to persist generated tracks and records.
-You can easily export them and share them with friends by using the browser developper tools. +RetroSki uses localStorage and indexedDB to save generated tracks and your records. ### Follow your path -By default ghost mode is activated and you can see your best times while racing
+Ghost mode is activated by default so you can view your best time as you race.
- - + + - - + +
Ghost Description
Absolute best time on the trackGlobal best time on the track
Current event best time on the trackEvent best time on the track
### Performance -Retroski should be playable on any modern device with an updated browser.
-In case of performance trouble, you can try to disable via the game setup the display of spectators and ghosts during the race. +RetroSki is playable on any modern device with an updated browser.
+If you experience performance issues, try disabling spectators, ghosts, and particles in the game setup and reload the game. ### Crash -If your game crash, try to reset & erase all content via the game setup menu to reload original content. +If the game crashes, try resetting and erasing all content via the game setup menu to reload the original content. ## ๐Ÿ‘ทโ€โ™‚๏ธ What's next ? Draft of a roadmap @@ -153,6 +122,6 @@ Feel free to support the project ๐Ÿ™ : Support the project via Stripe ## โšซ Developer guide -1. Run `npm install` to install dependencies -2. Run `npm run dev` to start the Vite server! +1. Run `yarn install` to install dependencies +2. Run `yarn start` to start in local! 3. Have fun! diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 771f866..0000000 --- a/renovate.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": [ - "config:base" - ], - "commitMessagePrefix": "chore:", - "automerge": true, - "major": { - "automerge": false - } -} \ No newline at end of file diff --git a/roadmap.md b/roadmap.md index f64199b..4ebca42 100644 --- a/roadmap.md +++ b/roadmap.md @@ -1,5 +1,23 @@ # Roadmap +## :calendar: Planning for the 2.0.0 +- Improve particles and performance +- Improve skier sprites when turning +- Implement async multiplayer +- Define new default tracks, records and ghosts +- โœ”๏ธ ~~Rework skier dynamic~~ +- โœ”๏ธ ~~Update excaliburjs core version~~ +- โœ”๏ธ ~~Finish learning pages~~ +- โœ”๏ธ ~~Improve scrolling dynamic on event page~~ +- โœ”๏ธ ~~Fix riders name selection~~ +- โœ”๏ธ ~~Update deployment pipeline~~ +- โœ”๏ธ ~~Rework models to prepare online record storage~~ +- โœ”๏ธ ~~Implement track selection~~ +- โœ”๏ธ ~~Use indexedDB instead of localStorage~~ +- โœ”๏ธ ~~Improve device compatibility~~ +- โœ”๏ธ ~~Encapsulate the game in an Angular app~~ +- โœ”๏ธ ~~Redesign user interfaces~~ + ## :calendar: Planning for the 1.0.0 - โœ”๏ธ ~~improve performance~~ - โœ”๏ธ ~~Add intro/help page to provide basic informations in-game~~ @@ -17,7 +35,7 @@ - โœ”๏ธ ~~Improve sounds~~ - โœ”๏ธ ~~Add a counter for missed gates and display it in the results~~ - โœ”๏ธ ~~Playable on mobile/touch devices via Touch controls~~ -- โœ”๏ธ ~Add a setup screen to group all setup for user (Sounds, Ghosts, Spectators, ..)~ +- โœ”๏ธ ~~Add a setup screen to group all setup for user (Sounds, Ghosts, Spectators, ..)~~ ## :bulb: Further ideas - Implement local multiplayer (same game or dual game) diff --git a/src/.htaccess b/src/.htaccess new file mode 100644 index 0000000..fde78e5 --- /dev/null +++ b/src/.htaccess @@ -0,0 +1,11 @@ + + RewriteEngine On + + # Redirection of requests to index.html + RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR] + RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d + RewriteRule ^.*$ - [NC,L] + # Redirect all non-file routes to index.html + RewriteRule ^(?!.*\.).*$ index.html [NC,L] + + \ No newline at end of file diff --git a/src/actors/gate.ts b/src/actors/gate.ts deleted file mode 100644 index f10f55b..0000000 --- a/src/actors/gate.ts +++ /dev/null @@ -1,160 +0,0 @@ -import { Actor, Color, Line, Vector, vec } from 'excalibur'; -import { Config } from '../config'; -import { Pole } from './pole'; -import { GateDetector } from './gate-detector'; -import { Race } from '../scenes/race'; -import { StockableGate } from '../models/stockable-gate'; -import { Resources } from '../resources'; -import { GatesConfig } from '../models/gates-config'; -import { ScreenManager } from '../utils/screen-manager'; - -export class Gate extends Actor { - public config: GatesConfig; - public isFinalGate!: boolean; - public sectorNumber?: number; - public passed = false; - - private leftPole?: Pole; - private rightPole?: Pole; - private gateDetector?: GateDetector; - private sectorLine?: Actor; - private gateNumber: number; - private polesColor: 'red' | 'blue'; - private missed = false; - - constructor( - config: GatesConfig, - position: Vector, - width: number, - color: 'red' | 'blue', - gateNumber: number, - isFinalGate = false, - sectorNumber?: number, - ) { - super({ - pos: position, - width: width, - height: isFinalGate ? Config.FINAL_POLE_HEIGHT : config.poleHeight, - anchor: vec(0, 0.5), - z: 5, - }); - - this.config = config; - this.isFinalGate = isFinalGate; - this.sectorNumber = sectorNumber; - this.polesColor = color; - this.gateNumber = gateNumber; - - if (this.isFinalGate) { - this.graphics.use(Resources.FinalGate.toSprite()); - } - } - - onInitialize() { - this.on('passed', () => this.onGatePassed()); - this.on('exitviewport', () => { - if (this.isBehind()) { - this.kill(); - } - }); - } - - update(): void { - if (!this.children?.length && ScreenManager.isNearScreen(this, this.scene.camera)) { - this.buildComponents(); - } - - if (!this.passed && !this.missed && this.shouldBePassed()) { - (this.scene as Race).addPenalty(); - this.missed = true; - - if (this.sectorNumber) { - (this.scene as Race).setSector(this.sectorNumber); - } - - if (this.isFinalGate) { - (this.scene as Race).stopRace(); - } - } - } - - public getStockableGate(): StockableGate { - return new StockableGate( - this.pos.x, - this.pos.y, - this.polesColor, - this.width, - this.gateNumber, - this.isFinalGate, - this.sectorNumber, - ); - } - - private shouldBePassed(): boolean { - if ((this.scene as Race).skier?.racing && this.isBehind()) { - return true; - } - return false; - } - - private isBehind(): boolean { - return ScreenManager.isBehind(this.scene.camera.pos, this.pos); - } - - private buildComponents(): void { - const gatePoleWidth = this.isFinalGate ? Config.FINAL_POLE_WIDTH : this.config.poleWidth; - const gatePoleHeight = this.isFinalGate ? Config.FINAL_POLE_HEIGHT : this.config.poleHeight; - - this.leftPole = new Pole(vec(0, 0), this.polesColor, this.config, this.isFinalGate); - this.gateDetector = new GateDetector( - vec(gatePoleWidth + Config.POLE_DETECTOR_MARGIN, 0), - this.width - 2 * (gatePoleWidth + Config.POLE_DETECTOR_MARGIN), - this.isFinalGate ? gatePoleHeight : gatePoleHeight / 2, - this.isFinalGate, - ); - this.rightPole = new Pole( - vec(this.width - gatePoleWidth, 0), - this.polesColor, - this.config, - this.isFinalGate, - ); - - this.addChild(this.leftPole!); - this.addChild(this.gateDetector!); - this.addChild(this.rightPole!); - - if (this.sectorNumber) { - this.sectorLine = new Actor({ anchor: vec(0, 0), z: 0 }); - this.sectorLine.graphics.use( - new Line({ - start: vec(gatePoleWidth - 5, gatePoleHeight / 2), - end: vec(this.width - gatePoleWidth + 5, gatePoleHeight / 2), - color: Color.Red, - thickness: 3.5, - }), - ); - this.sectorLine.graphics.opacity = 0.3; - this.addChild(this.sectorLine); - } - } - - private onGatePassed(): void { - this.passed = true; - if (this.sectorNumber) { - (this.scene as Race).setSector(this.sectorNumber); - } - if (this.isFinalGate) { - (this.scene as Race).stopRace(); - } else { - this.updatePassedPolesGraphics(); - } - } - - private updatePassedPolesGraphics(): void { - for (const child of this.children) { - if (child instanceof Pole) { - child.displayPoleCheck(); - } - } - } -} diff --git a/src/actors/pole.ts b/src/actors/pole.ts deleted file mode 100644 index 7fbbc06..0000000 --- a/src/actors/pole.ts +++ /dev/null @@ -1,56 +0,0 @@ -import { Actor, CollisionStartEvent, CollisionType, Vector, vec, Color } from 'excalibur'; -import { Config } from '../config'; -import { Resources } from '../resources'; -import { Skier } from './skier'; -import { Game } from '../game'; -import { GatesConfig } from '../models/gates-config'; -import { TrackStyles } from '../models/track-styles.enum'; - -export class Pole extends Actor { - private poleColor: 'red' | 'blue'; - private gatesConfig: GatesConfig; - - constructor(position: Vector, color: 'red' | 'blue', gatesConfig: GatesConfig, isFinalPole: boolean) { - super({ - pos: position, - width: isFinalPole ? Config.FINAL_POLE_WIDTH : gatesConfig.poleWidth, - height: isFinalPole ? Config.FINAL_POLE_HEIGHT : gatesConfig.poleHeight, - anchor: vec(0, 0.5), - collisionType: CollisionType.Active, - color: isFinalPole ? Color.fromHex('#DA2F2F') : Color.Transparent, - z: 5, - }); - - this.poleColor = color; - this.gatesConfig = gatesConfig; - - if (!isFinalPole) { - this.graphics.use(gatesConfig.poleSprites.get(color)!); - } - } - - onInitialize() { - this.on('collisionstart', evt => this.onPreCollision(evt)); - } - - public displayPoleCheck(): void { - const checkLayer = this.graphics.layers.create({ - name: 'check', - order: 1, - offset: vec(this.gatesConfig.poleWidth / 2, 0), - }); - checkLayer.graphics.push({ - graphic: this.gatesConfig.poleCheckSprites.get(this.poleColor)!, - options: { anchor: vec(0.5, this.gatesConfig.trackStyle === TrackStyles.SL ? 2.5 : 2) }, - }); - } - - private onPreCollision(evt: CollisionStartEvent): void { - if (evt.other instanceof Skier) { - (this.scene.engine as Game).soundPlayer.playSound( - Resources.PoleHittingSound, - Config.POLE_HIT_SOUND_VOLUME, - ); - } - } -} diff --git a/src/actors/spectator-group.ts b/src/actors/spectator-group.ts deleted file mode 100644 index 899300c..0000000 --- a/src/actors/spectator-group.ts +++ /dev/null @@ -1,115 +0,0 @@ -import { Actor, Engine, Vector, vec, Audio } from 'excalibur'; -import { Config } from '../config'; -import { ScreenManager } from '../utils/screen-manager'; -import { Spectator } from './spectator'; -import { Race } from '../scenes/race'; -import { Game } from '../game'; -import { Resources } from '../resources'; - -export class SpectatorGroup extends Actor { - private engine: Engine; - private side: 'left' | 'right'; - private density: number; - private sound = Config.SPECTATORS_SOUNDS[~~(Math.random() * Config.SPECTATORS_SOUNDS.length)]; - private soundInstance?: Audio; - private shouldPlayIntenseSound = Math.random() < Config.SPECTATORS_INTENSE_SOUND_PROBABILITY; - private shouldPlayBellsSound = Math.random() < Config.SPECTATORS_BELLS_SOUND_PROBABILITY; - private bellsSound = this.shouldPlayBellsSound - ? Config.SPECTATORS_BELLS_SOUNDS[~~(Math.random() * Config.SPECTATORS_BELLS_SOUNDS.length)] - : null; - private bellsSoundInstance?: Audio; - private centerPoint!: Vector; - - constructor(engine: Engine, position: Vector, density: number, side: 'left' | 'right') { - super({ - anchor: vec(0, 0), - pos: position, - height: density * (Config.SPECTATOR_HEIGHT * 0.7), - width: Config.DISPLAY_MIN_MARGIN, - }); - - this.engine = engine; - this.density = density; - this.side = side; - this.centerPoint = vec(this.pos.x + this.width / 2, this.pos.y + this.height / 2); - - this.listenExitViewportEvent(); - } - - update(): void { - if (ScreenManager.isNearScreen(this, this.scene.camera) && !this.children?.length) { - this.buildSpectators(); - (this.engine as Game).soundPlayer.playSound(this.sound, 0.001, true, true); - this.soundInstance = this.sound.instances[this.sound.instanceCount() - 1]; - if (this.shouldPlayBellsSound) { - (this.engine as Game).soundPlayer.playSound(this.bellsSound!, 0.001, true, true); - this.bellsSoundInstance = this.bellsSound!.instances[this.bellsSound!.instanceCount() - 1]; - } - } - - if (this.soundInstance) { - this.adjustSoundVolume(); - } - - if ( - ScreenManager.isBehind(this.scene.camera.pos, this.pos.add(vec(0, this.height))) && - this.shouldPlayIntenseSound - ) { - this.shouldPlayIntenseSound = false; - (this.engine as Game).soundPlayer.playSound(Resources.SpectatorsIntenseSound, 0.3, false, true); - } - - if (this.children?.length) { - this.rotateSpectators(); - } - } - - private listenExitViewportEvent(): void { - this.on('exitviewport', () => this.checkForKill()); - } - - private checkForKill(): void { - if (ScreenManager.isBehind(this.scene.camera.pos, this.pos)) { - this.kill(); - } - } - - onPreKill(): void { - this.soundInstance?.stop(); - this.bellsSoundInstance?.stop(); - } - - private buildSpectators(): void { - for (let i = 1; i <= this.density; i++) { - const xPosition = Math.random() * (this.width - Config.SPECTATOR_WIDTH); - const yPosition = Math.random() * (this.height - Config.SPECTATOR_HEIGHT); - const rotation = this.side === 'left' ? 0 : 180; - this.addChild(new Spectator(vec(xPosition, yPosition), rotation)); - } - } - - private adjustSoundVolume(): void { - const skierYPosition = (this.scene as Race).skier!.pos.y; - const distance = Math.min( - Math.abs(this.pos.y - skierYPosition), - Config.SPECTATORS_MAX_SOUND_DISTANCE, - ); - this.soundInstance!.volume = - Math.max(0.001, 1 - distance / Config.SPECTATORS_MAX_SOUND_DISTANCE) * - (this.density / Config.SPECTATORS_MAX_DENSITY) * - Config.SPECTATORS_SOUND_INTENSITY; - if (this.bellsSoundInstance) { - this.bellsSoundInstance!.volume = - Math.max(0.001, 1 - distance / Config.SPECTATORS_MAX_SOUND_DISTANCE) * - Config.SPECTATORS_BELLS_SOUND_INTENSITY; - } - } - - private rotateSpectators(): void { - const skierPos = (this.scene as Race).skier?.pos; - const angle = Math.atan2(skierPos!.y - this.centerPoint.y, skierPos!.x - this.centerPoint.x); - for (const spectator of this.children as Spectator[]) { - spectator.rotation = angle; - } - } -} diff --git a/src/actors/spectator.ts b/src/actors/spectator.ts deleted file mode 100644 index 4db443e..0000000 --- a/src/actors/spectator.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { Actor, CollisionType, Vector, toRadians, vec, CollisionStartEvent, Sound } from 'excalibur'; -import { Config } from '../config'; -import { Skier } from './skier'; -import { Game } from '../game'; - -export class Spectator extends Actor { - private hitSound!: Sound; - - constructor(position: Vector, rotation: number) { - super({ - anchor: vec(0, 1), - pos: position, - width: Config.SPECTATOR_WIDTH, - height: Config.SPECTATOR_HEIGHT, - rotation: toRadians(rotation), - collisionType: CollisionType.Active, - }); - - const randomizer = Math.random(); - this.useRandomSpectatorGraphic(randomizer); - this.useRandomHitSound(randomizer); - } - - onInitialize() { - this.on('collisionstart', evt => this.onPreCollision(evt)); - } - - private useRandomSpectatorGraphic(randomizer: number): void { - const spriteNumber = ~~(randomizer * Config.SPECTATOR_SPRITES.length); - this.graphics.use(Config.SPECTATOR_SPRITES[spriteNumber]); - } - - private useRandomHitSound(randomizer: number): void { - const soundNumber = ~~(randomizer * Config.SPECTATOR_HIT_SOUNDS.length); - this.hitSound = Config.SPECTATOR_HIT_SOUNDS[soundNumber]; - } - - private onPreCollision(evt: CollisionStartEvent): void { - if (evt.other instanceof Skier) { - (this.scene.engine as Game).soundPlayer.playSound( - this.hitSound, - Config.SPECTATOR_HIT_SOUND_INTENSITY, - false, - true, - ); - } - } -} diff --git a/src/actors/starting-gate.ts b/src/actors/starting-gate.ts deleted file mode 100644 index e45284c..0000000 --- a/src/actors/starting-gate.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { Actor, Vector } from 'excalibur'; -import { Resources } from '../resources'; - -export class StartingGate extends Actor { - constructor(anchor: Vector, position: Vector) { - super({ - anchor: anchor, - pos: position, - width: 42, - height: 3, - }); - - this.graphics.use(Resources.StartingGate.toSprite()); - } -} diff --git a/src/app/app.component.html b/src/app/app.component.html new file mode 100644 index 0000000..8768089 --- /dev/null +++ b/src/app/app.component.html @@ -0,0 +1,7 @@ + +@if(!screenCompatible()) { + + Your screen height is incompatible with Retroski. Please switch to portrait + mode or use a device with a screen height of at least 500 pixels. + +} diff --git a/src/app/app.component.scss b/src/app/app.component.scss new file mode 100644 index 0000000..a1e68ad --- /dev/null +++ b/src/app/app.component.scss @@ -0,0 +1,14 @@ +:host { + display: flex; + justify-content: center; + width: 600px; + height: 1000px; + max-width: 100%; + max-height: 100%; + background-color: var(--color-surface); + + app-notification { + position: fixed; + top: 10dvh; + } +} diff --git a/src/app/app.component.ts b/src/app/app.component.ts new file mode 100644 index 0000000..8bc0ae4 --- /dev/null +++ b/src/app/app.component.ts @@ -0,0 +1,20 @@ +import { Component, signal, type WritableSignal } from '@angular/core'; +import { RouterOutlet } from '@angular/router'; +import { NotificationComponent } from './common/components/notification/notification.component'; + +@Component({ + selector: 'app-root', + standalone: true, + imports: [RouterOutlet, NotificationComponent], + templateUrl: './app.component.html', + styleUrl: './app.component.scss' +}) +export class AppComponent { + protected screenCompatible: WritableSignal; + + constructor() { + this.screenCompatible = signal(screen.height >= 500); + + addEventListener('resize', () => this.screenCompatible.set(screen.height >= 500)); + } +} diff --git a/src/app/app.config.ts b/src/app/app.config.ts new file mode 100644 index 0000000..f84a60d --- /dev/null +++ b/src/app/app.config.ts @@ -0,0 +1,8 @@ +import { type ApplicationConfig, provideZoneChangeDetection } from '@angular/core'; +import { provideRouter } from '@angular/router'; + +import { routes } from './app.routes'; + +export const appConfig: ApplicationConfig = { + providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes)] +}; diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts new file mode 100644 index 0000000..ae93112 --- /dev/null +++ b/src/app/app.routes.ts @@ -0,0 +1,27 @@ +import type { Routes } from '@angular/router'; + +export const routes: Routes = [ + { path: '', loadComponent: () => import('./pages/home/home.component').then(m => m.HomeComponent) }, + { + path: 'learning', + loadComponent: () => import('./pages/learning/learning.component').then(m => m.LearningComponent) + }, + { + path: 'settings', + loadComponent: () => import('./pages/settings/settings.component').then(m => m.SettingsComponent) + }, + { + path: 'ride-local', + loadComponent: () => import('./pages/ride-local/ride-local.component').then(m => m.RideLocalComponent) + }, + { + path: 'local-event', + loadComponent: () => import('./pages/local-event/local-event.component').then(m => m.LocalEventComponent) + }, + { + path: 'create-track', + loadComponent: () => import('./pages/create-track/create-track.component').then(m => m.CreateTrackComponent) + }, + { path: 'race', loadComponent: () => import('./pages/race/race.component').then(m => m.RaceComponent) }, + { path: '**', pathMatch: 'full', redirectTo: '' } +]; diff --git a/src/app/common/components/button-icon/button-icon.component.html b/src/app/common/components/button-icon/button-icon.component.html new file mode 100644 index 0000000..bb682ab --- /dev/null +++ b/src/app/common/components/button-icon/button-icon.component.html @@ -0,0 +1 @@ +{{ icon() }} diff --git a/src/app/common/components/button-icon/button-icon.component.scss b/src/app/common/components/button-icon/button-icon.component.scss new file mode 100644 index 0000000..ba4fa2a --- /dev/null +++ b/src/app/common/components/button-icon/button-icon.component.scss @@ -0,0 +1,30 @@ +:host { + display: inline-flex; + align-items: center; + justify-content: center; + height: 34px; + width: 34px; + border-radius: 50px; + color: var(--color-primary); + cursor: pointer; + transition: background-color var(--transition-time) ease-in-out; + + &.flipped > span { + transform: scaleX(-1); + } + + &.tertiary { + color: var(--color-tertiary); + &:hover { + background-color: var(--color-tertiary-lightest); + } + } + + > span { + font-size: 24px; + } + + &:hover { + background-color: var(--color-primary-lightest); + } +} diff --git a/src/app/common/components/button-icon/button-icon.component.ts b/src/app/common/components/button-icon/button-icon.component.ts new file mode 100644 index 0000000..b98c29e --- /dev/null +++ b/src/app/common/components/button-icon/button-icon.component.ts @@ -0,0 +1,18 @@ +import { ChangeDetectionStrategy, Component, HostBinding, input } from '@angular/core'; + +@Component({ + selector: 'app-button-icon', + standalone: true, + imports: [], + templateUrl: './button-icon.component.html', + styleUrl: './button-icon.component.scss', + changeDetection: ChangeDetectionStrategy.OnPush, + host: { + '[class.flipped]': 'flipped()' + } +}) +export class ButtonIconComponent { + public flipped = input(); + + public icon = input(); +} diff --git a/src/app/common/components/checkbox/checkbox.component.html b/src/app/common/components/checkbox/checkbox.component.html new file mode 100644 index 0000000..43c5433 --- /dev/null +++ b/src/app/common/components/checkbox/checkbox.component.html @@ -0,0 +1,5 @@ + diff --git a/src/app/common/components/checkbox/checkbox.component.ts b/src/app/common/components/checkbox/checkbox.component.ts new file mode 100644 index 0000000..2be4c5a --- /dev/null +++ b/src/app/common/components/checkbox/checkbox.component.ts @@ -0,0 +1,12 @@ +import { Component, model } from '@angular/core'; +import { ButtonIconComponent } from '../button-icon/button-icon.component'; + +@Component({ + selector: 'app-checkbox', + standalone: true, + imports: [ButtonIconComponent], + templateUrl: './checkbox.component.html' +}) +export class CheckboxComponent { + public checked = model(false); +} diff --git a/src/app/common/components/destroyable/destroyable.component.ts b/src/app/common/components/destroyable/destroyable.component.ts new file mode 100644 index 0000000..9151500 --- /dev/null +++ b/src/app/common/components/destroyable/destroyable.component.ts @@ -0,0 +1,16 @@ +import { Directive, type OnDestroy } from '@angular/core'; +import { Subject } from 'rxjs'; + +@Directive() +export class Destroyable implements OnDestroy { + protected destroyed$ = new Subject(); + + public ngOnDestroy(): void { + if (this.destroyed$.closed) { + return; + } + + this.destroyed$.next(); + this.destroyed$.unsubscribe(); + } +} diff --git a/src/app/common/components/expander/expander.component.html b/src/app/common/components/expander/expander.component.html new file mode 100644 index 0000000..e9f6423 --- /dev/null +++ b/src/app/common/components/expander/expander.component.html @@ -0,0 +1,10 @@ +
+
{{ title() }}
+ +
+
+ +
diff --git a/src/app/common/components/expander/expander.component.scss b/src/app/common/components/expander/expander.component.scss new file mode 100644 index 0000000..304f237 --- /dev/null +++ b/src/app/common/components/expander/expander.component.scss @@ -0,0 +1,38 @@ +:host { + display: flex; + flex-direction: column; + flex: 0 0 auto; + overflow: hidden; + + &.expanded { + .content { + height: fit-content; + } + + .header { + app-button-icon { + transform: rotate(180deg); + } + } + } + + .header { + display: flex; + flex: 1 1 auto; + align-items: center; + justify-content: space-between; + cursor: pointer; + + app-button-icon { + transition: var(--transition-time) ease; + } + } + + .content { + display: flex; + flex-direction: column; + height: 0px; + overflow: hidden; + transition: max-height var(--transition-time) ease-in-out; + } +} diff --git a/src/app/common/components/expander/expander.component.ts b/src/app/common/components/expander/expander.component.ts new file mode 100644 index 0000000..0a16ca1 --- /dev/null +++ b/src/app/common/components/expander/expander.component.ts @@ -0,0 +1,18 @@ +import { ChangeDetectionStrategy, Component, HostBinding, input, model, signal } from '@angular/core'; +import { ButtonIconComponent } from '../button-icon/button-icon.component'; + +@Component({ + selector: 'app-expander', + standalone: true, + imports: [ButtonIconComponent], + templateUrl: './expander.component.html', + styleUrl: './expander.component.scss', + changeDetection: ChangeDetectionStrategy.OnPush, + host: { + '[class.expanded]': 'expanded()' + } +}) +export class ExpanderComponent { + public title = input.required(); + public expanded = model(false); +} diff --git a/src/app/common/components/notification/notification.component.html b/src/app/common/components/notification/notification.component.html new file mode 100644 index 0000000..6dbc743 --- /dev/null +++ b/src/app/common/components/notification/notification.component.html @@ -0,0 +1 @@ + diff --git a/src/app/common/components/notification/notification.component.scss b/src/app/common/components/notification/notification.component.scss new file mode 100644 index 0000000..3ab910b --- /dev/null +++ b/src/app/common/components/notification/notification.component.scss @@ -0,0 +1,10 @@ +:host { + display: block; + max-width: 75dvw; + padding: 1rem; + border-radius: var(--border-radius-large); + background-color: var(--color-error-lightest); + color: var(--color-error-darkest); + + font-size: var(--text-small); +} diff --git a/src/app/common/components/notification/notification.component.ts b/src/app/common/components/notification/notification.component.ts new file mode 100644 index 0000000..9c426ca --- /dev/null +++ b/src/app/common/components/notification/notification.component.ts @@ -0,0 +1,11 @@ +import { ChangeDetectionStrategy, Component, input, signal } from '@angular/core'; + +@Component({ + selector: 'app-notification', + standalone: true, + imports: [], + templateUrl: './notification.component.html', + styleUrl: './notification.component.scss', + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class NotificationComponent {} diff --git a/src/app/common/components/ranking-line/ranking-line.component.html b/src/app/common/components/ranking-line/ranking-line.component.html new file mode 100644 index 0000000..b652022 --- /dev/null +++ b/src/app/common/components/ranking-line/ranking-line.component.html @@ -0,0 +1,3 @@ +
{{ position() }}.
+
{{ name() }}
+
{{ time() }}
diff --git a/src/app/common/components/ranking-line/ranking-line.component.scss b/src/app/common/components/ranking-line/ranking-line.component.scss new file mode 100644 index 0000000..c7be3d9 --- /dev/null +++ b/src/app/common/components/ranking-line/ranking-line.component.scss @@ -0,0 +1,34 @@ +:host { + display: flex; + gap: 0.5rem; + font-size: var(--text-standard); + align-items: center; + padding: 0.1rem 0.5rem; + border-radius: var(--border-radius); + + .position, + .name, + .time { + display: flex; + + &.position { + width: 30px; + } + + &.name { + flex: 1 1 auto; + } + + &.time { + justify-content: flex-end; + } + } + + &.current { + background-color: var(--color-tertiary-lightest); + } + + &.diff > .time { + color: var(--color-error); + } +} diff --git a/src/app/common/components/ranking-line/ranking-line.component.ts b/src/app/common/components/ranking-line/ranking-line.component.ts new file mode 100644 index 0000000..5e12e25 --- /dev/null +++ b/src/app/common/components/ranking-line/ranking-line.component.ts @@ -0,0 +1,22 @@ +import { ChangeDetectionStrategy, Component, input } from '@angular/core'; + +@Component({ + selector: 'app-ranking-line', + standalone: true, + imports: [], + templateUrl: './ranking-line.component.html', + styleUrl: './ranking-line.component.scss', + changeDetection: ChangeDetectionStrategy.OnPush, + host: { + '[class.current]': 'currentRider()', + '[class.diff]': 'isDiff()' + } +}) +export class RankingLineComponent { + public currentRider = input(false); + public isDiff = input(false); + + public position = input(1); + public name = input(''); + public time = input(''); +} diff --git a/src/app/common/components/result-line/result-line.component.html b/src/app/common/components/result-line/result-line.component.html new file mode 100644 index 0000000..4e7fd63 --- /dev/null +++ b/src/app/common/components/result-line/result-line.component.html @@ -0,0 +1,7 @@ +
{{ rideLabel() }}
+
{{ name() }}
+@if(ridePosition()) { +
({{ ridePosition() }})
+} @if(time()) { +
{{ time() }}
+} diff --git a/src/app/common/components/result-line/result-line.component.scss b/src/app/common/components/result-line/result-line.component.scss new file mode 100644 index 0000000..58298af --- /dev/null +++ b/src/app/common/components/result-line/result-line.component.scss @@ -0,0 +1,33 @@ +:host { + display: flex; + gap: 0.25rem; + align-items: center; + font-size: var(--text-standard); + padding: 0.1rem 0.5rem; + border-radius: var(--border-radius); + + .ride-label, + .name, + .ride-position, + .time { + display: flex; + text-wrap: nowrap; + + &.ride-label { + width: 75px; + } + + &.name { + flex: 1 1 auto; + } + + &.time { + width: 70px; + justify-content: flex-end; + } + } + + &.current { + background-color: var(--color-tertiary-lightest); + } +} diff --git a/src/app/common/components/result-line/result-line.component.ts b/src/app/common/components/result-line/result-line.component.ts new file mode 100644 index 0000000..28d4079 --- /dev/null +++ b/src/app/common/components/result-line/result-line.component.ts @@ -0,0 +1,25 @@ +import { ChangeDetectionStrategy, Component, computed, input, Input } from '@angular/core'; + +@Component({ + selector: 'app-result-line', + standalone: true, + imports: [], + templateUrl: './result-line.component.html', + styleUrl: './result-line.component.scss', + changeDetection: ChangeDetectionStrategy.OnPush, + host: { + '[class.current]': 'current()' + } +}) +export class ResultLineComponent { + public current = input(); + public type = input<'race' | 'time-attack'>(); + public rideNumber = input(); + public ridePosition = input(); + public name = input(); + public time = input(); + + protected rideLabel = computed(() => { + return this.type() === 'race' ? `Race ${this.rideNumber()}.` : `Try ${this.rideNumber()}.`; + }); +} diff --git a/src/app/common/components/stepper/stepper.component.html b/src/app/common/components/stepper/stepper.component.html new file mode 100644 index 0000000..d7536d1 --- /dev/null +++ b/src/app/common/components/stepper/stepper.component.html @@ -0,0 +1,11 @@ + +Step {{ currentStep() }}/{{ totalStep() }} + diff --git a/src/app/common/components/stepper/stepper.component.scss b/src/app/common/components/stepper/stepper.component.scss new file mode 100644 index 0000000..384f562 --- /dev/null +++ b/src/app/common/components/stepper/stepper.component.scss @@ -0,0 +1,10 @@ +:host { + display: flex; + align-items: center; + gap: 0.5rem; + padding-top: 1rem; + + app-button-icon.hidden { + visibility: hidden; + } +} diff --git a/src/app/common/components/stepper/stepper.component.ts b/src/app/common/components/stepper/stepper.component.ts new file mode 100644 index 0000000..1e726cd --- /dev/null +++ b/src/app/common/components/stepper/stepper.component.ts @@ -0,0 +1,15 @@ +import { ChangeDetectionStrategy, Component, input, model, output } from '@angular/core'; +import { ButtonIconComponent } from '../button-icon/button-icon.component'; + +@Component({ + selector: 'app-stepper', + standalone: true, + imports: [ButtonIconComponent], + templateUrl: './stepper.component.html', + styleUrl: './stepper.component.scss', + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class StepperComponent { + public currentStep = model(1); + public totalStep = input(1); +} diff --git a/src/app/common/components/toolbar/toolbar.component.html b/src/app/common/components/toolbar/toolbar.component.html new file mode 100644 index 0000000..407ad8c --- /dev/null +++ b/src/app/common/components/toolbar/toolbar.component.html @@ -0,0 +1,9 @@ +
+ +
+
+ +
+
+ +
diff --git a/src/app/common/components/toolbar/toolbar.component.scss b/src/app/common/components/toolbar/toolbar.component.scss new file mode 100644 index 0000000..ac0509f --- /dev/null +++ b/src/app/common/components/toolbar/toolbar.component.scss @@ -0,0 +1,26 @@ +:host { + display: flex; + justify-content: center; + align-items: center; + width: 100%; + + .left-actions-container, + .right-actions-container { + width: 30%; + } + + .logo-container { + display: flex; + width: 40%; + justify-content: center; + .small-logo { + width: 40px; + height: 40px; + } + } + + .right-actions-container { + display: flex; + justify-content: flex-end; + } +} diff --git a/src/app/common/components/toolbar/toolbar.component.ts b/src/app/common/components/toolbar/toolbar.component.ts new file mode 100644 index 0000000..617a0bd --- /dev/null +++ b/src/app/common/components/toolbar/toolbar.component.ts @@ -0,0 +1,10 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-toolbar', + standalone: true, + imports: [], + templateUrl: './toolbar.component.html', + styleUrl: './toolbar.component.scss' +}) +export class ToolbarComponent {} diff --git a/src/app/common/db/db.ts b/src/app/common/db/db.ts new file mode 100644 index 0000000..87b7d62 --- /dev/null +++ b/src/app/common/db/db.ts @@ -0,0 +1,24 @@ +import Dexie, { type Table } from 'dexie'; +import type { StockableTrack } from '../../game/models/stockable-track'; +import type { StockableGhost } from '../../game/models/stockable-ghost'; +import type { StockableRecord } from '../../game/models/stockable-record'; + +export class RetroskiDB extends Dexie { + tracks!: Table; + ghosts!: Table; + records!: Table; + + constructor() { + super('retroski'); + this.version(1).stores({ + tracks: '++id, [name+style], builderVersion', + ghosts: 'trackId, eventId', + records: '++id, trackId, rider' + }); + this.on('populate', () => this.populate()); + } + + async populate() {} +} + +export const RETROSKI_DB = new RetroskiDB(); diff --git a/src/app/common/models/local-event.ts b/src/app/common/models/local-event.ts new file mode 100644 index 0000000..842ecf0 --- /dev/null +++ b/src/app/common/models/local-event.ts @@ -0,0 +1,135 @@ +import { format } from 'date-fns'; +import type { Track } from '../../game/models/track'; +import { Rider } from './rider'; +import { Config } from '../../game/config'; +import type { StockableGhost } from '../../game/models/stockable-ghost'; + +export class LocalEventRanking { + public name: string; + public time: number; + + constructor(name: string, time: number) { + this.name = name; + this.time = time; + } + + public get formattedTime(): string { + return format(this.time, Config.FORMAT_TIMING); + } + + public getDiffTime(reference: number): string { + const diff = this.time - reference; + return `+${format(diff, diff >= 60000 ? 'mm:ss:SS' : 'ss:SS')}`; + } +} + +export class LocalEventResult { + public rideNumber: number; + public rider: string; + public time: number; + public date: Date; + + constructor(rideNumber: number, rider: string, time: number, date: Date) { + this.rideNumber = rideNumber; + this.rider = rider; + this.time = time; + this.date = date; + } + + public get formattedTime(): string { + return format(this.time, Config.FORMAT_TIMING); + } +} + +export class LocalEventRace { + public rider: string; + public track: Track; + public raceNumber: number; + + constructor(rider: string, track: Track, raceNumber: number) { + this.rider = rider; + this.track = track; + this.raceNumber = raceNumber; + } +} + +export class LocalEvent { + public id: string; + public racesLimit?: number; + public track?: Track; + public riders?: Rider[]; + public ghost?: StockableGhost; + + constructor(track?: Track, riders?: Rider[], racesLimit?: number) { + this.id = `local-event:${new Date().getTime()}`; + this.track = track; + this.riders = riders ?? [new Rider()]; + this.racesLimit = racesLimit ?? 2; + } + + // How many race are done by all the riders + public get raceCounted(): number | undefined { + let raceCounted = this.racesLimit; + for (const rider of this.riders!) { + if (rider.results.length < raceCounted!) { + raceCounted = rider.results.length; + } + } + return raceCounted; + } + + // Current ranking of the event : Time-attack or Race + public get rankings(): LocalEventRanking[] | undefined { + if (this.type === 'time-attack') { + const bestTimeRankings = this.riders + ?.filter(rider => rider.bestTime) + .sort((r1, r2) => r1.bestTime! - r2.bestTime!); + return bestTimeRankings?.map(ranking => new LocalEventRanking(ranking.name!, ranking.bestTime!)) ?? []; + } + + if (this.raceCounted) { + const raceRankings = this.riders + ?.filter(rider => rider.totalTime) + .sort((r1, r2) => r1.getTimeAfter(this.raceCounted!) - r2.getTimeAfter(this.raceCounted!)); + return raceRankings?.map( + ranking => new LocalEventRanking(ranking.name!, ranking.getTimeAfter(this.raceCounted!)) + ); + } + return undefined; + } + + // All event results from most recent to older + public get results(): LocalEventResult[] { + return ( + this.riders + ?.flatMap(rider => { + return rider.results.map((result, index) => { + return new LocalEventResult(index + 1, result.rider, result.timing, result.date); + }); + }) + .sort((r1, r2) => (r1.date < r2.date ? 1 : -1)) ?? [] + ); + } + + public get incomingRaces(): LocalEventRace[] { + return ( + this.riders + ?.flatMap(rider => this.generateIncomingRace(rider, this.track!, this.racesLimit!)) + .sort((r1, r2) => r1.raceNumber - r2.raceNumber) ?? [] + ); + } + + private generateIncomingRace(rider: Rider, track: Track, races: number): LocalEventRace[] { + const incomingRaces = []; + for (let i = 0; i < races; i++) { + if (rider.results.length <= i) { + incomingRaces.push(new LocalEventRace(rider.name!, track, i + 1)); + } + } + return incomingRaces; + } + + public get type(): 'time-attack' | 'race' { + return this.racesLimit !== undefined ? 'race' : 'time-attack'; + } +} diff --git a/src/app/common/models/result.ts b/src/app/common/models/result.ts new file mode 100644 index 0000000..73db0c4 --- /dev/null +++ b/src/app/common/models/result.ts @@ -0,0 +1,11 @@ +export class Result { + public rider: string; + public date: Date; + public timing: number; + + constructor(rider: string, date: Date, timing: number) { + this.rider = rider; + this.date = date; + this.timing = timing; + } +} diff --git a/src/app/common/models/rider.ts b/src/app/common/models/rider.ts new file mode 100644 index 0000000..cca6606 --- /dev/null +++ b/src/app/common/models/rider.ts @@ -0,0 +1,31 @@ +import type { Result } from './result'; + +export class Rider { + public name?: string; + public results: Result[]; + + constructor(name?: string, results?: Result[]) { + this.name = name; + this.results = results ?? []; + } + + public get totalTime(): number { + return this.results.map(result => result.timing).reduce((acc, curr) => acc + curr) || 0; + } + + public get bestTime(): number | undefined { + return this.results.sort((r1, r2) => r1.timing - r2.timing)?.[0].timing; + } + + public getTimeAfter(race: number): number { + let time = 0; + for (let i = 0; i < race; i++) { + time += this.results[i]?.timing ?? 0; + } + return time; + } + + public get raceCompleted(): number { + return this.results.length; + } +} diff --git a/src/app/common/models/settings.ts b/src/app/common/models/settings.ts new file mode 100644 index 0000000..95e0163 --- /dev/null +++ b/src/app/common/models/settings.ts @@ -0,0 +1,13 @@ +export class Settings { + public sound: boolean; + public ghosts: boolean; + public spectators: boolean; + public particles: boolean; + + constructor(sound = true, ghosts = true, spectators = true, particles = true) { + this.sound = sound; + this.ghosts = ghosts; + this.spectators = spectators; + this.particles = particles; + } +} diff --git a/src/app/common/scss/components.scss b/src/app/common/scss/components.scss new file mode 100644 index 0000000..3f7317d --- /dev/null +++ b/src/app/common/scss/components.scss @@ -0,0 +1,195 @@ +.retro-button { + display: flex; + align-items: center; + justify-content: center; + width: 100%; + background-color: transparent; + box-shadow: none; + height: 40px; + font-size: var(--text-subtitle); + font-family: "Kode mono", monospace; + text-align: center; + border-radius: var(--border-radius-large); + cursor: pointer; + transition: background-color var(--transition-time) ease-in-out; + + border: 1px solid var(--color-primary); + color: var(--color-primary); + + &.tertiary { + border: 1px solid var(--color-tertiary); + color: var(--color-tertiary); + + &:hover:not([disabled]) { + background-color: var(--color-tertiary-lightest); + } + } + + &.error { + border: 1px solid var(--color-error); + color: var(--color-error); + + &:hover:not([disabled]) { + background-color: var(--color-error-lightest); + } + } + + &:hover:not([disabled]) { + background-color: var(--color-primary-lightest); + } + + &[disabled] { + border-color: var(--color-disabled); + color: var(--color-disabled); + cursor: initial; + } +} + +.retro-content { + display: flex; + flex-direction: column; + flex: 1 1 auto; + overflow-y: auto; +} + +.retro-footer { + display: flex; + flex: 1 0 auto; + align-items: flex-end; + justify-content: center; + padding-bottom: 0.5rem; + padding-top: 0.5rem; +} + +.retro-title { + font-size: var(--text-title); + margin: 0; + margin-top: 1.5rem; + margin-bottom: 0.25rem; + color: var(--color-primary); + font-weight: 500; + position: sticky; + top: 0; + background-color: var(--color-surface); +} + +.retro-subtitle { + font-size: var(--text-subtitle); + margin-top: 0.25rem; + margin-bottom: 0.25rem; + color: var(--color-tertiary); + font-weight: 500; + position: sticky; + top: 26px; + background-color: var(--color-surface); +} + +.retro-text { + font-size: var(--text-standard); + color: var(--color-primary); + font-weight: 400; + + &.tertiary { + color: var(--color-tertiary); + } +} + +.retro-placeholder { + font-size: var(--text-small); + padding: 1rem 0.5rem; + text-align: center; + color: var(--color-tertiary-light); +} + +.retro-form-section { + display: flex; + flex-direction: column; + gap: 0.5rem; + margin-bottom: 0.5rem; +} + +.retro-data-line { + display: flex; + justify-content: space-between; + align-items: center; + font-size: var(--text-standard); + gap: 0.5rem; + + .label { + display: flex; + } + + .value { + display: flex; + flex: 1 1 auto; + color: var(--color-tertiary); + } +} + +.retro-form-line { + display: flex; + justify-content: space-between; + align-items: center; + font-size: var(--text-standard); + gap: 0.5rem; + + .label { + display: flex; + flex: 1 1 auto; + align-items: center; + justify-content: space-between; + } + + select, + input { + display: flex; + flex: 1 1 auto; + padding: 0 0.5rem; + } + + select { + min-width: 150px; + max-width: 50%; + } + + input { + padding-inline: 1rem; + min-width: calc(150px - 2rem); + max-width: calc(50% - 2rem); + + &[type="number"] { + min-width: 75px; + max-width: 25%; + } + } +} + +.retro-input { + font-size: var(--text-standard); + border-radius: var(--border-radius-large); + border-color: var(--color-tertiary); + color: var(--color-tertiary); + font-family: var(--text-font-family); + height: 40px; + padding: 0 0.5rem; + outline: none; + border: 1px solid; + + &[type="number"] { + text-align: right; + } +} + +.retro-command { + display: flex; + gap: 1rem; + align-items: center; + font-size: var(--text-small); + color: var(--color-text); + padding: 0.2rem; + + span { + color: var(--color-tertiary); + font-weight: 500; + } +} diff --git a/src/app/common/scss/variables.scss b/src/app/common/scss/variables.scss new file mode 100644 index 0000000..6feb860 --- /dev/null +++ b/src/app/common/scss/variables.scss @@ -0,0 +1,33 @@ +html { + --color-app-background: #1e1e1e; + --color-surface: #ffffff; + --color-primary: #22165f; + --color-primary-lightest: #ede9ff; + --color-tertiary: #9747ff; + --color-tertiary-light: #9f78ca; + --color-tertiary-lightest: #f2e5ff; + --color-success: #10c045; + --color-success-lightest: #9fe4b4; + --color-success-darkest: #004515; + --color-error: #ff3235; + --color-error-lightest: #f7babb; + --color-error-darkest: #700002; + --color-text: var(--color-primary); + --color-disabled: #9c9c9c; + + --text-font-family: "Kode mono", monospace; + --text-big: 32px; + --text-title: 20px; + --text-standard: 14px; + --text-subtitle: 16px; + --text-small: 12px; + + --border-radius: 0.25rem; + --border-radius-large: 0.5rem; + + --transition-time: 250ms; + + --field-max-width: 500px; + + font-size: 16px; +} diff --git a/src/app/common/services/local-event.service.ts b/src/app/common/services/local-event.service.ts new file mode 100644 index 0000000..fdecdd8 --- /dev/null +++ b/src/app/common/services/local-event.service.ts @@ -0,0 +1,41 @@ +import { Injectable } from '@angular/core'; +import { LocalEvent } from '../models/local-event'; +import { Rider } from '../models/rider'; +import type { Track } from '../../game/models/track'; +import type { RaceResult } from '../../game/models/race-result'; +import { Result } from '../models/result'; +import type { StockableGhost } from '../../game/models/stockable-ghost'; + +@Injectable({ + providedIn: 'root' +}) +export class LocalEventService { + private currentEvent?: LocalEvent; + + public getEvent(): LocalEvent | undefined { + return this.currentEvent; + } + + public newEvent(track: Track, riders: string[], racesLimit?: number): LocalEvent { + this.currentEvent = new LocalEvent( + track, + riders.map(rider => new Rider(rider)), + racesLimit + ); + return this.currentEvent; + } + + public addEventResult(result: RaceResult): void { + this.currentEvent!.riders = this.currentEvent!.riders!.map(rider => { + if (rider.name !== result.rider) { + return rider; + } + rider.results.push(new Result(result.rider, result.date, result.timing)); + return rider; + }); + } + + public updateEventGhost(ghost: StockableGhost): void { + this.currentEvent!.ghost = ghost; + } +} diff --git a/src/app/common/services/settings.service.ts b/src/app/common/services/settings.service.ts new file mode 100644 index 0000000..01335e8 --- /dev/null +++ b/src/app/common/services/settings.service.ts @@ -0,0 +1,49 @@ +import { Injectable } from '@angular/core'; +import { Settings } from '../models/settings'; +import { StorageManager } from '../../game/utils/storage-manager'; + +@Injectable({ + providedIn: 'root' +}) +export class SettingsService { + private static SOUND_KEY = 'settings_sound'; + private static GHOSTS_KEY = 'settings_ghost'; + private static SPECTATORS_KEY = 'settings_spectators'; + private static PARTICLES_KEY = 'settings_particles'; + + private settings: Settings; + + constructor() { + this.settings = new Settings( + localStorage.getItem(SettingsService.SOUND_KEY) !== 'false', + localStorage.getItem(SettingsService.GHOSTS_KEY) !== 'false', + localStorage.getItem(SettingsService.SPECTATORS_KEY) !== 'false', + localStorage.getItem(SettingsService.PARTICLES_KEY) !== 'false' + ); + this.settings; + } + + public resetSettings(): void { + this.settings = new Settings(); + } + + public getSettings(): Settings { + return this.settings; + } + + public setSound(value: boolean): void { + this.settings.sound = value; + } + + public setGhosts(value: boolean): void { + this.settings.ghosts = value; + StorageManager.save(SettingsService.GHOSTS_KEY, value ? 'true' : 'false'); + } + + public persistSettings(): void { + StorageManager.save(SettingsService.SOUND_KEY, this.settings.sound ? 'true' : 'false'); + StorageManager.save(SettingsService.SPECTATORS_KEY, this.settings.spectators ? 'true' : 'false'); + StorageManager.save(SettingsService.GHOSTS_KEY, this.settings.ghosts ? 'true' : 'false'); + StorageManager.save(SettingsService.PARTICLES_KEY, this.settings.particles ? 'true' : 'false'); + } +} diff --git a/src/app/common/services/track.service.ts b/src/app/common/services/track.service.ts new file mode 100644 index 0000000..a9b6067 --- /dev/null +++ b/src/app/common/services/track.service.ts @@ -0,0 +1,52 @@ +import { Injectable } from '@angular/core'; +import { from, map, type Observable } from 'rxjs'; +import type { Track } from '../../game/models/track'; +import { RETROSKI_DB } from '../db/db'; +import { StockableTrack } from '../../game/models/stockable-track'; +import type { TrackStyles } from '../../game/models/track-styles.enum'; +import { StockableRecord } from '../../game/models/stockable-record'; +import { StockableGhost } from '../../game/models/stockable-ghost'; + +@Injectable({ + providedIn: 'root' +}) +export class TrackService { + public getTracks$(): Observable { + return from(RETROSKI_DB.tracks.orderBy('name').toArray()).pipe( + map(tracks => tracks.map(track => Object.assign(new StockableTrack(), track))), + map(stockableTracks => stockableTracks.map(stockableTrack => stockableTrack.toTrack())) + ); + } + + public isTrackAvailable$(name: string, style: TrackStyles): Observable { + return from(RETROSKI_DB.tracks.where({ name: name ?? '', style: style }).toArray()).pipe( + map(tracks => tracks.length > 0) + ); + } + + public addTrack$(track: Track): Observable { + return from(RETROSKI_DB.tracks.add(track.toStockable())); + } + + public addTrackRecord$(record: StockableRecord): Observable { + return from(RETROSKI_DB.records.put(record)); + } + + public getTrackRecords$(trackId: number): Observable { + return from(RETROSKI_DB.records.where({ trackId: trackId }).sortBy('timing')).pipe( + map(records => + records.map(record => new StockableRecord(record.trackId, record.player, record.date, record.timing)) + ) + ); + } + + public getTrackGhost$(trackId: number): Observable { + return from(RETROSKI_DB.ghosts.get(trackId)).pipe( + map(ghost => (ghost ? Object.assign(new StockableGhost(), ghost) : undefined)) + ); + } + + public updateTrackGhost$(ghost: StockableGhost): Observable { + return from(RETROSKI_DB.ghosts.put(ghost, ghost.trackId)); + } +} diff --git a/src/actors/gate-detector.ts b/src/app/game/actors/gate-detector.ts similarity index 72% rename from src/actors/gate-detector.ts rename to src/app/game/actors/gate-detector.ts index 5e3f938..71212e7 100644 --- a/src/actors/gate-detector.ts +++ b/src/app/game/actors/gate-detector.ts @@ -1,4 +1,4 @@ -import { Actor, CollisionType, PreCollisionEvent, Vector, vec } from 'excalibur'; +import { Actor, CollisionType, type PreCollisionEvent, type Vector, vec } from 'excalibur'; import { Skier } from './skier'; export class GateDetector extends Actor { @@ -8,17 +8,17 @@ export class GateDetector extends Actor { width: width, height: height, anchor: vec(0, isFinalDetection ? 0.5 : 0), - collisionType: CollisionType.Passive, + collisionType: CollisionType.Passive }); } - onInitialize() { + override onInitialize() { this.on('precollision', evt => this.onPreCollision(evt)); } private onPreCollision(event: PreCollisionEvent): void { if (event.other instanceof Skier) { - this.parent.emit('passed'); + this.parent!.emit('passed'); this.kill(); } } diff --git a/src/app/game/actors/gate.ts b/src/app/game/actors/gate.ts new file mode 100644 index 0000000..a359e49 --- /dev/null +++ b/src/app/game/actors/gate.ts @@ -0,0 +1,153 @@ +import { Actor, Color, Line, type Vector, vec } from 'excalibur'; +import { Config } from '../config'; +import { Pole } from './pole'; +import { GateDetector } from './gate-detector'; +import type { Race } from '../scenes/race'; +import { StockableGate } from '../models/stockable-gate'; +import { Resources } from '../resources'; +import type { GatesConfig } from '../models/gates-config'; +import { ScreenManager } from '../utils/screen-manager'; + +export class Gate extends Actor { + public config: GatesConfig; + public isFinalGate!: boolean; + public sectorNumber?: number; + public passed = false; + + private leftPole?: Pole; + private rightPole?: Pole; + private gateDetector?: GateDetector; + private sectorLine?: Actor; + private gateNumber: number; + private polesColor: 'red' | 'blue'; + private missed = false; + + constructor( + config: GatesConfig, + position: Vector, + width: number, + color: 'red' | 'blue', + gateNumber: number, + isFinalGate = false, + sectorNumber?: number + ) { + super({ + pos: position, + width: width, + height: isFinalGate ? Config.FINAL_POLE_HEIGHT : config.poleHeight, + anchor: vec(0, 0.5), + z: 5 + }); + + this.config = config; + this.isFinalGate = isFinalGate; + this.sectorNumber = sectorNumber; + this.polesColor = color; + this.gateNumber = gateNumber; + + if (this.isFinalGate) { + this.graphics.use(Resources.FinalGate.toSprite()); + } + + this.on('passed', () => this.onGatePassed()); + this.on('exitviewport', () => { + if (this.isBehind()) { + this.kill(); + } + }); + } + + override update(): void { + if (!this.children?.length && ScreenManager.isNearScreen(this, this.scene!.camera)) { + this.buildComponents(); + } + + if (!this.passed && !this.missed && this.shouldBePassed()) { + (this.scene as Race).addPenalty(); + this.missed = true; + + if (this.sectorNumber) { + (this.scene as Race).setSector(this.sectorNumber); + } + + if (this.isFinalGate) { + (this.scene as Race).stopRace(); + } + } + } + + public getStockableGate(): StockableGate { + return new StockableGate( + this.pos.x, + this.pos.y, + this.polesColor, + this.width, + this.gateNumber, + this.isFinalGate, + this.sectorNumber + ); + } + + private shouldBePassed(): boolean { + if ((this.scene as Race).skier?.racing && this.isBehind()) { + return true; + } + return false; + } + + private isBehind(): boolean { + return ScreenManager.isBehind(this.scene!.camera.pos, this.pos); + } + + private buildComponents(): void { + const gatePoleWidth = this.isFinalGate ? Config.FINAL_POLE_WIDTH : this.config.poleWidth; + const gatePoleHeight = this.isFinalGate ? Config.FINAL_POLE_HEIGHT : this.config.poleHeight; + + this.leftPole = new Pole(vec(0, 0), this.polesColor, this.config, this.isFinalGate); + this.gateDetector = new GateDetector( + vec(gatePoleWidth + Config.POLE_DETECTOR_MARGIN, 0), + this.width - 2 * (gatePoleWidth + Config.POLE_DETECTOR_MARGIN), + this.isFinalGate ? gatePoleHeight : gatePoleHeight / 2, + this.isFinalGate + ); + this.rightPole = new Pole(vec(this.width - gatePoleWidth, 0), this.polesColor, this.config, this.isFinalGate); + + this.addChild(this.leftPole!); + this.addChild(this.gateDetector!); + this.addChild(this.rightPole!); + + if (this.sectorNumber) { + this.sectorLine = new Actor({ anchor: vec(0, 0), z: 0 }); + this.sectorLine.graphics.use( + new Line({ + start: vec(gatePoleWidth - 5, gatePoleHeight / 2), + end: vec(this.width - gatePoleWidth + 5, gatePoleHeight / 2), + color: Color.Red, + thickness: 3.5 + }) + ); + this.sectorLine.graphics.opacity = 0.3; + this.addChild(this.sectorLine); + } + } + + private onGatePassed(): void { + this.passed = true; + if (this.sectorNumber) { + (this.scene as Race).setSector(this.sectorNumber); + } + if (this.isFinalGate) { + (this.scene as Race).stopRace(); + } else { + this.updatePassedPolesGraphics(); + } + } + + private updatePassedPolesGraphics(): void { + for (const child of this.children) { + if (child instanceof Pole) { + child.displayPoleCheck(); + } + } + } +} diff --git a/src/app/game/actors/pole.ts b/src/app/game/actors/pole.ts new file mode 100644 index 0000000..cf461f7 --- /dev/null +++ b/src/app/game/actors/pole.ts @@ -0,0 +1,61 @@ +import { Actor, type CollisionStartEvent, CollisionType, type Vector, vec, Color, GraphicsGroup } from 'excalibur'; +import { Config } from '../config'; +import { Resources } from '../resources'; +import { Skier } from './skier'; +import type { Game } from '../game'; +import type { GatesConfig } from '../models/gates-config'; +import { TrackStyles } from '../models/track-styles.enum'; + +export class Pole extends Actor { + private poleColor: 'red' | 'blue'; + private gatesConfig: GatesConfig; + private graphicsGroup: GraphicsGroup; + + constructor(position: Vector, color: 'red' | 'blue', gatesConfig: GatesConfig, isFinalPole: boolean) { + super({ + pos: position, + width: isFinalPole ? Config.FINAL_POLE_WIDTH : gatesConfig.poleWidth, + height: isFinalPole ? Config.FINAL_POLE_HEIGHT : gatesConfig.poleHeight, + anchor: vec(0, 0.5), + collisionType: CollisionType.Active, + color: isFinalPole ? Color.fromHex('#DA2F2F') : Color.Transparent, + z: 5 + }); + + this.poleColor = color; + this.gatesConfig = gatesConfig; + this.graphicsGroup = new GraphicsGroup({ + members: [ + { + graphic: gatesConfig.poleSprites.get(color)!, + offset: vec(0, 0) + } + ] + }); + + if (!isFinalPole) { + this.graphics.use(this.graphicsGroup); + } + } + + override onInitialize() { + this.on('collisionstart', evt => this.onPreCollision(evt)); + } + + public displayPoleCheck(): void { + this.graphicsGroup.members.push({ + graphic: this.gatesConfig.poleCheckSprites.get(this.poleColor)!, + useBounds: false, + offset: this.gatesConfig.trackStyle === TrackStyles.SL ? vec(-2.5, -15) : vec(2, -15) + }); + } + + private onPreCollision(evt: CollisionStartEvent): void { + if (evt.other instanceof Skier) { + (this.scene!.engine as Game).soundPlayer.playSound( + Resources.PoleHittingSound, + Config.POLE_HIT_SOUND_VOLUME + ); + } + } +} diff --git a/src/actors/skier.ts b/src/app/game/actors/skier.ts similarity index 86% rename from src/actors/skier.ts rename to src/app/game/actors/skier.ts index 64c8c3a..07c0d08 100644 --- a/src/actors/skier.ts +++ b/src/app/game/actors/skier.ts @@ -1,10 +1,10 @@ -import { Actor, CollisionType, Engine, ParticleEmitter, vec } from 'excalibur'; +import { Actor, CollisionType, type Engine, type ParticleEmitter, vec } from 'excalibur'; import { Config } from '../config'; import { Resources } from '../resources'; -import { Race } from '../scenes/race'; +import type { Race } from '../scenes/race'; import { ParticlesBuilder } from '../utils/particles-builder'; -import { SkierConfig } from '../models/skier-config'; -import { Game } from '../game'; +import type { SkierConfig } from '../models/skier-config'; +import type { Game } from '../game'; import { SkierActions } from '../models/skier-actions.enum'; import { SkierGraphics } from '../utils/skier-graphics'; @@ -25,18 +25,16 @@ export class Skier extends Actor { height: 30, z: 4, anchor: vec(0.5, 0.5), - collisionType: CollisionType.Fixed, + collisionType: CollisionType.Fixed }); this.skierName = skierName; this.skierConfig = skierConfig; - } - onInitialize() { this.particlesEmitter = ParticlesBuilder.getParticlesEmitter(); this.addChild(this.particlesEmitter); } - update(engine: Engine): void { + override update(engine: Engine): void { const skierAction = this.getSkierCurrentAction(engine); this.updateGraphics(skierAction); if (this.racing || this.finish) { @@ -63,7 +61,7 @@ export class Skier extends Actor { public startRace(): void { this.racing = true; - (this.scene.engine as Game).soundPlayer.playSound(Resources.TurningSound, 0, true, false); + (this.scene!.engine as Game).soundPlayer.playSound(Resources.TurningSound, 0, true, false); } public getSkierCurrentAction(engine: Engine): SkierActions { @@ -114,9 +112,7 @@ export class Skier extends Actor { const angularRotation = this.rotation * (180 / Math.PI); if (angularRotation !== 0) { futurRotation = - angularRotation >= 270 - ? this.rotation + rotationCenterRate - : this.rotation - rotationCenterRate; + angularRotation >= 270 ? this.rotation + rotationCenterRate : this.rotation - rotationCenterRate; } } @@ -174,10 +170,7 @@ export class Skier extends Actor { xVelocity = -lateralVelocity * Config.LATERAL_VELOCITY_ROTATION_RATE * adherenceRate; yVelocity = Math.max(0, this.speed - adherenceRate * lateralVelocity); } - this.vel = vec( - xVelocity * Config.VELOCITY_MULTIPLIER_RATE, - -yVelocity * Config.VELOCITY_MULTIPLIER_RATE, - ); + this.vel = vec(xVelocity * Config.VELOCITY_MULTIPLIER_RATE, -yVelocity * Config.VELOCITY_MULTIPLIER_RATE); } private getAdherenceRate(engine: Engine): number { @@ -200,12 +193,12 @@ export class Skier extends Actor { if ((this.hasBreakingIntention(engine) || forceBreaking) && this.speed) { Resources.TurningSound.volume = Math.min( Config.BRAKING_SOUND_VOLUME, - (this.speed / Config.MAX_SPEED) * Config.BRAKING_SOUND_VOLUME, + (this.speed / Config.MAX_SPEED) * Config.BRAKING_SOUND_VOLUME ); } else if (this.carvingIntention(engine) && this.speed) { Resources.TurningSound.volume = Math.min( Config.CARVING_SOUND_VOLUME, - (this.speed / Config.MAX_SPEED) * Config.CARVING_SOUND_VOLUME * this.carvingIntention(engine), + (this.speed / Config.MAX_SPEED) * Config.CARVING_SOUND_VOLUME * this.carvingIntention(engine) ); } else { Resources.TurningSound.volume = 0; @@ -213,7 +206,7 @@ export class Skier extends Actor { } private emitParticles(engine: Engine, skierAction: SkierActions): void { - if (this.particlesEmitter) { + if (this.particlesEmitter && (engine as Game).settingsService.getSettings().particles) { const speedPercentage = this.speed / Config.MAX_SPEED; if (skierAction === SkierActions.SLIDE_LEFT || skierAction === SkierActions.SLIDE_RIGHT) { this.emitSlidingParticles(speedPercentage, this.slidingIntention(engine), skierAction); @@ -227,14 +220,12 @@ export class Skier extends Actor { } } - private emitSlidingParticles( - speedPercentage: number, - slidingIntensity: number, - skierAction: SkierActions, - ): void { + private emitSlidingParticles(speedPercentage: number, slidingIntensity: number, skierAction: SkierActions): void { this.particlesEmitter.pos.y = 2.5; this.particlesEmitter.radius = 6; - this.particlesEmitter.particleLife = 1500; + this.particlesEmitter.particleLife = 2500; + this.particlesEmitter.minVel = 10; + this.particlesEmitter.maxVel = 50; if (skierAction === SkierActions.SLIDE_LEFT) { this.particlesEmitter.maxAngle = 1.6; this.particlesEmitter.minAngle = 0.5; @@ -244,41 +235,43 @@ export class Skier extends Actor { this.particlesEmitter.minAngle = 1.6; this.particlesEmitter.pos.x = -8; } - this.particlesEmitter.emitParticles(speedPercentage * slidingIntensity * 35); + this.particlesEmitter.emitParticles(speedPercentage * slidingIntensity * 20); } - private emitCarvingParticles( - speedPercentage: number, - carvingIntensity: number, - skierAction: SkierActions, - ): void { - this.particlesEmitter.pos.y = 2.5; + private emitCarvingParticles(speedPercentage: number, carvingIntensity: number, skierAction: SkierActions): void { + this.particlesEmitter.pos.y = -1; this.particlesEmitter.radius = 1; - this.particlesEmitter.particleLife = 450; - this.particlesEmitter.maxAngle = 4.8; - this.particlesEmitter.minAngle = 4.6; + this.particlesEmitter.particleLife = 2000; + this.particlesEmitter.minVel = 1; + this.particlesEmitter.maxVel = 5; + this.particlesEmitter.maxAngle = 1; + this.particlesEmitter.minAngle = 1; this.particlesEmitter.pos.x = skierAction === SkierActions.CARVE_LEFT ? 8 : -8; - this.particlesEmitter.emitParticles(speedPercentage * carvingIntensity * 25); + this.particlesEmitter.emitParticles(speedPercentage * carvingIntensity * 2); } private emitBrakingParticles(speedPercentage: number): void { this.particlesEmitter.pos.y = -10; this.particlesEmitter.radius = 6; - this.particlesEmitter.particleLife = 1500; + this.particlesEmitter.particleLife = 2000; + this.particlesEmitter.minVel = 10; + this.particlesEmitter.maxVel = 50; this.particlesEmitter.maxAngle = 6; this.particlesEmitter.minAngle = 3.4; this.particlesEmitter.pos.x = 0; - this.particlesEmitter.emitParticles(speedPercentage * 25); + this.particlesEmitter.emitParticles(speedPercentage * 20); } private emitRidingParticles(speedPercentage: number): void { this.particlesEmitter.pos.y = 0; - this.particlesEmitter.radius = 3; + this.particlesEmitter.radius = 8; this.particlesEmitter.particleLife = 500; + this.particlesEmitter.minVel = 0; + this.particlesEmitter.maxVel = 0; this.particlesEmitter.maxAngle = 6; this.particlesEmitter.minAngle = 3.4; this.particlesEmitter.pos.x = 0; - this.particlesEmitter.emitParticles(speedPercentage * 10); + this.particlesEmitter.emitParticles(speedPercentage); } private hasBreakingIntention(engine: Engine): boolean { diff --git a/src/app/game/actors/spectator-group.ts b/src/app/game/actors/spectator-group.ts new file mode 100644 index 0000000..849bda5 --- /dev/null +++ b/src/app/game/actors/spectator-group.ts @@ -0,0 +1,112 @@ +import { Actor, type Engine, type Vector, vec, type Audio } from 'excalibur'; +import { Config } from '../config'; +import { ScreenManager } from '../utils/screen-manager'; +import { Spectator } from './spectator'; +import type { Race } from '../scenes/race'; +import type { Game } from '../game'; +import { Resources } from '../resources'; + +export class SpectatorGroup extends Actor { + private engine: Engine; + private side: 'left' | 'right'; + private density: number; + private sound = Config.SPECTATORS_SOUNDS[~~(Math.random() * Config.SPECTATORS_SOUNDS.length)]; + private soundInstance?: Audio; + private shouldPlayIntenseSound = Math.random() < Config.SPECTATORS_INTENSE_SOUND_PROBABILITY; + private shouldPlayBellsSound = Math.random() < Config.SPECTATORS_BELLS_SOUND_PROBABILITY; + private bellsSound = this.shouldPlayBellsSound + ? Config.SPECTATORS_BELLS_SOUNDS[~~(Math.random() * Config.SPECTATORS_BELLS_SOUNDS.length)] + : null; + private bellsSoundInstance?: Audio; + private centerPoint!: Vector; + + constructor(engine: Engine, position: Vector, density: number, side: 'left' | 'right') { + super({ + anchor: vec(0, 0), + pos: position, + height: density * (Config.SPECTATOR_HEIGHT * 0.7), + width: Config.DISPLAY_MIN_MARGIN + }); + + this.engine = engine; + this.density = density; + this.side = side; + this.centerPoint = vec(this.pos.x + this.width / 2, this.pos.y + this.height / 2); + + this.listenExitViewportEvent(); + } + + override update(): void { + if (ScreenManager.isNearScreen(this, this.scene!.camera) && !this.children?.length) { + this.buildSpectators(); + (this.engine as Game).soundPlayer.playSound(this.sound, 0.001, true, true); + this.soundInstance = this.sound.instances[this.sound.instanceCount() - 1]; + if (this.shouldPlayBellsSound) { + (this.engine as Game).soundPlayer.playSound(this.bellsSound!, 0.001, true, true); + this.bellsSoundInstance = this.bellsSound!.instances[this.bellsSound!.instanceCount() - 1]; + } + } + + if (this.soundInstance) { + this.adjustSoundVolume(); + } + + if ( + ScreenManager.isBehind(this.scene!.camera.pos, this.pos.add(vec(0, this.height))) && + this.shouldPlayIntenseSound + ) { + this.shouldPlayIntenseSound = false; + (this.engine as Game).soundPlayer.playSound(Resources.SpectatorsIntenseSound, 0.3, false, true); + } + + if (this.children?.length) { + this.rotateSpectators(); + } + } + + private listenExitViewportEvent(): void { + this.on('exitviewport', () => this.checkForKill()); + } + + private checkForKill(): void { + if (ScreenManager.isBehind(this.scene!.camera.pos, this.pos)) { + this.kill(); + } + } + + override onPreKill(): void { + this.soundInstance?.stop(); + this.bellsSoundInstance?.stop(); + } + + private buildSpectators(): void { + for (let i = 1; i <= this.density; i++) { + const xPosition = Math.random() * (this.width - Config.SPECTATOR_WIDTH); + const yPosition = Math.random() * (this.height - Config.SPECTATOR_HEIGHT); + const rotation = this.side === 'left' ? 0 : 180; + this.addChild(new Spectator(vec(xPosition, yPosition), rotation)); + } + } + + private adjustSoundVolume(): void { + const skierYPosition = (this.scene as Race).skier!.pos.y; + const distance = Math.min(Math.abs(this.pos.y - skierYPosition), Config.SPECTATORS_MAX_SOUND_DISTANCE); + this.soundInstance!.volume = + Math.max(0.001, 1 - distance / Config.SPECTATORS_MAX_SOUND_DISTANCE) * + (this.density / Config.SPECTATORS_MAX_DENSITY) * + Config.SPECTATORS_SOUND_INTENSITY; + if (this.bellsSoundInstance) { + this.bellsSoundInstance!.volume = + Math.max(0.001, 1 - distance / Config.SPECTATORS_MAX_SOUND_DISTANCE) * + Config.SPECTATORS_BELLS_SOUND_INTENSITY; + } + } + + private rotateSpectators(): void { + const skierPos = (this.scene as Race).skier?.pos; + const angle = Math.atan2(skierPos!.y - this.centerPoint.y, skierPos!.x - this.centerPoint.x); + for (const spectator of this.children as Spectator[]) { + spectator.rotation = angle; + } + } +} diff --git a/src/app/game/actors/spectator.ts b/src/app/game/actors/spectator.ts new file mode 100644 index 0000000..5d13f11 --- /dev/null +++ b/src/app/game/actors/spectator.ts @@ -0,0 +1,57 @@ +import { + Actor, + CollisionType, + type Vector, + toRadians, + vec, + type CollisionStartEvent, + type Sound, + CircleCollider +} from 'excalibur'; +import { Config } from '../config'; +import { Skier } from './skier'; +import type { Game } from '../game'; + +export class Spectator extends Actor { + private hitSound!: Sound; + + constructor(position: Vector, rotation: number) { + super({ + anchor: vec(0, 1), + pos: position, + width: Config.SPECTATOR_WIDTH, + height: Config.SPECTATOR_HEIGHT, + rotation: toRadians(rotation), + collisionType: CollisionType.Active + }); + + const randomizer = Math.random(); + this.useRandomSpectatorGraphic(randomizer); + this.useRandomHitSound(randomizer); + } + + override onInitialize() { + this.on('collisionstart', evt => this.onPreCollision(evt)); + } + + private useRandomSpectatorGraphic(randomizer: number): void { + const spriteNumber = ~~(randomizer * Config.SPECTATOR_SPRITES.length); + this.graphics.use(Config.SPECTATOR_SPRITES[spriteNumber]); + } + + private useRandomHitSound(randomizer: number): void { + const soundNumber = ~~(randomizer * Config.SPECTATOR_HIT_SOUNDS.length); + this.hitSound = Config.SPECTATOR_HIT_SOUNDS[soundNumber]; + } + + private onPreCollision(evt: CollisionStartEvent): void { + if (evt.other instanceof Skier) { + (this.scene!.engine as Game).soundPlayer.playSound( + this.hitSound, + Config.SPECTATOR_HIT_SOUND_INTENSITY, + false, + true + ); + } + } +} diff --git a/src/app/game/actors/starting-gate.ts b/src/app/game/actors/starting-gate.ts new file mode 100644 index 0000000..f802a1d --- /dev/null +++ b/src/app/game/actors/starting-gate.ts @@ -0,0 +1,15 @@ +import { Actor, type Vector } from 'excalibur'; +import { Resources } from '../resources'; + +export class StartingGate extends Actor { + constructor(anchor: Vector, position: Vector) { + super({ + anchor: anchor, + pos: position, + width: 42, + height: 3 + }); + + this.graphics.use(Resources.StartingGate.toSprite()); + } +} diff --git a/src/actors/starting-house.ts b/src/app/game/actors/starting-house.ts similarity index 86% rename from src/actors/starting-house.ts rename to src/app/game/actors/starting-house.ts index 61aa526..47e7695 100644 --- a/src/actors/starting-house.ts +++ b/src/app/game/actors/starting-house.ts @@ -12,7 +12,7 @@ export class StartingHouse extends Actor { pos: vec(0, -10), width: 240, height: 180, - z: 11, + z: 11 }); this.graphics.use(Resources.StartingHouse.toSprite()); @@ -20,7 +20,7 @@ export class StartingHouse extends Actor { this.addChild(this.gate); } - public update(): void { + public override update(): void { if (this.canDestroy()) { this.kill(); } @@ -31,6 +31,6 @@ export class StartingHouse extends Actor { } private canDestroy(): boolean { - return !ScreenManager.isNearScreen(this, this.scene.camera); + return !ScreenManager.isNearScreen(this, this.scene!.camera); } } diff --git a/src/app/game/config.ts b/src/app/game/config.ts new file mode 100644 index 0000000..6443b40 --- /dev/null +++ b/src/app/game/config.ts @@ -0,0 +1,221 @@ +import { Axes, Buttons, Keys } from 'excalibur'; +import { Resources } from './resources'; +import { TrackStyles } from './models/track-styles.enum'; + +export class Config { + // DISPLAY + static DISPLAY_WIDTH = 800; + static DISPLAY_HEIGHT = 800; + static CAMERA_ZOOM = 1; + static DISPLAY_MIN_MARGIN = 75; + static DISPLAY_MAX_RIGHT_POSITION = Config.DISPLAY_WIDTH / 2 - Config.DISPLAY_MIN_MARGIN; + static DISPLAY_MAX_LEFT_POSITION = -Config.DISPLAY_MAX_RIGHT_POSITION; + static FRONT_GHOST_DISTANCE = -Config.DISPLAY_HEIGHT / 3.8; + + // SOUND + static RACE_AMBIANCE_SOUND_VOLUME = 0.08; + static BRAKING_SOUND_VOLUME = 0.3; + static CARVING_SOUND_VOLUME = 0.15; + static FINISH_SOUND_VOLUME = 0.2; + static GATE_MISSED_SOUND_VOLUME = 0.25; + static POLE_HIT_SOUND_VOLUME = 0.08; + + // RACE + static MISSED_GATE_PENALTY_TIME = 3000; + static SECTORS_PER_RACE = 2; + static SECTOR_DISPLAY_TIME = 4500; + + // FORMAT + static FORMAT_TIMING = 'mm:ss:SS'; + + // TRACKS + static CURRENT_BUILDER_VERSION = 4; + static DEFAULT_TRACKS = ['soelden', 'davos', 'wengen', 'adelboden', 'zermatt']; + + // CONTROLS + static KEYBOARD_CONTROL_CARVE_RIGHT = Keys.ArrowRight; + static KEYBOARD_CONTROL_CARVE_LEFT = Keys.ArrowLeft; + static KEYBOARD_CONTROL_BRAKE = Keys.Space; + static KEYBOARD_DEBUG_KEY = Keys.D; + static KEYBOARD_RESTART_KEY = Keys.R; + static KEYBOARD_EXIT_KEY = Keys.Escape; + static KEYBOARD_START_KEY = Keys.ArrowUp; + static KEYBOARD_GHOST_KEY = Keys.G; + + static GAMEPAD_AXES_FILTER_RATE = 0.1; + static GAMEPAD_CONTROL_CARVE = Axes.LeftStickX; + static GAMEPAD_CONTROL_BRAKE = Buttons.Face2; + static GAMEPAD_EXIT_BUTTON = Buttons.Select; + static GAMEPAD_RACE_BUTTON = Buttons.Face1; + static GAMEPAD_START_BUTTON = Buttons.Start; + static GAMEPAD_GHOST_BUTTON = Buttons.LeftBumper; + + static TOUCH_BRAKE_ZONE_RATIO = 0.2; + + // DYNAMIC + static MAX_SPEED = 150; + static VELOCITY_MULTIPLIER_RATE = 7 * 0.6; + static LATERAL_VELOCITY_ROTATION_RATE = 1.08; + // ROTATION + static MAX_RIGHT_ROTATION_ANGLE = Math.PI / 2; + static MAX_LEFT_ROTATION_ANGLE = (3 * Math.PI) / 2; + static ROTATION_RECENTER_RATE = 0.2; + + // SLOPE + static INITIAL_SLOPE = 0.115; + + // SKIER + static ACCELERATION_RATE = 3; + static BRAKING_RATE = 1; + static CARVING_ADHERENCE_RATE = 0.9; + static CARVING_BRAKING_RATE = 0.01; + static SLIDING_ADHERENCE_RATE = 0.65; + static SLIDING_BRAKING_RATE = 0.8; + // SKIER SPECIFIC STYLE DYNAMIC + static SL_SKIER_CONFIG = { + windFrictionRate: 0.0025, + carvingRotationRate: 3.2, + carvingOptimalSpeed: 50, + slidingRotationRate: 3.7, + slidingOptimalSpeed: 35 + }; + static GS_SKIER_CONFIG = { + windFrictionRate: 0.0022, + carvingRotationRate: 3.1, + carvingOptimalSpeed: 60, + slidingRotationRate: 3.6, + slidingOptimalSpeed: 45 + }; + static SG_SKIER_CONFIG = { + windFrictionRate: 0.002, + carvingRotationRate: 2.5, + carvingOptimalSpeed: 70, + slidingRotationRate: 3.0, + slidingOptimalSpeed: 50 + }; + static DH_SKIER_CONFIG = { + windFrictionRate: 0.0018, + carvingRotationRate: 2.2, + carvingOptimalSpeed: 75, + slidingRotationRate: 2.7, + slidingOptimalSpeed: 60 + }; + + // GATES + static GATE_MAX_LEFT_POSITION = Config.DISPLAY_MAX_LEFT_POSITION; + static GATE_MAX_RIGHT_POSITION = Config.DISPLAY_MAX_RIGHT_POSITION; + static FINAL_GATE_WIDTH = Config.DISPLAY_WIDTH - 2 * Config.DISPLAY_MIN_MARGIN; + static FINAL_GATE_POSITION = Config.DISPLAY_MAX_LEFT_POSITION; + static GATE_OTHER_SIDE_PROBABILITY = 0.95; + // SPECIFIC TRACK STYLE CONFIG + static SL_GATES_CONFIG = { + trackStyle: TrackStyles.SL, + maxWidth: 114, + minWidth: 90, + maxHorizontalDistance: 192, + minVerticalDistance: 102, + maxVerticalDistance: 162, + minNumber: 41, + maxNumber: 51, + poleWidth: 3, + poleHeight: 20, + poleSprites: new Map([ + ['red', Resources.PoleSlRed.toSprite()], + ['blue', Resources.PoleSlBlue.toSprite()] + ]), + poleCheckSprites: new Map([ + ['red', Resources.PoleCheckRed.toSprite()], + ['blue', Resources.PoleCheckBlue.toSprite()] + ]) + }; + static GS_GATES_CONFIG = { + trackStyle: TrackStyles.GS, + maxWidth: 120, + minWidth: 96, + maxHorizontalDistance: 192, + minVerticalDistance: 120, + maxVerticalDistance: 210, + minNumber: 44, + maxNumber: 54, + poleWidth: 12, + poleHeight: 12, + poleSprites: new Map([ + ['red', Resources.PoleRed.toSprite()], + ['blue', Resources.PoleBlue.toSprite()] + ]), + poleCheckSprites: new Map([ + ['red', Resources.PoleCheckRed.toSprite()], + ['blue', Resources.PoleCheckBlue.toSprite()] + ]) + }; + static SG_GATES_CONFIG = { + trackStyle: TrackStyles.SG, + maxWidth: 144, + minWidth: 114, + maxHorizontalDistance: 210, + minVerticalDistance: 192, + maxVerticalDistance: 300, + minNumber: 46, + maxNumber: 56, + poleWidth: 12, + poleHeight: 12, + poleSprites: new Map([ + ['red', Resources.PoleRed.toSprite()], + ['blue', Resources.PoleBlue.toSprite()] + ]), + poleCheckSprites: new Map([ + ['red', Resources.PoleCheckRed.toSprite()], + ['blue', Resources.PoleCheckBlue.toSprite()] + ]) + }; + static DH_GATES_CONFIG = { + trackStyle: TrackStyles.DH, + maxWidth: 150, + minWidth: 120, + maxHorizontalDistance: 180, + minVerticalDistance: 252, + maxVerticalDistance: 318, + minNumber: 48, + maxNumber: 58, + poleWidth: 12, + poleHeight: 12, + poleSprites: new Map([['red', Resources.PoleRed.toSprite()]]), + poleCheckSprites: new Map([['red', Resources.PoleCheckRed.toSprite()]]) + }; + + // POLES + static POLE_DETECTOR_MARGIN = 18; + static FINAL_POLE_WIDTH = 30; + static FINAL_POLE_HEIGHT = 60; + + // SPECTATORS + static SPECTATOR_HEIGHT = 18; + static SPECTATOR_WIDTH = 18; + static SPECTATOR_SPRITES = [ + Resources.Spectator1.toSprite(), + Resources.Spectator2.toSprite(), + Resources.Spectator3.toSprite(), + Resources.Spectator4.toSprite() + ]; + static SPECTATORS_MAX_DENSITY = 20; + static SPECTATORS_MAX_SOUND_DISTANCE = 300; + static SPECTATORS_SOUND_INTENSITY = 0.15; + static SPECTATORS_SOUNDS = [ + Resources.SpectatorsSound, + Resources.Spectators2Sound, + Resources.Spectators3Sound, + Resources.Spectators4Sound + ]; + static SPECTATORS_INTENSE_SOUND_PROBABILITY = 0.15; + static SPECTATORS_INTENSE_SOUND_INTENSITY = 0.2; + static SPECTATORS_INTENSE_SOUNDS = [Resources.SpectatorsIntenseSound]; + static SPECTATORS_BELLS_SOUND_PROBABILITY = 0.4; + static SPECTATORS_BELLS_SOUND_INTENSITY = 0.2; + static SPECTATORS_BELLS_SOUNDS = [Resources.SpectatorsBellsSound, Resources.SpectatorsBells2Sound]; + static SPECTATOR_HIT_SOUND_INTENSITY = 0.3; + static SPECTATOR_HIT_SOUNDS = [ + Resources.SpectatorHitSound, + Resources.SpectatorHit2Sound, + Resources.SpectatorHit3Sound + ]; +} diff --git a/src/app/game/game.ts b/src/app/game/game.ts new file mode 100644 index 0000000..6af0bcf --- /dev/null +++ b/src/app/game/game.ts @@ -0,0 +1,125 @@ +import { Color, DisplayMode, Engine, Loader } from 'excalibur'; +import { Resources } from './resources'; +import { SoundPlayer } from './utils/sounds-player'; +import { LogoManager } from './utils/logo-manager'; +import { Race } from './scenes/race'; +import { GamepadsManager } from './utils/gamepads-manager'; +import type { SettingsService } from '../common/services/settings.service'; +import { Config } from './config'; +import { EventEmitter } from '@angular/core'; +import type { RaceConfig } from './models/race-config'; +import type { RaceResult } from './models/race-result'; + +export class Game extends Engine { + private resourcesToLoad = [ + Resources.Skier, + Resources.SkierCarving, + Resources.SkierSliding, + Resources.SkierBraking, + + Resources.GlobalGhostSkier, + Resources.GlobalGhostSkierCarving, + Resources.GlobalGhostSkierSliding, + Resources.GlobalGhostSkierBraking, + + Resources.EventRecordGhost, + Resources.EventRecordGhostCarving, + Resources.EventRecordGhostSliding, + Resources.EventRecordGhostBraking, + + Resources.StartingGate, + Resources.StartingHouse, + Resources.PoleRed, + Resources.PoleBlue, + Resources.PoleSlRed, + Resources.PoleSlBlue, + Resources.PoleCheckRed, + Resources.PoleCheckBlue, + Resources.FinalGate, + + Resources.Spectator1, + Resources.Spectator2, + Resources.Spectator3, + Resources.Spectator4, + + Resources.WinterSound, + Resources.StartRaceSound, + Resources.FinishRaceSound, + Resources.GateMissedSound, + Resources.PoleHittingSound, + Resources.TurningSound, + Resources.SpectatorsSound, + Resources.Spectators2Sound, + Resources.Spectators3Sound, + Resources.Spectators4Sound, + Resources.SpectatorsIntenseSound, + Resources.SpectatorHitSound, + Resources.SpectatorHit2Sound, + Resources.SpectatorHit3Sound, + Resources.SpectatorsBellsSound, + Resources.SpectatorsBells2Sound + ]; + + public raceStopped = new EventEmitter(); + + public settingsService: SettingsService; + + public soundPlayer: SoundPlayer; + public gamepadsManager = new GamepadsManager(this); + + private raceConfig: RaceConfig; + + constructor(raceConfig: RaceConfig, settingsService: SettingsService) { + super({ + displayMode: DisplayMode.FitContainerAndFill, + width: 800, + height: 800, + backgroundColor: Color.White, + fixedUpdateFps: 60, + maxFps: 60, + canvasElementId: 'game' + }); + + this.raceConfig = raceConfig; + this.settingsService = settingsService; + this.soundPlayer = new SoundPlayer(settingsService); + } + + initialize() { + this.addScene('race', new Race(this, this.raceConfig)); + + this.start(this.getLoader()).then(() => { + this.goToScene('race'); + }); + } + + override onPreUpdate(_engine: Engine, _delta: number): void { + if (_engine.input.keyboard.wasPressed(Config.KEYBOARD_DEBUG_KEY)) { + _engine.showDebug(!_engine.isDebug); + } + + if (_engine.input.keyboard.wasPressed(Config.KEYBOARD_EXIT_KEY)) { + this.raceStopped.emit(); + } + + if (_engine.input.keyboard.wasPressed(Config.KEYBOARD_GHOST_KEY)) { + this.settingsService.setGhosts(!this.settingsService.getSettings().ghosts); + } + } + + public stopProperly(): void { + this.stop(); + (this.currentScene as Race).cleanRace(); + } + + private getLoader(): Loader { + const loader = new Loader(this.resourcesToLoad); + loader.backgroundColor = 'white'; + loader.logo = LogoManager.base64Image; + loader.logoHeight = 250; + loader.logoWidth = 250; + loader.loadingBarColor = Color.fromHex('#22165f'); + loader.suppressPlayButton = true; + return loader; + } +} diff --git a/src/images/sprites/eventRecordGhost.png b/src/app/game/images/sprites/eventRecordGhost.png similarity index 100% rename from src/images/sprites/eventRecordGhost.png rename to src/app/game/images/sprites/eventRecordGhost.png diff --git a/src/images/sprites/eventRecordGhost_braking.png b/src/app/game/images/sprites/eventRecordGhost_braking.png similarity index 100% rename from src/images/sprites/eventRecordGhost_braking.png rename to src/app/game/images/sprites/eventRecordGhost_braking.png diff --git a/src/images/sprites/eventRecordGhost_carving.png b/src/app/game/images/sprites/eventRecordGhost_carving.png similarity index 100% rename from src/images/sprites/eventRecordGhost_carving.png rename to src/app/game/images/sprites/eventRecordGhost_carving.png diff --git a/src/images/sprites/eventRecordGhost_sliding.png b/src/app/game/images/sprites/eventRecordGhost_sliding.png similarity index 100% rename from src/images/sprites/eventRecordGhost_sliding.png rename to src/app/game/images/sprites/eventRecordGhost_sliding.png diff --git a/src/images/sprites/final_gate.png b/src/app/game/images/sprites/final_gate.png similarity index 100% rename from src/images/sprites/final_gate.png rename to src/app/game/images/sprites/final_gate.png diff --git a/src/images/sprites/globalRecordGhost.png b/src/app/game/images/sprites/globalRecordGhost.png similarity index 100% rename from src/images/sprites/globalRecordGhost.png rename to src/app/game/images/sprites/globalRecordGhost.png diff --git a/src/images/sprites/globalRecordGhost_braking.png b/src/app/game/images/sprites/globalRecordGhost_braking.png similarity index 100% rename from src/images/sprites/globalRecordGhost_braking.png rename to src/app/game/images/sprites/globalRecordGhost_braking.png diff --git a/src/images/sprites/globalRecordGhost_carving.png b/src/app/game/images/sprites/globalRecordGhost_carving.png similarity index 100% rename from src/images/sprites/globalRecordGhost_carving.png rename to src/app/game/images/sprites/globalRecordGhost_carving.png diff --git a/src/images/sprites/globalRecordGhost_sliding.png b/src/app/game/images/sprites/globalRecordGhost_sliding.png similarity index 100% rename from src/images/sprites/globalRecordGhost_sliding.png rename to src/app/game/images/sprites/globalRecordGhost_sliding.png diff --git a/src/images/sprites/pole_blue.png b/src/app/game/images/sprites/pole_blue.png similarity index 100% rename from src/images/sprites/pole_blue.png rename to src/app/game/images/sprites/pole_blue.png diff --git a/src/images/sprites/pole_check_blue.png b/src/app/game/images/sprites/pole_check_blue.png similarity index 100% rename from src/images/sprites/pole_check_blue.png rename to src/app/game/images/sprites/pole_check_blue.png diff --git a/src/images/sprites/pole_check_red.png b/src/app/game/images/sprites/pole_check_red.png similarity index 100% rename from src/images/sprites/pole_check_red.png rename to src/app/game/images/sprites/pole_check_red.png diff --git a/src/images/sprites/pole_red.png b/src/app/game/images/sprites/pole_red.png similarity index 100% rename from src/images/sprites/pole_red.png rename to src/app/game/images/sprites/pole_red.png diff --git a/src/images/sprites/pole_sl_blue.png b/src/app/game/images/sprites/pole_sl_blue.png similarity index 100% rename from src/images/sprites/pole_sl_blue.png rename to src/app/game/images/sprites/pole_sl_blue.png diff --git a/src/images/sprites/pole_sl_red.png b/src/app/game/images/sprites/pole_sl_red.png similarity index 100% rename from src/images/sprites/pole_sl_red.png rename to src/app/game/images/sprites/pole_sl_red.png diff --git a/src/images/sprites/skier.png b/src/app/game/images/sprites/skier.png similarity index 100% rename from src/images/sprites/skier.png rename to src/app/game/images/sprites/skier.png diff --git a/src/images/sprites/skier_braking.png b/src/app/game/images/sprites/skier_braking.png similarity index 100% rename from src/images/sprites/skier_braking.png rename to src/app/game/images/sprites/skier_braking.png diff --git a/src/images/sprites/skier_carving.png b/src/app/game/images/sprites/skier_carving.png similarity index 100% rename from src/images/sprites/skier_carving.png rename to src/app/game/images/sprites/skier_carving.png diff --git a/src/images/sprites/skier_sliding.png b/src/app/game/images/sprites/skier_sliding.png similarity index 100% rename from src/images/sprites/skier_sliding.png rename to src/app/game/images/sprites/skier_sliding.png diff --git a/src/images/sprites/spectator.png b/src/app/game/images/sprites/spectator.png similarity index 100% rename from src/images/sprites/spectator.png rename to src/app/game/images/sprites/spectator.png diff --git a/src/images/sprites/spectator_1.png b/src/app/game/images/sprites/spectator_1.png similarity index 100% rename from src/images/sprites/spectator_1.png rename to src/app/game/images/sprites/spectator_1.png diff --git a/src/images/sprites/spectator_2.png b/src/app/game/images/sprites/spectator_2.png similarity index 100% rename from src/images/sprites/spectator_2.png rename to src/app/game/images/sprites/spectator_2.png diff --git a/src/images/sprites/spectator_3.png b/src/app/game/images/sprites/spectator_3.png similarity index 100% rename from src/images/sprites/spectator_3.png rename to src/app/game/images/sprites/spectator_3.png diff --git a/src/images/sprites/spectator_4.png b/src/app/game/images/sprites/spectator_4.png similarity index 100% rename from src/images/sprites/spectator_4.png rename to src/app/game/images/sprites/spectator_4.png diff --git a/src/images/sprites/starting_gate.png b/src/app/game/images/sprites/starting_gate.png similarity index 100% rename from src/images/sprites/starting_gate.png rename to src/app/game/images/sprites/starting_gate.png diff --git a/src/images/sprites/starting_house.png b/src/app/game/images/sprites/starting_house.png similarity index 100% rename from src/images/sprites/starting_house.png rename to src/app/game/images/sprites/starting_house.png diff --git a/src/models/gates-config.ts b/src/app/game/models/gates-config.ts similarity index 73% rename from src/models/gates-config.ts rename to src/app/game/models/gates-config.ts index c94306d..219ca39 100644 --- a/src/models/gates-config.ts +++ b/src/app/game/models/gates-config.ts @@ -1,8 +1,8 @@ -import { TrackStyles } from "./track-styles.enum"; -import { Sprite } from "excalibur"; +import type { TrackStyles } from './track-styles.enum'; +import type { Sprite } from 'excalibur'; export interface GatesConfig { - trackStyle: TrackStyles, + trackStyle: TrackStyles; maxWidth: number; minWidth: number; maxHorizontalDistance: number; diff --git a/src/app/game/models/race-config.ts b/src/app/game/models/race-config.ts new file mode 100644 index 0000000..7264d56 --- /dev/null +++ b/src/app/game/models/race-config.ts @@ -0,0 +1,24 @@ +import type { StockableGhost } from './stockable-ghost'; +import type { Track } from './track'; + +export class RaceConfig { + public eventId: string; + public rider: string; + public track: Track; + public globalGhost?: StockableGhost; + public eventGhost?: StockableGhost; + + constructor( + eventId: string, + rider: string, + track: Track, + globalGhost?: StockableGhost, + eventGhost?: StockableGhost + ) { + this.eventId = eventId; + this.rider = rider; + this.track = track; + this.globalGhost = globalGhost; + this.eventGhost = eventGhost; + } +} diff --git a/src/app/game/models/race-result.ts b/src/app/game/models/race-result.ts new file mode 100644 index 0000000..2f81b91 --- /dev/null +++ b/src/app/game/models/race-result.ts @@ -0,0 +1,17 @@ +import type { StockableGhost } from './stockable-ghost'; + +export class RaceResult { + public rider: string; + public date: Date; + public timing: number; + public missedGates: number; + public ghost: StockableGhost; + + constructor(rider: string, date: Date, timing: number, missedGates: number, ghost: StockableGhost) { + this.rider = rider; + this.date = date; + this.timing = timing; + this.missedGates = missedGates; + this.ghost = ghost; + } +} diff --git a/src/app/game/models/skier-actions.enum.ts b/src/app/game/models/skier-actions.enum.ts new file mode 100644 index 0000000..c8e14c6 --- /dev/null +++ b/src/app/game/models/skier-actions.enum.ts @@ -0,0 +1,8 @@ +export enum SkierActions { + CARVE_LEFT = 'CARVE_LEFT', + CARVE_RIGHT = 'CARVE_RIGHT', + SLIDE_LEFT = 'SLIDE_LEFT', + SLIDE_RIGHT = 'SLIDE_RIGHT', + BRAKE = 'BRAKE', + NOTHING = 'NOTHING' +} diff --git a/src/app/game/models/skier-config.ts b/src/app/game/models/skier-config.ts new file mode 100644 index 0000000..0ac377c --- /dev/null +++ b/src/app/game/models/skier-config.ts @@ -0,0 +1,7 @@ +export interface SkierConfig { + windFrictionRate: number; + carvingRotationRate: number; + carvingOptimalSpeed: number; + slidingRotationRate: number; + slidingOptimalSpeed: number; +} diff --git a/src/app/game/models/skier-positioning.ts b/src/app/game/models/skier-positioning.ts new file mode 100644 index 0000000..7d86425 --- /dev/null +++ b/src/app/game/models/skier-positioning.ts @@ -0,0 +1,15 @@ +import type { SkierActions } from './skier-actions.enum'; + +export class SkierPositioning { + public x: number; + public y: number; + public rotation: number; + public action: SkierActions; + + constructor(x: number, y: number, rotation: number, action: SkierActions) { + this.x = x; + this.y = y; + this.rotation = rotation; + this.action = action; + } +} diff --git a/src/app/game/models/stockable-gate.ts b/src/app/game/models/stockable-gate.ts new file mode 100644 index 0000000..bea8e55 --- /dev/null +++ b/src/app/game/models/stockable-gate.ts @@ -0,0 +1,27 @@ +export class StockableGate { + public x: number; + public y: number; + public color: 'red' | 'blue'; + public width: number; + public gateNumber: number; + public isFinal: boolean; + public sectorNumber?: number; + + constructor( + x: number, + y: number, + color: 'red' | 'blue', + width: number, + gateNumber: number, + isFinal: boolean, + sectorNumber?: number + ) { + this.x = x; + this.y = y; + this.color = color; + this.width = width; + this.gateNumber = gateNumber; + this.isFinal = isFinal; + this.sectorNumber = sectorNumber; + } +} diff --git a/src/app/game/models/stockable-ghost.ts b/src/app/game/models/stockable-ghost.ts new file mode 100644 index 0000000..59d9a87 --- /dev/null +++ b/src/app/game/models/stockable-ghost.ts @@ -0,0 +1,45 @@ +import type { SkierPositioning } from './skier-positioning'; +import type { TimedSector } from './timed-sector'; +export class StockableGhost { + public trackId?: number; + public date?: Date; + public eventId?: string; + public rider?: string; + public totalTime?: number; + public timedSectors?: TimedSector[]; + public positions?: SkierPositioning[]; + + constructor( + trackId?: number, + date?: Date, + eventId?: string, + rider?: string, + totalTime?: number, + timedSectors?: TimedSector[], + positions?: SkierPositioning[] + ) { + this.trackId = trackId; + this.date = date; + this.eventId = eventId; + this.rider = rider; + this.totalTime = totalTime; + this.timedSectors = timedSectors; + this.positions = positions; + } + + public getSectorTime(sectorNumber: number): number | undefined { + return this.timedSectors ? this.timedSectors[sectorNumber - 1]?.time : undefined; + } + + public static duplicate(ghost: StockableGhost): StockableGhost { + return new StockableGhost( + ghost.trackId, + ghost.date, + ghost.eventId, + ghost.rider, + ghost.totalTime, + ghost.timedSectors, + [...ghost.positions!] + ); + } +} diff --git a/src/app/game/models/stockable-record.ts b/src/app/game/models/stockable-record.ts new file mode 100644 index 0000000..93dccb7 --- /dev/null +++ b/src/app/game/models/stockable-record.ts @@ -0,0 +1,20 @@ +import { format } from 'date-fns'; +import { Config } from '../config'; + +export class StockableRecord { + public trackId: number; + public player: string; + public date: Date; + public timing: number; + + constructor(trackId: number, rider: string, date: Date, timing: number) { + this.trackId = trackId; + this.player = rider; + this.date = date; + this.timing = timing; + } + + public get formattedTime(): string { + return format(this.timing, Config.FORMAT_TIMING); + } +} diff --git a/src/app/game/models/stockable-track.ts b/src/app/game/models/stockable-track.ts new file mode 100644 index 0000000..49e7ffd --- /dev/null +++ b/src/app/game/models/stockable-track.ts @@ -0,0 +1,33 @@ +import { TrackBuilder } from '../utils/track-builder'; +import type { StockableGate } from './stockable-gate'; +import type { Track } from './track'; +import type { TrackStyles } from './track-styles.enum'; + +export class StockableTrack { + public id?: number; + public name: string; + public builderVersion?: number; + public style: TrackStyles; + public date: Date; + public gates: StockableGate[]; + + constructor( + id?: number, + builderVersion?: number, + name?: string, + style?: TrackStyles, + date?: Date, + gates?: StockableGate[] + ) { + this.id = id; + this.name = name!; + this.builderVersion = builderVersion; + this.style = style!; + this.date = date!; + this.gates = gates!; + } + + public toTrack(): Track { + return TrackBuilder.buildTrack(this); + } +} diff --git a/src/app/game/models/timed-sector.ts b/src/app/game/models/timed-sector.ts new file mode 100644 index 0000000..4148c88 --- /dev/null +++ b/src/app/game/models/timed-sector.ts @@ -0,0 +1,9 @@ +export class TimedSector { + public sectorNumber: number; + public time: number; + + constructor(sectorNumber: number, time: number) { + this.sectorNumber = sectorNumber; + this.time = time; + } +} diff --git a/src/app/game/models/track-styles.enum.ts b/src/app/game/models/track-styles.enum.ts new file mode 100644 index 0000000..82a9eaa --- /dev/null +++ b/src/app/game/models/track-styles.enum.ts @@ -0,0 +1,6 @@ +export enum TrackStyles { + SL = 'SL', + GS = 'GS', + SG = 'SG', + DH = 'DH' +} diff --git a/src/app/game/models/track.ts b/src/app/game/models/track.ts new file mode 100644 index 0000000..074bdd2 --- /dev/null +++ b/src/app/game/models/track.ts @@ -0,0 +1,40 @@ +import type { Gate } from '../actors/gate'; +import { StockableTrack } from './stockable-track'; +import type { TrackStyles } from './track-styles.enum'; + +export class Track { + public id?: number; + public name: string; + public builderVersion?: number; + public style: TrackStyles; + public date: Date; + public gates: Gate[]; + + constructor(id?: number, builderVersion?: number, name?: string, style?: TrackStyles, date?: Date, gates?: Gate[]) { + this.id = id; + this.builderVersion = builderVersion; + this.name = name!; + this.style = style!; + this.date = date!; + this.gates = gates!; + } + + public get fullName(): string { + return `${Track.formatTrackName(this.name)} - ${this.style}`; + } + + public toStockable(): StockableTrack { + return new StockableTrack( + this.id, + this.builderVersion, + this.name, + this.style, + this.date, + this.gates.map(gate => gate.getStockableGate()) + ); + } + + private static formatTrackName(name: string): string { + return `${name[0].toLocaleUpperCase()}${name.substring(1).toLocaleLowerCase()}`; + } +} diff --git a/src/app/game/resources.ts b/src/app/game/resources.ts new file mode 100644 index 0000000..493db9c --- /dev/null +++ b/src/app/game/resources.ts @@ -0,0 +1,52 @@ +import { ImageSource, Sound } from 'excalibur'; + +const Resources = { + Skier: new ImageSource('./assets/images/sprites/skier.png'), + SkierCarving: new ImageSource('./assets/images/sprites/skier_carving.png'), + SkierSliding: new ImageSource('./assets/images/sprites/skier_sliding.png'), + SkierBraking: new ImageSource('./assets/images/sprites/skier_braking.png'), + + GlobalGhostSkier: new ImageSource('./assets/images/sprites/globalRecordGhost.png'), + GlobalGhostSkierCarving: new ImageSource('./assets/images/sprites/globalRecordGhost_carving.png'), + GlobalGhostSkierSliding: new ImageSource('./assets/images/sprites/globalRecordGhost_sliding.png'), + GlobalGhostSkierBraking: new ImageSource('./assets/images/sprites/globalRecordGhost_braking.png'), + + EventRecordGhost: new ImageSource('./assets/images/sprites/eventRecordGhost.png'), + EventRecordGhostCarving: new ImageSource('./assets/images/sprites/eventRecordGhost_carving.png'), + EventRecordGhostSliding: new ImageSource('./assets/images/sprites/eventRecordGhost_sliding.png'), + EventRecordGhostBraking: new ImageSource('./assets/images/sprites/eventRecordGhost_braking.png'), + + StartingGate: new ImageSource('./assets/images/sprites/starting_gate.png'), + StartingHouse: new ImageSource('./assets/images/sprites/starting_house.png'), + PoleRed: new ImageSource('./assets/images/sprites/pole_red.png'), + PoleBlue: new ImageSource('./assets/images/sprites/pole_blue.png'), + PoleSlRed: new ImageSource('./assets/images/sprites/pole_sl_red.png'), + PoleSlBlue: new ImageSource('./assets/images/sprites/pole_sl_blue.png'), + PoleCheckRed: new ImageSource('./assets/images/sprites/pole_check_red.png'), + PoleCheckBlue: new ImageSource('./assets/images/sprites/pole_check_blue.png'), + FinalGate: new ImageSource('./assets/images/sprites/final_gate.png'), + + Spectator1: new ImageSource('./assets/images/sprites/spectator_1.png'), + Spectator2: new ImageSource('./assets/images/sprites/spectator_2.png'), + Spectator3: new ImageSource('./assets/images/sprites/spectator_3.png'), + Spectator4: new ImageSource('./assets/images/sprites/spectator_4.png'), + + WinterSound: new Sound('./assets/sounds/winter.mp3'), + FinishRaceSound: new Sound('./assets/sounds/finish_race.mp3'), + StartRaceSound: new Sound('./assets/sounds/start_race.mp3'), + GateMissedSound: new Sound('./assets/sounds/gate_missed.mp3'), + PoleHittingSound: new Sound('./assets/sounds/pole_hitting.mp3'), + TurningSound: new Sound('./assets/sounds/turning.mp3'), + SpectatorsSound: new Sound('./assets/sounds/spectators.mp3'), + Spectators2Sound: new Sound('./assets/sounds/spectators2.mp3'), + Spectators3Sound: new Sound('./assets/sounds/spectators3.mp3'), + Spectators4Sound: new Sound('./assets/sounds/spectators4.mp3'), + SpectatorsIntenseSound: new Sound('./assets/sounds/spectators_intense.mp3'), + SpectatorHitSound: new Sound('./assets/sounds/spectator_hit.mp3'), + SpectatorHit2Sound: new Sound('./assets/sounds/spectator_hit2.mp3'), + SpectatorHit3Sound: new Sound('./assets/sounds/spectator_hit3.mp3'), + SpectatorsBellsSound: new Sound('./assets/sounds/spectators_bells.mp3'), + SpectatorsBells2Sound: new Sound('./assets/sounds/spectators_bells2.mp3') +}; + +export { Resources }; diff --git a/src/app/game/scenes/race.ts b/src/app/game/scenes/race.ts new file mode 100644 index 0000000..10ffcfb --- /dev/null +++ b/src/app/game/scenes/race.ts @@ -0,0 +1,311 @@ +import { Actor, type Engine, Scene, type SceneActivationContext, Timer, vec } from 'excalibur'; +import { Skier } from '../actors/skier'; +import { Gate } from '../actors/gate'; +import type { Game } from '../game'; +import { Config } from '../config'; +import { RaceResult } from '../models/race-result'; +import { Resources } from '../resources'; +import { TrackStyles } from '../models/track-styles.enum'; +import type { SkierConfig } from '../models/skier-config'; +import type { Track } from '../models/track'; +import { SkierPositioning } from '../models/skier-positioning'; +import type { SkierActions } from '../models/skier-actions.enum'; +import { SkierGraphics } from '../utils/skier-graphics'; +import { StockableGhost } from '../models/stockable-ghost'; +import { TimedSector } from '../models/timed-sector'; +import { StartingHouse } from '../actors/starting-house'; +import { TouchManager } from '../utils/touch-manager'; +import { SpectatorGroup } from '../actors/spectator-group'; +import { RaceUiManager } from '../utils/race-ui-manager'; +import type { RaceConfig } from '../models/race-config'; +import { TrackBuilder } from '../utils/track-builder'; + +export class Race extends Scene { + public skier?: Skier; + public touchManager: TouchManager; + + private uiManager = new RaceUiManager(); + private uiTimer = new Timer({ + interval: 60, + repeats: true, + fcn: () => { + this.updateRacingUi(); + } + }); + + private raceConfig: RaceConfig; + private skierCameraGhost?: Actor; + private skierPositions: SkierPositioning[] = []; + private gates: Gate[] = []; + private startingHouse?: StartingHouse; + private startTime?: number; + private endTime?: number; + private timedSectors: TimedSector[] = []; + + // Ghost + private globalRecordGhostDatas?: StockableGhost; + private globalRecordGhost?: Actor; + private eventRecordGhostDatas?: StockableGhost; + private eventRecordGhost?: Actor; + + constructor(engine: Engine, raceConfig: RaceConfig) { + super(); + this.engine = engine; + this.raceConfig = raceConfig; + this.touchManager = new TouchManager(engine); + } + + override onPreUpdate(_engine: Engine, _delta: number): void { + if (this.skier?.racing) { + this.updateSkierCameraGhost(); + this.saveSkierPosition(); + this.updateGhostsPosition(); + } + } + + override onActivate(): void { + if (this.raceConfig) { + this.prepareRace(this.raceConfig); + } + } + + override onDeactivate(_context: SceneActivationContext): void { + this.cleanRace(); + } + + public setupCamera(): void { + this.camera.strategy.elasticToActor(this.skierCameraGhost!, 0.12, 0.2); + this.camera.zoom = Config.CAMERA_ZOOM; + } + + public startRace(): void { + this.uiManager.hideGhostsUi(); + this.uiManager.displayRacingUi(); + this.startTime = this.engine.clock.now(); + this.uiTimer.start(); + this.listenStopRaceEvent(); + this.skier!.startRace(); + (this.engine as Game).soundPlayer.playSound(Resources.StartRaceSound, 0.3); + this.startingHouse?.openGate(); + } + + public stopRace(): void { + this.endTime = this.engine.clock.now(); + this.skier!.finishRace(); + this.uiTimer.stop(); + const timing = this.endTime - this.startTime!; + + this.globalRecordGhost?.kill(); + this.eventRecordGhost?.kill(); + + const missedGates = this.gates.filter(gate => !gate.passed).length; + const ghost = new StockableGhost( + this.raceConfig.track.id!, + new Date(), + this.raceConfig.eventId, + this.raceConfig.rider, + timing, + this.timedSectors, + this.skierPositions + ); + const result = new RaceResult(this.raceConfig.rider, new Date(), timing, missedGates, ghost); + (this.engine as Game).raceStopped.emit(result); + (this.engine as Game).soundPlayer.playSound(Resources.FinishRaceSound, Config.FINISH_SOUND_VOLUME); + } + + public cleanRace(): void { + this.startTime = undefined; + this.endTime = undefined; + this.uiManager.hideUi(); + this.gates = []; + (this.engine as Game).soundPlayer.stopSound(Resources.WinterSound); + (this.engine as Game).soundPlayer.stopSound(Resources.TurningSound); + Resources.FinishRaceSound.stop(); + this.killActors(); + this.clear(); + } + + public addPenalty(): void { + this.startTime! -= Config.MISSED_GATE_PENALTY_TIME; + (this.engine as Game).soundPlayer.playSound(Resources.GateMissedSound, Config.GATE_MISSED_SOUND_VOLUME); + this.uiManager.flashTimer(this.engine); + } + + public setSector(sectorNumber: number): void { + const timeSector = new TimedSector(sectorNumber, this.engine.clock.now() - this.startTime!); + this.timedSectors.push(timeSector); + this.displaySectorDifference(timeSector); + } + + public updateSkierCameraGhost(): void { + this.skierCameraGhost!.pos = vec(0, this.skier!.pos.y + Config.FRONT_GHOST_DISTANCE); + } + + private displaySectorDifference(timedSector: TimedSector): void { + const skierSectorTime = timedSector.time; + const globalRecordSectorTime = this.globalRecordGhostDatas?.getSectorTime(timedSector.sectorNumber); + const eventRecordSectorTime = this.eventRecordGhostDatas?.getSectorTime(timedSector.sectorNumber); + if (globalRecordSectorTime || eventRecordSectorTime) { + this.uiManager.displayGhostSectorTiming( + this.engine, + skierSectorTime, + globalRecordSectorTime, + eventRecordSectorTime + ); + } + } + + private saveSkierPosition(): void { + this.skierPositions?.push( + new SkierPositioning( + this.skier!.pos.x, + this.skier!.pos.y, + this.skier!.rotation, + this.skier!.getSkierCurrentAction(this.engine) + ) + ); + } + + private updateGhostsPosition(): void { + if (this.globalRecordGhost && this.globalRecordGhostDatas?.positions?.length) { + this.updateGhostPosition(this.globalRecordGhost, this.globalRecordGhostDatas.positions, 'global'); + } + if (this.eventRecordGhost && this.eventRecordGhostDatas?.positions?.length) { + this.updateGhostPosition(this.eventRecordGhost, this.eventRecordGhostDatas.positions, 'event'); + } + } + + private updateGhostPosition(ghost: Actor, positions: SkierPositioning[], type: 'global' | 'event'): void { + const position = positions.splice(0, 1)[0]; + if ((this.engine as Game).settingsService.getSettings().ghosts) { + ghost.pos = vec(position.x, position.y); + ghost.rotation = position.rotation; + this.updateGhostGraphics(ghost, position.action, type); + } else { + ghost.graphics.visible = false; + } + } + + private updateGhostGraphics(ghost: Actor, action: SkierActions, type: 'global' | 'event'): void { + if (!ghost.graphics.visible) { + ghost.graphics.visible = true; + } + const graphic = SkierGraphics.getSpriteForAction( + type === 'global' ? 'globalRecordGhost' : 'eventRecordGhost', + action + ); + ghost.graphics.use(graphic.sprite); + ghost.graphics.flipHorizontal = !!graphic.flipHorizontal; + } + + private prepareRace(raceConfig: RaceConfig): void { + this.addTimer(this.uiTimer); + this.buildTrack(raceConfig.track); + this.skier = new Skier(raceConfig.rider, this.getSkierConfig(raceConfig.track.style)); + this.add(this.skier); + this.startingHouse = new StartingHouse(); + this.add(this.startingHouse); + this.buildGhosts(raceConfig.globalGhost, raceConfig.eventGhost); + + if ((this.engine as Game).settingsService.getSettings().spectators) { + this.buildSpectatorGroups(this.gates); + } + + this.skierCameraGhost = new Actor({ + width: 1, + height: 1, + pos: vec(this.skier.pos.x, this.skier.pos.y + Config.FRONT_GHOST_DISTANCE) + }); + this.setupCamera(); + this.add(this.skierCameraGhost); + + this.uiManager.displayGhostsTiming( + this.globalRecordGhostDatas?.totalTime, + this.eventRecordGhostDatas?.totalTime + ); + + (this.engine as Game).soundPlayer.playSound(Resources.WinterSound, Config.RACE_AMBIANCE_SOUND_VOLUME, true); + } + + private killActors(): void { + for (const actor of this.actors) { + actor.kill(); + } + } + + private buildGhosts(globalGhost?: StockableGhost, eventGhost?: StockableGhost): void { + if (globalGhost) { + this.globalRecordGhostDatas = StockableGhost.duplicate(globalGhost); + this.globalRecordGhost = new Actor({ width: 30, height: 50, pos: vec(0, 0) }); + this.add(this.globalRecordGhost); + } + + if (eventGhost) { + this.eventRecordGhostDatas = StockableGhost.duplicate(eventGhost); + if (this.eventRecordGhostDatas?.totalTime !== this.globalRecordGhostDatas?.totalTime) { + this.eventRecordGhost = new Actor({ width: 30, height: 50, pos: vec(0, 0) }); + this.add(this.eventRecordGhost); + } + } + } + + private buildSpectatorGroups(gates: Gate[]): void { + for (const gate of gates.filter(g => !g.isFinalGate)) { + const hasSpectatorGroup = Math.random() <= 0.2; + + if (hasSpectatorGroup) { + const xPosition = Config.DISPLAY_WIDTH / 2; + const left = Math.random() < 0.5; + + const group = new SpectatorGroup( + this.engine, + vec(left ? -xPosition : xPosition - Config.DISPLAY_MIN_MARGIN, gate.pos.y), + 3 + ~~(Math.random() * Config.SPECTATORS_MAX_DENSITY), + left ? 'left' : 'right' + ); + + this.add(group); + } + } + } + + private listenStopRaceEvent(): void { + this.gates?.find(gate => gate.isFinalGate)!.on('stoprace', () => this.stopRace()); + } + + private updateRacingUi(): void { + this.uiManager.updateRacingUi(this.skier!.speed, this.engine.clock.now() - this.startTime!); + } + + private buildTrack(track: Track): void { + const gates = track.gates.map(gate => { + const stockableGate = gate.getStockableGate(); + return new Gate( + TrackBuilder.getGatesConfig(track.style), + vec(stockableGate.x, stockableGate.y), + stockableGate.width, + stockableGate.color, + stockableGate.gateNumber, + stockableGate.isFinal, + stockableGate.sectorNumber + ); + }); + for (const gate of gates) { + this.gates?.push(gate); + this.add(gate); + } + } + + private getSkierConfig(trackStyle: TrackStyles): SkierConfig { + if (trackStyle === TrackStyles.SL) { + return Config.SL_SKIER_CONFIG; + } + if (trackStyle === TrackStyles.GS) { + return Config.GS_SKIER_CONFIG; + } + if (trackStyle === TrackStyles.SG) { + return Config.SG_SKIER_CONFIG; + } + return Config.DH_SKIER_CONFIG; + } +} diff --git a/src/sounds/finish_race.mp3 b/src/app/game/sounds/finish_race.mp3 similarity index 100% rename from src/sounds/finish_race.mp3 rename to src/app/game/sounds/finish_race.mp3 diff --git a/src/sounds/gate_missed.mp3 b/src/app/game/sounds/gate_missed.mp3 similarity index 100% rename from src/sounds/gate_missed.mp3 rename to src/app/game/sounds/gate_missed.mp3 diff --git a/src/sounds/gate_missed3.mp3 b/src/app/game/sounds/gate_missed3.mp3 similarity index 100% rename from src/sounds/gate_missed3.mp3 rename to src/app/game/sounds/gate_missed3.mp3 diff --git a/src/sounds/old_gate_missed2.mp3 b/src/app/game/sounds/old_gate_missed2.mp3 similarity index 100% rename from src/sounds/old_gate_missed2.mp3 rename to src/app/game/sounds/old_gate_missed2.mp3 diff --git a/src/sounds/pole_hitting.mp3 b/src/app/game/sounds/pole_hitting.mp3 similarity index 100% rename from src/sounds/pole_hitting.mp3 rename to src/app/game/sounds/pole_hitting.mp3 diff --git a/src/sounds/spectator_hit.mp3 b/src/app/game/sounds/spectator_hit.mp3 similarity index 100% rename from src/sounds/spectator_hit.mp3 rename to src/app/game/sounds/spectator_hit.mp3 diff --git a/src/sounds/spectator_hit2.mp3 b/src/app/game/sounds/spectator_hit2.mp3 similarity index 100% rename from src/sounds/spectator_hit2.mp3 rename to src/app/game/sounds/spectator_hit2.mp3 diff --git a/src/sounds/spectator_hit3.mp3 b/src/app/game/sounds/spectator_hit3.mp3 similarity index 100% rename from src/sounds/spectator_hit3.mp3 rename to src/app/game/sounds/spectator_hit3.mp3 diff --git a/src/sounds/spectators.mp3 b/src/app/game/sounds/spectators.mp3 similarity index 100% rename from src/sounds/spectators.mp3 rename to src/app/game/sounds/spectators.mp3 diff --git a/src/sounds/spectators2.mp3 b/src/app/game/sounds/spectators2.mp3 similarity index 100% rename from src/sounds/spectators2.mp3 rename to src/app/game/sounds/spectators2.mp3 diff --git a/src/sounds/spectators3.mp3 b/src/app/game/sounds/spectators3.mp3 similarity index 100% rename from src/sounds/spectators3.mp3 rename to src/app/game/sounds/spectators3.mp3 diff --git a/src/sounds/spectators4.mp3 b/src/app/game/sounds/spectators4.mp3 similarity index 100% rename from src/sounds/spectators4.mp3 rename to src/app/game/sounds/spectators4.mp3 diff --git a/src/sounds/spectators_bells.mp3 b/src/app/game/sounds/spectators_bells.mp3 similarity index 100% rename from src/sounds/spectators_bells.mp3 rename to src/app/game/sounds/spectators_bells.mp3 diff --git a/src/sounds/spectators_bells2.mp3 b/src/app/game/sounds/spectators_bells2.mp3 similarity index 100% rename from src/sounds/spectators_bells2.mp3 rename to src/app/game/sounds/spectators_bells2.mp3 diff --git a/src/sounds/spectators_intense.mp3 b/src/app/game/sounds/spectators_intense.mp3 similarity index 100% rename from src/sounds/spectators_intense.mp3 rename to src/app/game/sounds/spectators_intense.mp3 diff --git a/src/sounds/start_race.mp3 b/src/app/game/sounds/start_race.mp3 similarity index 100% rename from src/sounds/start_race.mp3 rename to src/app/game/sounds/start_race.mp3 diff --git a/src/sounds/turning.mp3 b/src/app/game/sounds/turning.mp3 similarity index 100% rename from src/sounds/turning.mp3 rename to src/app/game/sounds/turning.mp3 diff --git a/src/sounds/winter.mp3 b/src/app/game/sounds/winter.mp3 similarity index 100% rename from src/sounds/winter.mp3 rename to src/app/game/sounds/winter.mp3 diff --git a/src/app/game/utils/gamepads-manager.ts b/src/app/game/utils/gamepads-manager.ts new file mode 100644 index 0000000..82aad75 --- /dev/null +++ b/src/app/game/utils/gamepads-manager.ts @@ -0,0 +1,45 @@ +import type { Axes, Buttons, Engine, Gamepad } from 'excalibur'; +import { Config } from '../config'; + +export class GamepadsManager { + private engine: Engine; + + constructor(engine: Engine) { + this.engine = engine; + this.initGamepads(); + } + + public getConnectedGamepads(): Gamepad[] { + return this.engine.input.gamepads.getValidGamepads().filter(gamepad => gamepad.connected); + } + + public getFirstGamepad(): Gamepad { + return this.engine.input.gamepads.at(0); + } + + public isButtonHeld(button: Buttons, gamepad?: Gamepad): boolean { + const pad = gamepad || this.getFirstGamepad(); + return pad.isButtonHeld(button); + } + + public wasButtonPressed(button: Buttons, gamepad?: Gamepad): boolean { + const pad = gamepad || this.getFirstGamepad(); + return pad.wasButtonPressed(button); + } + + public isAxesUsed(axes: Axes, gamepad?: Gamepad): boolean { + const pad = gamepad || this.getFirstGamepad(); + return Math.abs(pad.getAxes(axes)) > Config.GAMEPAD_AXES_FILTER_RATE; + } + + public getAxes(axes: Axes, gamepad?: Gamepad): number { + const pad = gamepad || this.getFirstGamepad(); + const axesValue = pad.getAxes(axes); + return Math.abs(axesValue) > Config.GAMEPAD_AXES_FILTER_RATE ? axesValue : 0; + } + + private initGamepads(): void { + this.engine.input.gamepads.setMinimumGamepadConfiguration({ axis: 2, buttons: 4 }); + this.engine.input.gamepads.enabled = true; + } +} diff --git a/src/app/game/utils/logo-manager.ts b/src/app/game/utils/logo-manager.ts new file mode 100644 index 0000000..9b1f089 --- /dev/null +++ b/src/app/game/utils/logo-manager.ts @@ -0,0 +1,4 @@ +export class LogoManager { + public static base64Image = + 'data:image/png;base64,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'; +} diff --git a/src/app/game/utils/particles-builder.ts b/src/app/game/utils/particles-builder.ts new file mode 100644 index 0000000..d1b2186 --- /dev/null +++ b/src/app/game/utils/particles-builder.ts @@ -0,0 +1,26 @@ +import { Color, EmitterType, ParticleEmitter, vec } from 'excalibur'; + +export class ParticlesBuilder { + public static getParticlesEmitter(): ParticleEmitter { + return new ParticleEmitter({ + pos: vec(0, -20), + emitterType: EmitterType.Circle, + radius: 1, + minVel: 1, + maxVel: 10, + minAngle: 3.4, + maxAngle: 6, + emitRate: 1, + opacity: 0.7, + fadeFlag: true, + particleLife: 2000, + maxSize: 5, + minSize: 5, + startSize: 5, + endSize: 1, + beginColor: Color.fromRGB(23, 106, 170, 0.1), + endColor: Color.Transparent, + isEmitting: false + }); + } +} diff --git a/src/app/game/utils/race-ui-manager.ts b/src/app/game/utils/race-ui-manager.ts new file mode 100644 index 0000000..c254940 --- /dev/null +++ b/src/app/game/utils/race-ui-manager.ts @@ -0,0 +1,92 @@ +import { format } from 'date-fns'; +import type { Engine } from 'excalibur'; +import { Config } from '../config'; + +export class RaceUiManager { + private globalGhostTimingContainerUi = document.getElementById('global-ghost-timing-container')!; + private globalGhostTimingUi = document.getElementById('global-ghost-timing')!; + private eventGhostTimingContainerUi = document.getElementById('event-ghost-timing-container')!; + private eventGhostTimingUi = document.getElementById('event-ghost-timing')!; + private speedometerUi = document.getElementById('speedometer')!; + private timerUi = document.getElementById('timer')!; + + public displayRacingUi(): void { + this.speedometerUi.classList.add('visible'); + this.timerUi.classList.add('visible'); + } + + public updateRacingUi(currentSpeed: number, currentTiming: number): void { + this.speedometerUi.innerText = `${Math.floor(currentSpeed)} km/h`; + this.timerUi.innerText = `${format(currentTiming, 'mm:ss:SS')}`; + } + + public flashTimer(engine: Engine): void { + this.timerUi.classList.add('penalty'); + engine.clock.schedule(() => { + this.timerUi.classList.remove('penalty'); + }, 750); + } + + public hideUi(): void { + this.hideGhostsUi(); + this.hideRacingUi(); + } + + public displayGhostsTiming(globalGhostTiming?: number, eventGhostTiming?: number): void { + if (globalGhostTiming) { + this.globalGhostTimingUi.innerText = format(globalGhostTiming, Config.FORMAT_TIMING); + this.globalGhostTimingContainerUi.classList.add('visible'); + } + + if (eventGhostTiming) { + this.eventGhostTimingUi.innerText = format(eventGhostTiming, Config.FORMAT_TIMING); + this.eventGhostTimingContainerUi.classList.add('visible'); + } + } + + public displayGhostSectorTiming( + engine: Engine, + skierTime: number, + globalGhostTime?: number, + eventGhostTime?: number + ): void { + if (globalGhostTime) { + this.displaySector(skierTime, globalGhostTime, this.globalGhostTimingUi, this.globalGhostTimingContainerUi); + } + if (eventGhostTime) { + this.displaySector(skierTime, eventGhostTime, this.eventGhostTimingUi, this.eventGhostTimingContainerUi); + } + + engine.clock.schedule(() => this.hideGhostsUi(), Config.SECTOR_DISPLAY_TIME); + } + + private displaySector( + skierTime: number, + referenceTime: number, + textUi: HTMLElement, + containerUi: HTMLElement + ): void { + const isSkierFaster = skierTime < referenceTime; + const timeDifference = Math.abs(referenceTime - skierTime); + textUi.innerText = `${isSkierFaster ? '-' : '+'} ${format( + timeDifference, + timeDifference >= 60000 ? 'mm:ss:SS' : 'ss:SS' + )}`; + containerUi.classList.add(isSkierFaster ? 'fast-sector' : 'slow-sector'); + containerUi.classList.add('visible'); + } + + public hideGhostsUi(): void { + this.globalGhostTimingContainerUi.classList.remove('visible'); + this.eventGhostTimingContainerUi.classList.remove('visible'); + this.globalGhostTimingContainerUi.classList.remove('slow-sector'); + this.globalGhostTimingContainerUi.classList.remove('fast-sector'); + this.eventGhostTimingContainerUi.classList.remove('slow-sector'); + this.eventGhostTimingContainerUi.classList.remove('fast-sector'); + } + + private hideRacingUi(): void { + this.speedometerUi.classList.remove('visible'); + this.timerUi.classList.remove('visible'); + } +} diff --git a/src/app/game/utils/screen-manager.ts b/src/app/game/utils/screen-manager.ts new file mode 100644 index 0000000..9ee49b4 --- /dev/null +++ b/src/app/game/utils/screen-manager.ts @@ -0,0 +1,12 @@ +import type { Actor, Camera, Vector } from 'excalibur'; +import { Config } from '../config'; + +export class ScreenManager { + public static isNearScreen(item: Actor, camera: Camera): boolean { + return Math.abs(camera.y - item.pos.y) < item.scene!.engine.canvasHeight; + } + + public static isBehind(cameraPosition: Vector, itemPosition: Vector): boolean { + return cameraPosition.y < itemPosition.y + Config.FRONT_GHOST_DISTANCE; + } +} diff --git a/src/app/game/utils/skier-graphics.ts b/src/app/game/utils/skier-graphics.ts new file mode 100644 index 0000000..68ecf85 --- /dev/null +++ b/src/app/game/utils/skier-graphics.ts @@ -0,0 +1,60 @@ +import type { Sprite } from 'excalibur'; +import { SkierActions } from '../models/skier-actions.enum'; +import { Resources } from '../resources'; + +export class SkierGraphics { + public static SKIER_SPRITE = Resources.Skier.toSprite(); + public static SKIER_SLIDING_SPRITE = Resources.SkierSliding.toSprite(); + public static SKIER_CARVING_SPRITE = Resources.SkierCarving.toSprite(); + public static SKIER_BRAKING_SPRITE = Resources.SkierBraking.toSprite(); + public static EVENT_GHOST_SPRITE = Resources.EventRecordGhost.toSprite(); + public static EVENT_GHOST_SLIDING_SPRITE = Resources.EventRecordGhostSliding.toSprite(); + public static EVENT_GHOST_CARVING_SPRITE = Resources.EventRecordGhostCarving.toSprite(); + public static EVENT_GHOST_BRAKING_SPRITE = Resources.EventRecordGhostBraking.toSprite(); + public static GLOBAL_GHOST_SPRITE = Resources.GlobalGhostSkier.toSprite(); + public static GLOBAL_GHOST_SLIDING_SPRITE = Resources.GlobalGhostSkierSliding.toSprite(); + public static GLOBAL_GHOST_CARVING_SPRITE = Resources.GlobalGhostSkierCarving.toSprite(); + public static GLOBAL_GHOST_BRAKING_SPRITE = Resources.GlobalGhostSkierBraking.toSprite(); + + public static getSpriteForAction( + type: 'skier' | 'globalRecordGhost' | 'eventRecordGhost', + action: SkierActions + ): { sprite: Sprite; flipHorizontal?: boolean } { + if (action === SkierActions.SLIDE_LEFT || action === SkierActions.SLIDE_RIGHT) { + const flipHorizontal = action === SkierActions.SLIDE_LEFT; + if (type === 'skier') { + return { sprite: SkierGraphics.SKIER_SLIDING_SPRITE, flipHorizontal: flipHorizontal }; + } + if (type === 'globalRecordGhost') { + return { sprite: SkierGraphics.GLOBAL_GHOST_SLIDING_SPRITE, flipHorizontal: flipHorizontal }; + } + return { sprite: SkierGraphics.EVENT_GHOST_SLIDING_SPRITE, flipHorizontal: flipHorizontal }; + } + if (action === SkierActions.BRAKE) { + if (type === 'skier') { + return { sprite: SkierGraphics.SKIER_BRAKING_SPRITE }; + } + if (type === 'globalRecordGhost') { + return { sprite: SkierGraphics.GLOBAL_GHOST_BRAKING_SPRITE }; + } + return { sprite: SkierGraphics.EVENT_GHOST_BRAKING_SPRITE }; + } + if (action === SkierActions.CARVE_LEFT || action === SkierActions.CARVE_RIGHT) { + const flipHorizontal = action === SkierActions.CARVE_LEFT; + if (type === 'skier') { + return { sprite: SkierGraphics.SKIER_CARVING_SPRITE, flipHorizontal: flipHorizontal }; + } + if (type === 'globalRecordGhost') { + return { sprite: SkierGraphics.GLOBAL_GHOST_CARVING_SPRITE, flipHorizontal: flipHorizontal }; + } + return { sprite: SkierGraphics.EVENT_GHOST_CARVING_SPRITE, flipHorizontal: flipHorizontal }; + } + if (type === 'skier') { + return { sprite: SkierGraphics.SKIER_SPRITE, flipHorizontal: false }; + } + if (type === 'globalRecordGhost') { + return { sprite: SkierGraphics.GLOBAL_GHOST_SPRITE }; + } + return { sprite: SkierGraphics.EVENT_GHOST_SPRITE }; + } +} diff --git a/src/app/game/utils/sounds-player.ts b/src/app/game/utils/sounds-player.ts new file mode 100644 index 0000000..1dab8fd --- /dev/null +++ b/src/app/game/utils/sounds-player.ts @@ -0,0 +1,24 @@ +import type { Sound } from 'excalibur'; +import type { SettingsService } from '../../common/services/settings.service'; + +export class SoundPlayer { + private settingsService: SettingsService; + + constructor(settingsService: SettingsService) { + this.settingsService = settingsService; + } + + public playSound(sound: Sound, volume: number, loop = false, playMultiple = true): void { + const soundsEnabled = this.settingsService.getSettings().sound; + if (soundsEnabled && (!sound.isPlaying() || playMultiple)) { + sound.loop = loop; + sound.play(volume); + } else if (soundsEnabled && sound.isPlaying() && volume !== sound.volume) { + sound.volume = volume; + } + } + + public stopSound(sound: Sound): void { + sound.stop(); + } +} diff --git a/src/app/game/utils/storage-manager.ts b/src/app/game/utils/storage-manager.ts new file mode 100644 index 0000000..bc74001 --- /dev/null +++ b/src/app/game/utils/storage-manager.ts @@ -0,0 +1,19 @@ +export class StorageManager { + public static save(key: string, value: string): void { + try { + localStorage.setItem(key, value); + } catch (error) { + console.error('Unable to persist data to localStorage :', `${key}:${value}`, error); + } + } + + public static remove(keys: string[]): void { + for (const key of keys) { + try { + localStorage.removeItem(key); + } catch (error) { + console.error('Unable to remove the local storage data :', `${key}`); + } + } + } +} diff --git a/src/app/game/utils/touch-manager.ts b/src/app/game/utils/touch-manager.ts new file mode 100644 index 0000000..276211f --- /dev/null +++ b/src/app/game/utils/touch-manager.ts @@ -0,0 +1,47 @@ +import type { Engine, Vector } from 'excalibur'; +import { Config } from '../config'; + +export class TouchManager { + private engine: Engine; + + public isTouching = false; + public isTouchingBack = false; + public isTouchingLeft = false; + public isTouchingRight = false; + + constructor(engine: Engine) { + this.engine = engine; + this.listenTouch(); + } + + private listenTouch(): void { + this.engine.input.pointers.on('down', event => { + this.recomputeTouchStatus('down', event.pagePos); + }); + + this.engine.input.pointers.on('up', event => { + this.recomputeTouchStatus('up', event.pagePos); + }); + } + + private recomputeTouchStatus(type: 'down' | 'up', position: Vector): void { + if (this.getTouchZone(position) === 'back') { + this.isTouchingBack = type === 'down'; + } else if (this.getTouchZone(position) === 'left') { + this.isTouchingLeft = type === 'down'; + } else if (this.getTouchZone(position) === 'right') { + this.isTouchingRight = type === 'down'; + } + this.isTouching = this.isTouchingBack || this.isTouchingLeft || this.isTouchingRight; + } + + private getTouchZone(position: Vector): 'back' | 'left' | 'right' { + if (position.y > window.innerHeight - Config.TOUCH_BRAKE_ZONE_RATIO * window.innerHeight) { + return 'back'; + } + if (position.x > window.innerWidth / 2) { + return 'right'; + } + return 'left'; + } +} diff --git a/src/utils/track-builder.ts b/src/app/game/utils/track-builder.ts similarity index 84% rename from src/utils/track-builder.ts rename to src/app/game/utils/track-builder.ts index 5c89330..d10f88b 100644 --- a/src/utils/track-builder.ts +++ b/src/app/game/utils/track-builder.ts @@ -1,18 +1,18 @@ -import { Vector, vec } from 'excalibur'; +import { type Vector, vec } from 'excalibur'; import { Gate } from '../actors/gate'; import { Config } from '../config'; import { Track } from '../models/track'; -import { StockableTrack } from '../models/stockable-track'; +import type { StockableTrack } from '../models/stockable-track'; import { TrackStyles } from '../models/track-styles.enum'; -import { GatesConfig } from '../models/gates-config'; +import type { GatesConfig } from '../models/gates-config'; export class TrackBuilder { - /** - * Design a new track - * @param name name of the track - * @param trackStyle style of the track - * @returns new track - */ + /** + * Design a new track + * @param name name of the track + * @param trackStyle style of the track + * @returns new track + */ public static designTrack(name: string, trackStyle: TrackStyles): Track { const gates = []; const gatesConfig = TrackBuilder.getGatesConfig(trackStyle); @@ -31,7 +31,7 @@ export class TrackBuilder { TrackBuilder.getGateColor(index, trackStyle), index, false, - sectorGateNumbers.indexOf(index) + 1, + sectorGateNumbers.indexOf(index) + 1 ); gates.push(gate); nextGateWidth = TrackBuilder.getRandomGateWidth(gatesConfig); @@ -40,16 +40,16 @@ export class TrackBuilder { gates.push(TrackBuilder.generateFinalGate(nextGatePosition.y, numberOfGates + 1, gatesConfig)); - return new Track(Config.CURRENT_BUILDER_VERSION, name, trackStyle, new Date(), gates, []); + return new Track(undefined, Config.CURRENT_BUILDER_VERSION, name, trackStyle, new Date(), gates); } - /** - * Rebuild an existing track from the storage format - * @param stockableTrack stockable version of the track - * @returns the track - */ + /** + * Rebuild an existing track from the storage format + * @param stockableTrack stockable version of the track + * @returns the track + */ public static buildTrack(stockableTrack: StockableTrack): Track { - console.log('TrackBuilder - Rebuilding an existing track'); + ('TrackBuilder - Rebuilding an existing track'); const gates: Gate[] = []; for (const stockableGate of stockableTrack.gates) { gates.push( @@ -60,24 +60,35 @@ export class TrackBuilder { stockableGate.color, stockableGate.gateNumber, stockableGate.isFinal, - stockableGate.sectorNumber, - ), + stockableGate.sectorNumber + ) ); } return new Track( + stockableTrack.id, stockableTrack.builderVersion, stockableTrack.name, stockableTrack.style, stockableTrack.date, - gates, - stockableTrack.records, + gates ); } + public static getGatesConfig(trackStyle: TrackStyles): GatesConfig { + if (trackStyle === TrackStyles.SL) { + return Config.SL_GATES_CONFIG; + } + if (trackStyle === TrackStyles.GS) { + return Config.GS_GATES_CONFIG; + } + if (trackStyle === TrackStyles.SG) { + return Config.SG_GATES_CONFIG; + } + return Config.DH_GATES_CONFIG; + } + private static getRandomGatesNumber(gatesConfig: GatesConfig): number { - return Math.floor( - gatesConfig.minNumber + Math.random() * (gatesConfig.maxNumber - gatesConfig.minNumber), - ); + return Math.floor(gatesConfig.minNumber + Math.random() * (gatesConfig.maxNumber - gatesConfig.minNumber)); } private static getGateColor(gateNumber: number, trackStyle: TrackStyles): 'red' | 'blue' { @@ -99,14 +110,14 @@ export class TrackBuilder { 'red', gateNumber, true, - Config.SECTORS_PER_RACE + 1, + Config.SECTORS_PER_RACE + 1 ); } private static getNextGatePosition( gateWidth: number, gatesConfig: GatesConfig, - currentGatePosition?: Vector, + currentGatePosition?: Vector ): Vector { const randomizedValue = Math.random(); const maxRightPosition = Config.GATE_MAX_RIGHT_POSITION - gateWidth; @@ -127,7 +138,7 @@ export class TrackBuilder { currentGatePosition.x, isLeftGate ? 'left' : 'right', maxRightPosition, - gatesConfig, + gatesConfig ); } else { xRestrictedPosition = xProjectedPosition; @@ -143,7 +154,7 @@ export class TrackBuilder { const xPosition = maxRightPosition * Math.random(); return vec( isLeftGate ? -xPosition : xPosition, - -((gatesConfig.maxVerticalDistance + gatesConfig.minVerticalDistance) / 2), + -((gatesConfig.maxVerticalDistance + gatesConfig.minVerticalDistance) / 2) ); } @@ -156,24 +167,11 @@ export class TrackBuilder { return numbers; } - private static getGatesConfig(trackStyle: TrackStyles): GatesConfig { - if (trackStyle === TrackStyles.SL) { - return Config.SL_GATES_CONFIG; - } - if (trackStyle === TrackStyles.GS) { - return Config.GS_GATES_CONFIG; - } - if (trackStyle === TrackStyles.SG) { - return Config.SG_GATES_CONFIG; - } - return Config.DH_GATES_CONFIG; - } - private static furtherAutorizedXPosition( reference: number, direction: 'left' | 'right', maxRightPosition: number, - gatesConfig: GatesConfig, + gatesConfig: GatesConfig ): number { if (direction === 'left') { return Math.max(reference - gatesConfig.maxHorizontalDistance, Config.GATE_MAX_LEFT_POSITION); diff --git a/src/app/pages/create-track/create-track.component.html b/src/app/pages/create-track/create-track.component.html new file mode 100644 index 0000000..288352c --- /dev/null +++ b/src/app/pages/create-track/create-track.component.html @@ -0,0 +1,67 @@ + +
+ +
+
+ +
+
+
+
Create a new track
+
+ This new track will be stored on your device and will be available for + local and online events +
+
Track details
+
+
+
Name
+ +
+
+
Style
+ +
+ + @if(trackAlreadyUse()) { +
A similar track already exist
+ } @if(generatedTrack(); as track) { +
Generated track preview
+
+ Track : + {{ track.fullName }} +
+
+ Builder version : + {{ track.builderVersion }} +
+
+ Gates : + {{ track.gates.length }} +
+ } +
+ +
diff --git a/src/app/pages/create-track/create-track.component.scss b/src/app/pages/create-track/create-track.component.scss new file mode 100644 index 0000000..6d0d248 --- /dev/null +++ b/src/app/pages/create-track/create-track.component.scss @@ -0,0 +1,6 @@ +:host { + display: flex; + flex: 1 1 auto; + flex-direction: column; + padding: 1rem; +} diff --git a/src/app/pages/create-track/create-track.component.ts b/src/app/pages/create-track/create-track.component.ts new file mode 100644 index 0000000..945a29b --- /dev/null +++ b/src/app/pages/create-track/create-track.component.ts @@ -0,0 +1,82 @@ +import { ChangeDetectionStrategy, Component, inject, signal } from '@angular/core'; +import { ToolbarComponent } from '../../common/components/toolbar/toolbar.component'; +import { ButtonIconComponent } from '../../common/components/button-icon/button-icon.component'; +import type { Track } from '../../game/models/track'; +import { FormControl, FormGroup, ReactiveFormsModule, Validators } from '@angular/forms'; +import { TrackStyles } from '../../game/models/track-styles.enum'; +import { TrackBuilder } from '../../game/utils/track-builder'; +import { TrackService } from '../../common/services/track.service'; +import { takeUntilDestroyed } from '@angular/core/rxjs-interop'; +import { Location } from '@angular/common'; +import { Destroyable } from '../../common/components/destroyable/destroyable.component'; +import { takeUntil, tap } from 'rxjs'; +import { RideLocalComponent } from '../ride-local/ride-local.component'; + +interface CreateTrackForm { + name: FormControl; + style: FormControl; +} + +@Component({ + selector: 'app-create-track', + standalone: true, + imports: [ButtonIconComponent, ReactiveFormsModule, ToolbarComponent], + templateUrl: './create-track.component.html', + styleUrl: './create-track.component.scss', + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class CreateTrackComponent extends Destroyable { + protected generatedTrack = signal(undefined); + protected trackAlreadyUse = signal(false); + + protected form = new FormGroup({ + name: new FormControl(null, [Validators.required]), + style: new FormControl(TrackStyles.SL, [Validators.required]) + }); + + private trackService = inject(TrackService); + private location = inject(Location); + + constructor() { + super(); + this.form.valueChanges.pipe(takeUntilDestroyed()).subscribe(() => { + this.resetComputed(); + this.checkSimilarTrack(this.form.value.name!, this.form.value.style!); + }); + } + + protected generateTrack(): void { + this.generatedTrack.set( + TrackBuilder.designTrack(this.form.value.name!.toLocaleLowerCase(), this.form.value.style!) + ); + } + + protected saveTrack(): void { + this.trackService + .addTrack$(this.generatedTrack()!) + .pipe( + tap(trackNumber => localStorage.setItem(RideLocalComponent.TRACK_KEY, `${trackNumber}`)), + tap(() => this.goBack()), + takeUntil(this.destroyed$) + ) + .subscribe(); + } + + protected checkSimilarTrack(name: string, style: TrackStyles): void { + this.trackService + .isTrackAvailable$(name.toLocaleLowerCase(), style) + .pipe( + tap(available => this.trackAlreadyUse.set(available)), + takeUntil(this.destroyed$) + ) + .subscribe(); + } + + protected goBack(): void { + this.location.back(); + } + + private resetComputed(): void { + this.generatedTrack.set(undefined); + } +} diff --git a/src/app/pages/home/home.component.html b/src/app/pages/home/home.component.html new file mode 100644 index 0000000..756216a --- /dev/null +++ b/src/app/pages/home/home.component.html @@ -0,0 +1,11 @@ + +
Welcome
+
+ Ride the mountain for fun, or challenge your friends on some of the most + demanding tracks! +
+
+ + + +
diff --git a/src/app/pages/home/home.component.scss b/src/app/pages/home/home.component.scss new file mode 100644 index 0000000..2020c20 --- /dev/null +++ b/src/app/pages/home/home.component.scss @@ -0,0 +1,37 @@ +:host { + display: flex; + flex: 1 1 auto; + flex-direction: column; + align-items: center; + padding: 1rem; + + .logo { + margin: 3dvh 0; + width: 170px; + height: 170px; + } + + .title { + font-size: var(--text-title); + color: var(--color-text); + margin-bottom: 5dvh; + } + + .subtitle { + font-size: var(--text-small); + color: var(--color-tertiary-light); + text-align: center; + max-width: var(--field-max-width); + padding-bottom: 1rem; + } + + .actions-container { + display: flex; + flex: 1 1 auto; + width: 100%; + justify-content: center; + align-items: center; + flex-direction: column; + gap: 2rem; + } +} diff --git a/src/app/pages/home/home.component.ts b/src/app/pages/home/home.component.ts new file mode 100644 index 0000000..ee1919f --- /dev/null +++ b/src/app/pages/home/home.component.ts @@ -0,0 +1,12 @@ +import { ChangeDetectionStrategy, Component } from '@angular/core'; +import { RouterLink } from '@angular/router'; + +@Component({ + selector: 'app-home', + standalone: true, + imports: [RouterLink], + templateUrl: './home.component.html', + styleUrl: './home.component.scss', + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class HomeComponent {} diff --git a/src/app/pages/learning/learning.component.html b/src/app/pages/learning/learning.component.html new file mode 100644 index 0000000..f46a758 --- /dev/null +++ b/src/app/pages/learning/learning.component.html @@ -0,0 +1,163 @@ + +
+ +
+
+ +
+
+
+ @if(currentPage() === 1) { + + } @else if (currentPage() === 2) { + + } @else if (currentPage() === 3) { + + } @else if (currentPage() === 4) { + + } +
+ + + +
Introduction
+
+ Retroski is a small game development project designed for peaceful + mountain rides and friendly competition. Challenge your friends on + randomly generated 2D alpine ski tracks! +
+
Game modes
+
Ride local
+
+ Choose from existing tracks or generate a custom one, and keep track of + your best rides on this device. You can also play with friends by taking + turns on the same device. +
+
Ride online (work in progress)
+
+ Create or join a server with friends to share tracks and compete for the + best times. +
+
+ + +
Controls
+
+ Retroski is easy to pick up, with only a few controls, but itโ€™s + challenging to master! +
+
+ You can use various devices to ride the mountain: +
+
Devices
+ +
+ Start riding +
+
+ Carve left +
+
+ Carve right +
+
+ Brake / slide +
+
+ Leave the race +
+
+ Toggle ghosts +
+
+ Toggle debug mode +
+
+ +
+ Start riding +
+
+ Carve left / + right +
+
+ Brake / slide +
+
+ Leave the race +
+
+ Toggle ghosts +
+
+ +
Touch screen Start riding
+
Touch left Carve left
+
Touch right Carve right
+
Touch bottom Brake / slide
+
+
+ + +
Game setup
+
+ Access the game setup by clicking the icon in the top-right corner. + Here, you can customize various settings: +
    +
  • Sounds
  • +
  • Ghosts (may affect performance)
  • +
  • Spectators (may affect performance)
  • +
  • Particles (may affect performance)
  • +
+ You can also restore the game to its default settings and erase all + data. +
+
Ghosts
+
+ Multiple ghosts can be displayed simultaneously, allowing you to track + different runs at once. +
+
Ghosts on track
+
+ Global best +
+
+ Event best +
+
+ + +
Quick tips
+
Stay on the track !
+
+ Donโ€™t miss a gate, or youโ€™ll receive a 3-second penalty. +
+
Track styles
+
+ Retroski simulates the four alpine skiing track styles, each with unique + track designs and rider abilities. +
+
Performances
+
+ Retroski is designed to run on any modern device with an up-to-date + browser. If you experience performance issues, try disabling ghosts, + spectators and particles in the setup menu and reload the game. +
+
Have fun and keep riding !
+
+ Itโ€™s time to hit the mountain and have fun! Be careful not to bump into + too many spectators along the way. :) +
+ +
diff --git a/src/app/pages/learning/learning.component.scss b/src/app/pages/learning/learning.component.scss new file mode 100644 index 0000000..035bce9 --- /dev/null +++ b/src/app/pages/learning/learning.component.scss @@ -0,0 +1,10 @@ +:host { + display: flex; + flex: 1 1 auto; + flex-direction: column; + padding: 1rem; + + .retro-button { + margin-top: 2rem; + } +} diff --git a/src/app/pages/learning/learning.component.ts b/src/app/pages/learning/learning.component.ts new file mode 100644 index 0000000..6433e4a --- /dev/null +++ b/src/app/pages/learning/learning.component.ts @@ -0,0 +1,21 @@ +import { ChangeDetectionStrategy, Component, computed, model } from '@angular/core'; +import { ButtonIconComponent } from '../../common/components/button-icon/button-icon.component'; +import { ToolbarComponent } from '../../common/components/toolbar/toolbar.component'; +import { RouterLink } from '@angular/router'; +import { StepperComponent } from '../../common/components/stepper/stepper.component'; +import { NgTemplateOutlet } from '@angular/common'; +import { ExpanderComponent } from '../../common/components/expander/expander.component'; + +@Component({ + selector: 'app-learning', + standalone: true, + imports: [ButtonIconComponent, ExpanderComponent, NgTemplateOutlet, RouterLink, StepperComponent, ToolbarComponent], + templateUrl: './learning.component.html', + styleUrl: './learning.component.scss', + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class LearningComponent { + protected readonly totalPage = 4; + protected currentPage = model(1); + protected currentPageName = computed(() => `page_${this.currentPage()}`); +} diff --git a/src/app/pages/local-event/local-event.component.html b/src/app/pages/local-event/local-event.component.html new file mode 100644 index 0000000..6e755ca --- /dev/null +++ b/src/app/pages/local-event/local-event.component.html @@ -0,0 +1,80 @@ + +
+ +
+
+ +
+
+
+
Local event
+
Actual ranking
+ @if(event.rankings) { +
+ @for(ranking of event.rankings; track $index) { + + + } +
+ } @else { +
No ranking to display for the moment
+ } +
Last results
+ @if(event.results.length) { +
+ @for(result of event.results; track $index) { + + } +
+ } @else { +
No result to display for the moment
+ } @if(event.type === 'race') { +
Incoming races
+ @if(event.incomingRaces.length) { @for(race of event.incomingRaces; track + $index) { + + } } @else { +
No more race to come !
+ } } +
+ diff --git a/src/app/pages/local-event/local-event.component.scss b/src/app/pages/local-event/local-event.component.scss new file mode 100644 index 0000000..6d0d248 --- /dev/null +++ b/src/app/pages/local-event/local-event.component.scss @@ -0,0 +1,6 @@ +:host { + display: flex; + flex: 1 1 auto; + flex-direction: column; + padding: 1rem; +} diff --git a/src/app/pages/local-event/local-event.component.ts b/src/app/pages/local-event/local-event.component.ts new file mode 100644 index 0000000..333c758 --- /dev/null +++ b/src/app/pages/local-event/local-event.component.ts @@ -0,0 +1,34 @@ +import { ChangeDetectionStrategy, Component, inject } from '@angular/core'; +import { ToolbarComponent } from '../../common/components/toolbar/toolbar.component'; +import { ButtonIconComponent } from '../../common/components/button-icon/button-icon.component'; +import { Router, RouterLink } from '@angular/router'; +import { RankingLineComponent } from '../../common/components/ranking-line/ranking-line.component'; +import { ResultLineComponent } from '../../common/components/result-line/result-line.component'; +import type { LocalEvent } from '../../common/models/local-event'; +import { LocalEventService } from '../../common/services/local-event.service'; + +@Component({ + selector: 'app-local-event', + standalone: true, + imports: [ButtonIconComponent, RankingLineComponent, ResultLineComponent, RouterLink, ToolbarComponent], + templateUrl: './local-event.component.html', + styleUrl: './local-event.component.scss', + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class LocalEventComponent { + protected event: LocalEvent; + + private router = inject(Router); + private localEventService = inject(LocalEventService); + + constructor() { + this.event = this.localEventService.getEvent()!; + if (!this.event) { + this.router.navigate(['/ride-local']); + } + } + + protected startRace(): void { + this.router.navigate(['/race']); + } +} diff --git a/src/app/pages/race/race.component.html b/src/app/pages/race/race.component.html new file mode 100644 index 0000000..3867137 --- /dev/null +++ b/src/app/pages/race/race.component.html @@ -0,0 +1,63 @@ + +
+
+ +
+ {{ raceConfig()?.track?.fullName }} +
+
+
+
+
+ timer GB +
+
00:00:00
+
+
+
+ timer EB +
+
00:00:00
+
+
+ +
+ +@if(raceRanking(); as raceRanking) { +
+
+
{{ raceRanking.positionLabel }}
+
{{ raceRanking.formattedTime }}
+
{{ raceRanking.penaltiesLabel }}
+
+
+
Full ranking
+
+ @for (record of raceRanking.trackRecords; track $index) { + + } +
+
+ +
+} diff --git a/src/app/pages/race/race.component.scss b/src/app/pages/race/race.component.scss new file mode 100644 index 0000000..c8e109c --- /dev/null +++ b/src/app/pages/race/race.component.scss @@ -0,0 +1,159 @@ +:host { + display: flex; + flex: 1 1 auto; + flex-direction: column; + position: relative; + + canvas#game { + max-width: 100dvw; + max-height: 100dvh; + } + + .ui-overlay { + display: flex; + flex-direction: column; + position: absolute; + width: 100%; + height: 100%; + top: 0px; + left: 0px; + color: var(--color-primary); + pointer-events: none; + + .header, + .footer { + display: flex; + align-items: center; + justify-content: space-between; + padding: 0.5rem; + + &.header { + pointer-events: all; + } + } + + .content { + display: flex; + flex-direction: column; + flex: 1 1 auto; + width: 100%; + align-items: flex-end; + justify-content: flex-end; + gap: 0.5rem; + padding-bottom: 15%; + + .ghost { + display: flex; + border-radius: var(--border-radius) 0 0 var(--border-radius); + background-color: var(--color-tertiary-lightest); + color: var(--color-tertiary); + overflow: hidden; + max-width: 0px; + transition: max-width var(--transition-time) ease-in-out; + + &.slow-sector > .time { + color: var(--color-error-darkest); + background-color: var(--color-error-lightest); + } + + &.fast-sector > .time { + color: var(--color-success-darkest); + background-color: var(--color-success-lightest); + } + + &.visible { + max-width: 250px; + } + + &.event { + background-color: var(--color-primary-lightest); + color: var(--color-primary); + } + + > .label, + > .time { + display: flex; + align-items: center; + gap: 0.2rem; + padding: 0.5rem 0.5rem; + flex-wrap: nowrap; + text-wrap: nowrap; + + &.time { + justify-content: flex-end; + width: 90px; + } + } + } + } + + #speedometer, + #timer { + visibility: hidden; + + &.visible { + visibility: visible; + } + } + + #timer { + &.penalty { + color: var(--color-error); + } + } + } + + .timing-overlay { + display: flex; + flex-direction: column; + position: absolute; + width: 100%; + height: 100%; + top: 0px; + left: 0px; + background-color: rgba(255, 255, 255, 0.9); + color: var(--color-primary); + + .ranking { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + height: 25%; + gap: 0.5; + + .position { + font-size: var(--text-big); + color: var(--color-tertiary); + font-weight: 500; + } + + .timing { + font-size: var(--text-subtitle); + } + + .penalties { + font-size: var(--text-small); + color: var(--color-error); + } + } + + .retro-content { + padding: 0 1rem; + + .ranking-list { + display: flex; + flex-direction: column; + flex: 1 1 auto; + overflow-y: auto; + } + } + + .retro-footer { + padding: 0.5rem; + .retro-button { + margin-bottom: 1rem; + } + } + } +} diff --git a/src/app/pages/race/race.component.ts b/src/app/pages/race/race.component.ts new file mode 100644 index 0000000..7b7d4a9 --- /dev/null +++ b/src/app/pages/race/race.component.ts @@ -0,0 +1,173 @@ +import { ChangeDetectionStrategy, Component, inject, type OnDestroy, type OnInit, signal } from '@angular/core'; +import { Game } from '../../game/game'; +import { SettingsService } from '../../common/services/settings.service'; +import { Router } from '@angular/router'; +import { ButtonIconComponent } from '../../common/components/button-icon/button-icon.component'; +import { RaceConfig } from '../../game/models/race-config'; +import type { RaceResult } from '../../game/models/race-result'; +import { StockableRecord } from '../../game/models/stockable-record'; +import { RankingLineComponent } from '../../common/components/ranking-line/ranking-line.component'; +import { format } from 'date-fns'; +import { Config } from '../../game/config'; +import { LocalEventService } from '../../common/services/local-event.service'; +import type { LocalEvent } from '../../common/models/local-event'; +import { TrackService } from '../../common/services/track.service'; +import { filter, from, map, type Observable, of, switchMap, takeUntil, tap } from 'rxjs'; +import { Destroyable } from '../../common/components/destroyable/destroyable.component'; + +class RaceRanking { + public trackRecords: StockableRecord[]; + public timing: number; + public penalties: number; + + constructor(trackRecords: StockableRecord[], timing: number, penalties: number) { + this.trackRecords = trackRecords; + this.timing = timing; + this.penalties = penalties; + } + + public get positionLabel(): string { + const position = +this.position; + if (position > 3) { + return `${position}th`; + } + if (position === 3) { + return `${position}rd`; + } + if (position === 2) { + return `${position}nd`; + } + return `${position}st`; + } + + public getDiffTime(timing: number): string { + const diff = timing - this.referenceTime; + return `+${format(diff, diff >= 60000 ? 'mm:ss:SS' : 'ss:SS')}`; + } + + public get formattedTime(): string { + return format(this.timing, 'mm:ss:SS'); + } + + public get penaltiesLabel(): string { + if (this.penalties) { + if (this.penalties > 1) { + return `${this.penalties} penalties (+${this.penalties * (Config.MISSED_GATE_PENALTY_TIME / 1000)}s)`; + } + return `${this.penalties} penalty (+${Config.MISSED_GATE_PENALTY_TIME / 1000}s)`; + } + return ''; + } + + public get position(): number { + return this.trackRecords.filter(record => record.timing < this.timing).length + 1; + } + + private get referenceTime(): number { + return this.trackRecords[0].timing; + } +} + +@Component({ + selector: 'app-race', + standalone: true, + imports: [ButtonIconComponent, RankingLineComponent], + templateUrl: './race.component.html', + styleUrl: './race.component.scss', + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class RaceComponent extends Destroyable implements OnInit, OnDestroy { + private router = inject(Router); + private localEventService = inject(LocalEventService); + private trackService = inject(TrackService); + + private settingsService = inject(SettingsService); + + protected raceConfig = signal(undefined); + protected raceRanking = signal(undefined); + + private game?: Game; + + constructor() { + super(); + if (!this.localEventService.getEvent()) { + this.router.navigate(['/local-event']); + } + } + + ngOnInit(): void { + this.buildRaceConfig$(this.localEventService.getEvent()!) + .pipe( + tap(config => { + this.game = new Game(config, this.settingsService); + this.game.initialize(); + }), + tap(config => this.raceConfig.set(config)), + tap(() => this.listenToRaceStop()), + takeUntil(this.destroyed$) + ) + .subscribe(); + } + + public override ngOnDestroy(): void { + this.game?.stopProperly(); + } + + protected exitRace(): void { + this.router.navigate(['/local-event']); + } + + private buildRaceConfig$(event: LocalEvent): Observable { + return this.trackService + .getTrackGhost$(event.track!.id!) + .pipe( + map( + globalGhost => + new RaceConfig(event.id, event.incomingRaces[0].rider, event.track!, globalGhost, event.ghost) + ) + ); + } + + private listenToRaceStop(): void { + let raceResult: RaceResult; + from(this.game!.raceStopped) + .pipe( + tap(result => { + if (!result) { + this.exitRace(); + } + }), + filter(Boolean), + tap(result => (raceResult = result)), + tap(result => this.localEventService.addEventResult(result)), + map( + result => + new StockableRecord(this.raceConfig()!.track.id!, result.rider, result.date, result.timing) + ), + switchMap(result => this.trackService.addTrackRecord$(result)), + switchMap(() => this.trackService.getTrackRecords$(this.raceConfig()!.track.id!)), + tap(results => + this.raceRanking.set(new RaceRanking(results, raceResult.timing, raceResult.missedGates)) + ), + tap(() => { + if ( + !this.raceConfig()!.eventGhost?.totalTime || + raceResult.timing < this.raceConfig()!.eventGhost!.totalTime! + ) { + this.localEventService.updateEventGhost(raceResult.ghost); + } + }), + switchMap(() => { + if ( + !this.raceConfig()!.globalGhost?.totalTime || + raceResult.timing < this.raceConfig()!.globalGhost!.totalTime! + ) { + return this.trackService.updateTrackGhost$(raceResult.ghost); + } + return of(null); + }), + takeUntil(this.destroyed$) + ) + .subscribe(); + } +} diff --git a/src/app/pages/ride-local/ride-local.component.html b/src/app/pages/ride-local/ride-local.component.html new file mode 100644 index 0000000..4936d38 --- /dev/null +++ b/src/app/pages/ride-local/ride-local.component.html @@ -0,0 +1,70 @@ + +
+ +
+
+ +
+
+
+
Ride local
+
Track setup
+
+
+ @if(availableTracks()?.length) { +
Track
+ + } +
+ +
+
Rider setup
+
+ @for(rider of form.controls.riders.controls; track $index) { +
+
+ Rider {{ $index + 1 }} + @if(form.value.riders?.length! > 1) { + + } +
+ +
+ } + +
+
Event setup
+
+
Number of races
+ +
+
+ diff --git a/src/app/pages/ride-local/ride-local.component.scss b/src/app/pages/ride-local/ride-local.component.scss new file mode 100644 index 0000000..6d0d248 --- /dev/null +++ b/src/app/pages/ride-local/ride-local.component.scss @@ -0,0 +1,6 @@ +:host { + display: flex; + flex: 1 1 auto; + flex-direction: column; + padding: 1rem; +} diff --git a/src/app/pages/ride-local/ride-local.component.ts b/src/app/pages/ride-local/ride-local.component.ts new file mode 100644 index 0000000..ebd88e8 --- /dev/null +++ b/src/app/pages/ride-local/ride-local.component.ts @@ -0,0 +1,95 @@ +import { ChangeDetectionStrategy, Component, inject, type OnDestroy, type Signal } from '@angular/core'; +import { ToolbarComponent } from '../../common/components/toolbar/toolbar.component'; +import { ButtonIconComponent } from '../../common/components/button-icon/button-icon.component'; +import { Router, RouterLink, RouterModule } from '@angular/router'; +import { LocalEventService } from '../../common/services/local-event.service'; +import { FormArray, FormControl, FormGroup, ReactiveFormsModule, Validators } from '@angular/forms'; +import type { Track } from '../../game/models/track'; +import { TrackService } from '../../common/services/track.service'; +import { toSignal } from '@angular/core/rxjs-interop'; +import { StorageManager } from '../../game/utils/storage-manager'; +import { JsonPipe } from '@angular/common'; + +export interface LocalEventForm { + track: FormControl; + riders: FormArray>; + races: FormControl; +} +@Component({ + selector: 'app-ride-local', + standalone: true, + imports: [ButtonIconComponent, JsonPipe, ReactiveFormsModule, RouterModule, RouterLink, ToolbarComponent], + templateUrl: './ride-local.component.html', + styleUrl: './ride-local.component.scss', + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class RideLocalComponent implements OnDestroy { + public static TRACK_KEY = 'event_track'; + private static RIDERS_KEY = 'event_riders'; + private static RACES_KEY = 'event_races'; + + protected availableTracks: Signal; + + protected form!: FormGroup; + + private router = inject(Router); + private trackService = inject(TrackService); + private localEventService = inject(LocalEventService); + + constructor() { + this.availableTracks = toSignal(this.trackService.getTracks$()); + this.initForm(); + } + + ngOnDestroy(): void { + // Persist setup + if (this.form.value.track) { + StorageManager.save(RideLocalComponent.TRACK_KEY, `${this.form.value.track}`); + } + + StorageManager.save(RideLocalComponent.RIDERS_KEY, this.form.value.riders?.filter(Boolean).join(';')!); + StorageManager.save(RideLocalComponent.RACES_KEY, `${this.form.value.races}` || ''); + } + + protected addRider(rider?: string): void { + this.form.controls.riders.push(new FormControl(rider ?? null, [Validators.required])); + } + + protected removeRider(index: number): void { + this.form.controls.riders.removeAt(index); + } + + protected startEvent(): void { + const track = this.availableTracks()?.find(track => track.id === this.form.value!.track); + if (track) { + this.localEventService.newEvent(track, this.form.value.riders as string[], this.form.value.races!); + this.router.navigate(['/local-event']); + } + } + + private initForm(): void { + // Load default riders + const defaultRiders = localStorage.getItem(RideLocalComponent.RIDERS_KEY)?.split(';') ?? ['']; + const defaultTrack = localStorage.getItem(RideLocalComponent.TRACK_KEY) + ? +localStorage.getItem(RideLocalComponent.TRACK_KEY)! + : null; + const defaultRaces = localStorage.getItem(RideLocalComponent.RACES_KEY) + ? +localStorage.getItem(RideLocalComponent.RACES_KEY)! + : 2; + + this.form = new FormGroup({ + track: new FormControl(defaultTrack, [Validators.required, Validators.min(1)]), + riders: new FormArray( + [new FormControl(defaultRiders.splice(0, 1)[0], [Validators.required])], + [Validators.required] + ), + races: new FormControl(defaultRaces, [Validators.required, Validators.min(1), Validators.max(10)]) + }); + + if (defaultRiders.length) { + for (const rider of defaultRiders) { + this.addRider(rider); + } + } + } +} diff --git a/src/app/pages/settings/settings.component.html b/src/app/pages/settings/settings.component.html new file mode 100644 index 0000000..15f7962 --- /dev/null +++ b/src/app/pages/settings/settings.component.html @@ -0,0 +1,40 @@ + +
+ +
+
+
+
Settings
+
+ Settings are applied on the whole game whether you play local or online. +
+
+
Sound
+
+ +
+
+
+
Spectators
+
+ +
+
+
+
Ghosts
+
+ +
+
+
+
Particles
+
+ +
+
+ +
diff --git a/src/app/pages/settings/settings.component.scss b/src/app/pages/settings/settings.component.scss new file mode 100644 index 0000000..8ec7329 --- /dev/null +++ b/src/app/pages/settings/settings.component.scss @@ -0,0 +1,18 @@ +:host { + display: flex; + flex: 1 1 auto; + flex-direction: column; + padding: 1rem; + + .retro-text { + margin-bottom: 2rem; + } + + .setting-item { + display: flex; + height: 40px; + // flex: 1 1 auto; + justify-content: space-between; + font-size: var(--text-subtitle); + } +} diff --git a/src/app/pages/settings/settings.component.ts b/src/app/pages/settings/settings.component.ts new file mode 100644 index 0000000..377ed92 --- /dev/null +++ b/src/app/pages/settings/settings.component.ts @@ -0,0 +1,44 @@ +import { ChangeDetectionStrategy, Component, inject, type OnDestroy, signal, type Signal } from '@angular/core'; +import { Router } from '@angular/router'; +import { ToolbarComponent } from '../../common/components/toolbar/toolbar.component'; +import { ButtonIconComponent } from '../../common/components/button-icon/button-icon.component'; +import { CheckboxComponent } from '../../common/components/checkbox/checkbox.component'; +import { Location } from '@angular/common'; +import { SettingsService } from '../../common/services/settings.service'; +import type { Settings } from '../../common/models/settings'; +import { RETROSKI_DB } from '../../common/db/db'; + +@Component({ + selector: 'app-settings', + standalone: true, + imports: [ButtonIconComponent, CheckboxComponent, ToolbarComponent], + templateUrl: './settings.component.html', + styleUrl: './settings.component.scss', + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class SettingsComponent implements OnDestroy { + private location = inject(Location); + private router = inject(Router); + protected settingsService = inject(SettingsService); + + protected settings: Signal; + + constructor() { + this.settings = signal(this.settingsService.getSettings()); + } + + ngOnDestroy(): void { + this.settingsService.persistSettings(); + } + + protected goBack(): void { + this.location.back(); + } + + protected restore(): void { + this.settingsService.resetSettings(); + localStorage.clear(); + RETROSKI_DB.delete({ disableAutoOpen: false }); + this.router.navigate(['/']); + } +} diff --git a/src/images/icons/event_record_ghost.png b/src/assets/icons/event_record_ghost.png similarity index 100% rename from src/images/icons/event_record_ghost.png rename to src/assets/icons/event_record_ghost.png diff --git a/src/images/icons/favicon-16x16.png b/src/assets/icons/favicon-16x16.png similarity index 100% rename from src/images/icons/favicon-16x16.png rename to src/assets/icons/favicon-16x16.png diff --git a/src/images/icons/favicon-32x32.png b/src/assets/icons/favicon-32x32.png similarity index 100% rename from src/images/icons/favicon-32x32.png rename to src/assets/icons/favicon-32x32.png diff --git a/src/images/icons/favicon.ico b/src/assets/icons/favicon.ico similarity index 100% rename from src/images/icons/favicon.ico rename to src/assets/icons/favicon.ico diff --git a/src/images/icons/gamepad_a.png b/src/assets/icons/gamepad_a.png similarity index 100% rename from src/images/icons/gamepad_a.png rename to src/assets/icons/gamepad_a.png diff --git a/src/images/icons/gamepad_b.png b/src/assets/icons/gamepad_b.png similarity index 100% rename from src/images/icons/gamepad_b.png rename to src/assets/icons/gamepad_b.png diff --git a/src/images/icons/gamepad_left_bumper.png b/src/assets/icons/gamepad_left_bumper.png similarity index 100% rename from src/images/icons/gamepad_left_bumper.png rename to src/assets/icons/gamepad_left_bumper.png diff --git a/src/images/icons/gamepad_left_stick.png b/src/assets/icons/gamepad_left_stick.png similarity index 100% rename from src/images/icons/gamepad_left_stick.png rename to src/assets/icons/gamepad_left_stick.png diff --git a/src/images/icons/gamepad_select.png b/src/assets/icons/gamepad_select.png similarity index 100% rename from src/images/icons/gamepad_select.png rename to src/assets/icons/gamepad_select.png diff --git a/src/images/icons/gamepad_start.png b/src/assets/icons/gamepad_start.png similarity index 100% rename from src/images/icons/gamepad_start.png rename to src/assets/icons/gamepad_start.png diff --git a/src/images/icons/gamepad_x.png b/src/assets/icons/gamepad_x.png similarity index 100% rename from src/images/icons/gamepad_x.png rename to src/assets/icons/gamepad_x.png diff --git a/src/images/icons/gamepad_y.png b/src/assets/icons/gamepad_y.png similarity index 100% rename from src/images/icons/gamepad_y.png rename to src/assets/icons/gamepad_y.png diff --git a/src/images/icons/global_record_ghost.png b/src/assets/icons/global_record_ghost.png similarity index 100% rename from src/images/icons/global_record_ghost.png rename to src/assets/icons/global_record_ghost.png diff --git a/src/images/icons/keyboard_arrow_down.png b/src/assets/icons/keyboard_arrow_down.png similarity index 100% rename from src/images/icons/keyboard_arrow_down.png rename to src/assets/icons/keyboard_arrow_down.png diff --git a/src/images/icons/keyboard_arrow_left.png b/src/assets/icons/keyboard_arrow_left.png similarity index 100% rename from src/images/icons/keyboard_arrow_left.png rename to src/assets/icons/keyboard_arrow_left.png diff --git a/src/images/icons/keyboard_arrow_right.png b/src/assets/icons/keyboard_arrow_right.png similarity index 100% rename from src/images/icons/keyboard_arrow_right.png rename to src/assets/icons/keyboard_arrow_right.png diff --git a/src/images/icons/keyboard_arrow_up.png b/src/assets/icons/keyboard_arrow_up.png similarity index 100% rename from src/images/icons/keyboard_arrow_up.png rename to src/assets/icons/keyboard_arrow_up.png diff --git a/src/images/icons/keyboard_d.png b/src/assets/icons/keyboard_d.png similarity index 100% rename from src/images/icons/keyboard_d.png rename to src/assets/icons/keyboard_d.png diff --git a/src/images/icons/keyboard_exit.png b/src/assets/icons/keyboard_exit.png similarity index 100% rename from src/images/icons/keyboard_exit.png rename to src/assets/icons/keyboard_exit.png diff --git a/src/images/icons/keyboard_g.png b/src/assets/icons/keyboard_g.png similarity index 100% rename from src/images/icons/keyboard_g.png rename to src/assets/icons/keyboard_g.png diff --git a/src/images/icons/keyboard_space.png b/src/assets/icons/keyboard_space.png similarity index 100% rename from src/images/icons/keyboard_space.png rename to src/assets/icons/keyboard_space.png diff --git a/src/assets/logos/logo.png b/src/assets/logos/logo.png new file mode 100644 index 0000000..80c4d9d Binary files /dev/null and b/src/assets/logos/logo.png differ diff --git a/src/assets/logos/original_logo.png b/src/assets/logos/original_logo.png new file mode 100644 index 0000000..2cdce65 Binary files /dev/null and b/src/assets/logos/original_logo.png differ diff --git a/src/assets/logos/small_logo.png b/src/assets/logos/small_logo.png new file mode 100644 index 0000000..7e280d1 Binary files /dev/null and b/src/assets/logos/small_logo.png differ diff --git a/src/browser-config.ts b/src/browser-config.ts deleted file mode 100644 index 41631c5..0000000 --- a/src/browser-config.ts +++ /dev/null @@ -1,5 +0,0 @@ -window.oncontextmenu = (event) => { - event.preventDefault(); - event.stopPropagation(); - return false; -} \ No newline at end of file diff --git a/src/config.ts b/src/config.ts deleted file mode 100644 index 92a1d05..0000000 --- a/src/config.ts +++ /dev/null @@ -1,221 +0,0 @@ -import { Axes, Buttons, Keys } from 'excalibur'; -import { Resources } from './resources'; -import { TrackStyles } from './models/track-styles.enum'; - -export class Config { - // DISPLAY - static DISPLAY_WIDTH = 800; - static DISPLAY_HEIGHT = 800; - static CAMERA_ZOOM = 1; - static DISPLAY_MIN_MARGIN = 75; - static DISPLAY_MAX_RIGHT_POSITION = Config.DISPLAY_WIDTH / 2 - Config.DISPLAY_MIN_MARGIN; - static DISPLAY_MAX_LEFT_POSITION = -Config.DISPLAY_MAX_RIGHT_POSITION; - static FRONT_GHOST_DISTANCE = -Config.DISPLAY_HEIGHT / 3.8; - - // SOUND - static RACE_AMBIANCE_SOUND_VOLUME = 0.08; - static BRAKING_SOUND_VOLUME = 0.3; - static CARVING_SOUND_VOLUME = 0.15; - static FINISH_SOUND_VOLUME = 0.2; - static GATE_MISSED_SOUND_VOLUME = 0.25; - static POLE_HIT_SOUND_VOLUME = 0.08; - - // RACE - static MISSED_GATE_PENALTY_TIME = 3000; - static SECTORS_PER_RACE = 2; - static SECTOR_DISPLAY_TIME = 4500; - - // FORMAT - static FORMAT_TIMING = 'mm:ss:SS'; - - // TRACKS - static CURRENT_BUILDER_VERSION = 4; - static DEFAULT_TRACKS = ['soelden', 'davos', 'wengen', 'adelboden', 'zermatt']; - - // CONTROLS - static KEYBOARD_CONTROL_CARVE_RIGHT = Keys.ArrowRight; - static KEYBOARD_CONTROL_CARVE_LEFT = Keys.ArrowLeft; - static KEYBOARD_CONTROL_BRAKE = Keys.Space; - static KEYBOARD_DEBUG_KEY = Keys.D; - static KEYBOARD_RESTART_KEY = Keys.R; - static KEYBOARD_EXIT_KEY = Keys.Escape; - static KEYBOARD_START_KEY = Keys.ArrowUp; - static KEYBOARD_GHOST_KEY = Keys.G; - - static GAMEPAD_AXES_FILTER_RATE = 0.1; - static GAMEPAD_CONTROL_CARVE = Axes.LeftStickX; - static GAMEPAD_CONTROL_BRAKE = Buttons.Face2; - static GAMEPAD_EXIT_BUTTON = Buttons.Select; - static GAMEPAD_RACE_BUTTON = Buttons.Face1; - static GAMEPAD_START_BUTTON = Buttons.Start; - static GAMEPAD_GHOST_BUTTON = Buttons.LeftBumper; - - static TOUCH_BRAKE_ZONE_RATIO = 0.2; - - // DYNAMIC - static MAX_SPEED = 150; - static VELOCITY_MULTIPLIER_RATE = 7 * 0.6; - static LATERAL_VELOCITY_ROTATION_RATE = 1.08; - // ROTATION - static MAX_RIGHT_ROTATION_ANGLE = Math.PI / 2; - static MAX_LEFT_ROTATION_ANGLE = (3 * Math.PI) / 2; - static ROTATION_RECENTER_RATE = 0.2; - - // SLOPE - static INITIAL_SLOPE = 0.1; - - // SKIER - static ACCELERATION_RATE = 3; - static BRAKING_RATE = 1; - static CARVING_ADHERENCE_RATE = 0.9; - static CARVING_BRAKING_RATE = 0.01; - static SLIDING_ADHERENCE_RATE = 0.6; - static SLIDING_BRAKING_RATE = 0.9; - // SKIER SPECIFIC STYLE DYNAMIC - static SL_SKIER_CONFIG = { - windFrictionRate: 0.0025, - carvingRotationRate: 3.2, - carvingOptimalSpeed: 50, - slidingRotationRate: 4.2, - slidingOptimalSpeed: 35, - }; - static GS_SKIER_CONFIG = { - windFrictionRate: 0.0022, - carvingRotationRate: 3.1, - carvingOptimalSpeed: 60, - slidingRotationRate: 4.1, - slidingOptimalSpeed: 45, - }; - static SG_SKIER_CONFIG = { - windFrictionRate: 0.002, - carvingRotationRate: 2.6, - carvingOptimalSpeed: 70, - slidingRotationRate: 3.2, - slidingOptimalSpeed: 50, - }; - static DH_SKIER_CONFIG = { - windFrictionRate: 0.0018, - carvingRotationRate: 2.2, - carvingOptimalSpeed: 75, - slidingRotationRate: 3.1, - slidingOptimalSpeed: 60, - }; - - // GATES - static GATE_MAX_LEFT_POSITION = Config.DISPLAY_MAX_LEFT_POSITION; - static GATE_MAX_RIGHT_POSITION = Config.DISPLAY_MAX_RIGHT_POSITION; - static FINAL_GATE_WIDTH = Config.DISPLAY_WIDTH - 2 * Config.DISPLAY_MIN_MARGIN; - static FINAL_GATE_POSITION = Config.DISPLAY_MAX_LEFT_POSITION; - static GATE_OTHER_SIDE_PROBABILITY = 0.95; - // SPECIFIC TRACK STYLE CONFIG - static SL_GATES_CONFIG = { - trackStyle: TrackStyles.SL, - maxWidth: 114, - minWidth: 90, - maxHorizontalDistance: 192, - minVerticalDistance: 102, - maxVerticalDistance: 162, - minNumber: 41, - maxNumber: 51, - poleWidth: 3, - poleHeight: 20, - poleSprites: new Map([ - ['red', Resources.PoleSlRed.toSprite()], - ['blue', Resources.PoleSlBlue.toSprite()], - ]), - poleCheckSprites: new Map([ - ['red', Resources.PoleCheckRed.toSprite()], - ['blue', Resources.PoleCheckBlue.toSprite()], - ]), - }; - static GS_GATES_CONFIG = { - trackStyle: TrackStyles.GS, - maxWidth: 120, - minWidth: 96, - maxHorizontalDistance: 192, - minVerticalDistance: 120, - maxVerticalDistance: 210, - minNumber: 44, - maxNumber: 54, - poleWidth: 12, - poleHeight: 12, - poleSprites: new Map([ - ['red', Resources.PoleRed.toSprite()], - ['blue', Resources.PoleBlue.toSprite()], - ]), - poleCheckSprites: new Map([ - ['red', Resources.PoleCheckRed.toSprite()], - ['blue', Resources.PoleCheckBlue.toSprite()], - ]), - }; - static SG_GATES_CONFIG = { - trackStyle: TrackStyles.SG, - maxWidth: 144, - minWidth: 114, - maxHorizontalDistance: 210, - minVerticalDistance: 192, - maxVerticalDistance: 300, - minNumber: 46, - maxNumber: 56, - poleWidth: 12, - poleHeight: 12, - poleSprites: new Map([ - ['red', Resources.PoleRed.toSprite()], - ['blue', Resources.PoleBlue.toSprite()], - ]), - poleCheckSprites: new Map([ - ['red', Resources.PoleCheckRed.toSprite()], - ['blue', Resources.PoleCheckBlue.toSprite()], - ]), - }; - static DH_GATES_CONFIG = { - trackStyle: TrackStyles.DH, - maxWidth: 150, - minWidth: 120, - maxHorizontalDistance: 180, - minVerticalDistance: 252, - maxVerticalDistance: 318, - minNumber: 48, - maxNumber: 58, - poleWidth: 12, - poleHeight: 12, - poleSprites: new Map([['red', Resources.PoleRed.toSprite()]]), - poleCheckSprites: new Map([['red', Resources.PoleCheckRed.toSprite()]]), - }; - - // POLES - static POLE_DETECTOR_MARGIN = 18; - static FINAL_POLE_WIDTH = 30; - static FINAL_POLE_HEIGHT = 60; - - // SPECTATORS - static SPECTATOR_HEIGHT = 18; - static SPECTATOR_WIDTH = 15; - static SPECTATOR_SPRITES = [ - Resources.Spectator1.toSprite(), - Resources.Spectator2.toSprite(), - Resources.Spectator3.toSprite(), - Resources.Spectator4.toSprite(), - ]; - static SPECTATORS_MAX_DENSITY = 20; - static SPECTATORS_MAX_SOUND_DISTANCE = 300; - static SPECTATORS_SOUND_INTENSITY = 0.15; - static SPECTATORS_SOUNDS = [ - Resources.SpectatorsSound, - Resources.Spectators2Sound, - Resources.Spectators3Sound, - Resources.Spectators4Sound, - ]; - static SPECTATORS_INTENSE_SOUND_PROBABILITY = 0.15; - static SPECTATORS_INTENSE_SOUND_INTENSITY = 0.2; - static SPECTATORS_INTENSE_SOUNDS = [Resources.SpectatorsIntenseSound]; - static SPECTATORS_BELLS_SOUND_PROBABILITY = 0.4; - static SPECTATORS_BELLS_SOUND_INTENSITY = 0.2; - static SPECTATORS_BELLS_SOUNDS = [Resources.SpectatorsBellsSound, Resources.SpectatorsBells2Sound]; - static SPECTATOR_HIT_SOUND_INTENSITY = 0.3; - static SPECTATOR_HIT_SOUNDS = [ - Resources.SpectatorHitSound, - Resources.SpectatorHit2Sound, - Resources.SpectatorHit3Sound, - ]; -} diff --git a/src/files.d.ts b/src/files.d.ts deleted file mode 100644 index e2937d4..0000000 --- a/src/files.d.ts +++ /dev/null @@ -1 +0,0 @@ -declare module '*.png'; diff --git a/src/game.ts b/src/game.ts deleted file mode 100644 index 9cf6051..0000000 --- a/src/game.ts +++ /dev/null @@ -1,134 +0,0 @@ -import { Color, DisplayMode, Engine, Loader } from 'excalibur'; -import { Resources } from './resources'; -import { Config } from './config'; -import { TrackManager } from './utils/track-manager'; -import { EventSetup } from './scenes/event-setup'; -import { EventManager } from './scenes/event-manager'; -import { SoundPlayer } from './utils/sounds-player'; -import { LogoManager } from './utils/logo-manager'; -import { Race } from './scenes/race'; -import { GamepadsManager } from './utils/gamepads-manager'; -import { WelcomeUiManager } from './utils/welcome-ui-manager'; -import { GameSetupManager } from './utils/game-setup-manager'; - -export class Game extends Engine { - private resourcesToLoad = [ - Resources.Skier, - Resources.SkierCarving, - Resources.SkierSliding, - Resources.SkierBraking, - - Resources.GlobalGhostSkier, - Resources.GlobalGhostSkierCarving, - Resources.GlobalGhostSkierSliding, - Resources.GlobalGhostSkierBraking, - - Resources.EventRecordGhost, - Resources.EventRecordGhostCarving, - Resources.EventRecordGhostSliding, - Resources.EventRecordGhostBraking, - - Resources.StartingGate, - Resources.StartingHouse, - Resources.PoleRed, - Resources.PoleBlue, - Resources.PoleSlRed, - Resources.PoleSlBlue, - Resources.PoleCheckRed, - Resources.PoleCheckBlue, - Resources.FinalGate, - - Resources.Spectator1, - Resources.Spectator2, - Resources.Spectator3, - Resources.Spectator4, - - Resources.WinterSound, - Resources.StartRaceSound, - Resources.FinishRaceSound, - Resources.GateMissedSound, - Resources.PoleHittingSound, - Resources.TurningSound, - Resources.SpectatorsSound, - Resources.Spectators2Sound, - Resources.Spectators3Sound, - Resources.Spectators4Sound, - Resources.SpectatorsIntenseSound, - Resources.SpectatorHitSound, - Resources.SpectatorHit2Sound, - Resources.SpectatorHit3Sound, - Resources.SpectatorsBellsSound, - Resources.SpectatorsBells2Sound, - ]; - - public welcomeUiManager = new WelcomeUiManager(); - public gameSetupManager = new GameSetupManager(); - public trackManager = new TrackManager(); - public soundPlayer = new SoundPlayer(this.gameSetupManager); - public gamepadsManager = new GamepadsManager(this); - - constructor() { - super({ - displayMode: DisplayMode.FitContainerAndFill, - width: 800, - height: 800, - backgroundColor: Color.White, - fixedUpdateFps: 60, - maxFps: 60, - canvasElementId: 'game', - }); - } - - initialize() { - this.addScene('eventSetup', new EventSetup(this)); - this.addScene('eventManager', new EventManager(this)); - - this.trackManager.importDefaultTracks(); - this.trackManager.importDefaultGhosts(); - - this.start(this.getLoader()).then(() => { - this.welcomeUiManager.showWelcomeUi(); - this.goToScene('eventSetup'); - }); - } - - onPreUpdate(_engine: Engine, _delta: number): void { - if (_engine.scenes?.race?.isCurrentScene()) { - if (_engine.input.keyboard.wasPressed(Config.KEYBOARD_DEBUG_KEY)) { - _engine.showDebug(!_engine.isDebug); - } else if ( - _engine.input.keyboard.wasPressed(Config.KEYBOARD_GHOST_KEY) || - this.gamepadsManager.wasButtonPressed(Config.GAMEPAD_GHOST_BUTTON) - ) { - this.gameSetupManager.toggleGhosts(); - } - } - - if ( - _engine.input.keyboard.wasPressed(Config.KEYBOARD_EXIT_KEY) || - this.gamepadsManager.wasButtonPressed(Config.GAMEPAD_EXIT_BUTTON) - ) { - if (_engine.scenes?.eventManager?.isCurrentScene()) { - this.goToScene('eventSetup'); - } else if (_engine.scenes?.race?.isCurrentScene()) { - (_engine.currentScene as Race).returnToEventManager(); - } else if (_engine.scenes?.eventSetup?.isCurrentScene()) { - this.welcomeUiManager.showWelcomeUi(); - } - } - } - - private getLoader(): Loader { - const loader = new Loader(this.resourcesToLoad); - loader.backgroundColor = '#b0d4dd'; - loader.logo = LogoManager.base64Image; - loader.logoHeight = 250; - loader.logoWidth = 250; - loader.loadingBarColor = Color.fromHex('#4a8291'); - loader.suppressPlayButton = true; - return loader; - } -} - -export const game = new Game(); -game.initialize(); diff --git a/src/images/icons/android-chrome-192x192.png b/src/images/icons/android-chrome-192x192.png deleted file mode 100644 index f15f993..0000000 Binary files a/src/images/icons/android-chrome-192x192.png and /dev/null differ diff --git a/src/images/icons/android-chrome-512x512.png b/src/images/icons/android-chrome-512x512.png deleted file mode 100644 index cdfb2f6..0000000 Binary files a/src/images/icons/android-chrome-512x512.png and /dev/null differ diff --git a/src/images/icons/apple-touch-icon.png b/src/images/icons/apple-touch-icon.png deleted file mode 100644 index d0a1c5d..0000000 Binary files a/src/images/icons/apple-touch-icon.png and /dev/null differ diff --git a/src/images/logos/logo.png b/src/images/logos/logo.png deleted file mode 100644 index a93cac8..0000000 Binary files a/src/images/logos/logo.png and /dev/null differ diff --git a/src/images/logos/small_logo.png b/src/images/logos/small_logo.png deleted file mode 100644 index 09a60ca..0000000 Binary files a/src/images/logos/small_logo.png and /dev/null differ diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..e3a50ea --- /dev/null +++ b/src/index.html @@ -0,0 +1,29 @@ + + + + + RetroSki + + + + + + + + + +
+ +
+ + diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..7180ec1 --- /dev/null +++ b/src/main.ts @@ -0,0 +1,5 @@ +import { bootstrapApplication } from '@angular/platform-browser'; +import { appConfig } from './app/app.config'; +import { AppComponent } from './app/app.component'; + +bootstrapApplication(AppComponent, appConfig).catch(err => console.error(err)); diff --git a/src/models/event-config.ts b/src/models/event-config.ts deleted file mode 100644 index c5ca8b0..0000000 --- a/src/models/event-config.ts +++ /dev/null @@ -1,82 +0,0 @@ -import { EventRaceResult } from './event-race-result'; -import { EventRanking } from './event-ranking'; -import { RaceResult } from './race-result'; -import { TrackStyles } from './track-styles.enum'; - -export class EventConfig { - public eventId: string; - public trackName: string; - public trackStyle: TrackStyles; - public skier1Name: string; - public skier2Name: string; - public numberOfRaces: number; - public racesResults!: EventRaceResult[]; - - constructor( - trackName: string, - trackStyle: TrackStyles, - skier1Name: string, - skier2Name: string, - numberOfRaces: number, - ) { - this.eventId = `event${new Date().getTime()}`; - this.trackName = trackName; - this.trackStyle = trackStyle; - this.skier1Name = skier1Name; - this.skier2Name = skier2Name; - this.numberOfRaces = numberOfRaces; - this.initRacesResults(numberOfRaces); - } - - public updateRaceResult(raceResult: RaceResult) { - this.racesResults = this.racesResults.map(result => { - if (result.raceNumber === raceResult.raceNumber) { - result.setTiming(raceResult.skierName, raceResult.timing); - } - return result; - }); - } - - public getNextRace(): EventRaceResult | null { - return this.racesResults.find(race => !race.isCompleted()) || null; - } - - public getActualRankings(): EventRanking[] { - let skier1Victories = 0; - let skier2Victories = 0; - let skier1TotalTiming = 0; - let skier2TotalTiming = 0; - - for (const raceResult of this.racesResults.filter(result => result.isCompleted())) { - if (raceResult.getWinner() === this.skier1Name) { - skier1Victories++; - } else { - skier2Victories++; - } - - skier1TotalTiming += raceResult.skier1Timing!; - skier2TotalTiming += raceResult.skier2Timing!; - } - - return [ - new EventRanking(this.skier1Name, skier1Victories, skier1TotalTiming), - new EventRanking(this.skier2Name, skier2Victories, skier2TotalTiming), - ].sort((s1, s2) => s1.time - s2.time); - } - - private initRacesResults(numberOfRaces: number): void { - this.racesResults = []; - for (let i = 1; i <= numberOfRaces; i++) { - this.racesResults.push( - new EventRaceResult( - this.eventId, - i, - this.trackName, - this.trackStyle, - this.skier1Name, - this.skier2Name, - ), - ); - } - } -} diff --git a/src/models/event-race-result.ts b/src/models/event-race-result.ts deleted file mode 100644 index a4db2ad..0000000 --- a/src/models/event-race-result.ts +++ /dev/null @@ -1,64 +0,0 @@ -import { TrackStyles } from './track-styles.enum'; - -export class EventRaceResult { - public eventId: string; - public raceNumber: number; - public trackName: string; - public trackStyle: TrackStyles; - public skier1Name: string; - public skier2Name: string; - public skier1Timing?: number; - public skier2Timing?: number; - - constructor( - eventId: string, - raceNumber: number, - trackName: string, - trackStyle: TrackStyles, - skier1Name: string, - skier2Name: string, - ) { - this.eventId = eventId; - this.raceNumber = raceNumber; - this.trackName = trackName; - this.trackStyle = trackStyle; - this.skier1Name = skier1Name; - this.skier2Name = skier2Name; - } - - public getWinner(): string | null { - return !this.isCompleted() - ? null - : this.skier1Timing! < this.skier2Timing! - ? this.skier1Name - : this.skier2Name; - } - - public getNextSkierName(): string | null { - return this.isCompleted() ? null : this.skier1Timing ? this.skier2Name : this.skier1Name; - } - - public setTiming(skierName: string, timing: number): boolean { - if (skierName === this.skier1Name) { - this.skier1Timing = timing; - } else if (skierName === this.skier2Name) { - this.skier2Timing = timing; - } - - return this.isCompleted(); - } - - public getFullTrackName(): string { - return `${this.trackStyle} - ${this.trackName[0].toUpperCase()}${this.trackName - .slice(1) - .toLowerCase()}`; - } - - public isStarted(): boolean { - return !!this.skier1Timing || !!this.skier2Timing; - } - - public isCompleted(): boolean { - return !!this.skier1Timing && !!this.skier2Timing; - } -} diff --git a/src/models/event-ranking.ts b/src/models/event-ranking.ts deleted file mode 100644 index e22561f..0000000 --- a/src/models/event-ranking.ts +++ /dev/null @@ -1,11 +0,0 @@ -export class EventRanking { - public skierName: string; - public victories: number; - public time: number; - - constructor(skierName: string, victories: number, time: number) { - this.skierName = skierName; - this.victories = victories; - this.time = time; - } -} diff --git a/src/models/game-setup.ts b/src/models/game-setup.ts deleted file mode 100644 index e2727cc..0000000 --- a/src/models/game-setup.ts +++ /dev/null @@ -1,5 +0,0 @@ -export class GameSetup { - public sounds = true; - public spectators = true; - public ghosts = true; -} diff --git a/src/models/race-result.ts b/src/models/race-result.ts deleted file mode 100644 index ce68911..0000000 --- a/src/models/race-result.ts +++ /dev/null @@ -1,13 +0,0 @@ -export class RaceResult { - public raceNumber: number; - public skierName: string; - public date: Date; - public timing: number; - - constructor(raceNumber: number, skierName: string, date: Date, timing: number) { - this.raceNumber = raceNumber; - this.skierName = skierName; - this.date = date; - this.timing = timing; - } -} diff --git a/src/models/record-result.ts b/src/models/record-result.ts deleted file mode 100644 index 1efafed..0000000 --- a/src/models/record-result.ts +++ /dev/null @@ -1,15 +0,0 @@ -export class RecordResult { - public position: number; - public player: string; - public date: string; - public time: string; - public difference: string; - - constructor(position: number, player: string, date: string, time: string, difference: string) { - this.position = position; - this.player = player; - this.date = date; - this.time = time; - this.difference = difference; - } -} diff --git a/src/models/skier-actions.enum.ts b/src/models/skier-actions.enum.ts deleted file mode 100644 index afee8a0..0000000 --- a/src/models/skier-actions.enum.ts +++ /dev/null @@ -1,8 +0,0 @@ -export enum SkierActions { - CARVE_LEFT = 'CARVE_LEFT', - CARVE_RIGHT = 'CARVE_RIGHT', - SLIDE_LEFT = 'SLIDE_LEFT', - SLIDE_RIGHT = 'SLIDE_RIGHT', - BRAKE = 'BRAKE', - NOTHING = 'NOTHING', -} diff --git a/src/models/skier-config.ts b/src/models/skier-config.ts deleted file mode 100644 index 3a4f95a..0000000 --- a/src/models/skier-config.ts +++ /dev/null @@ -1,7 +0,0 @@ -export interface SkierConfig { - windFrictionRate: number; - carvingRotationRate: number; - carvingOptimalSpeed: number; - slidingRotationRate: number; - slidingOptimalSpeed: number; -} diff --git a/src/models/skier-positioning.ts b/src/models/skier-positioning.ts deleted file mode 100644 index 39354b5..0000000 --- a/src/models/skier-positioning.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { SkierActions } from './skier-actions.enum'; - -export class SkierPositioning { - public x: number; - public y: number; - public rotation: number; - public action: SkierActions; - - constructor(x: number, y: number, rotation: number, action: SkierActions) { - this.x = x; - this.y = y; - this.rotation = rotation; - this.action = action; - } -} diff --git a/src/models/stockable-gate.ts b/src/models/stockable-gate.ts deleted file mode 100644 index 66b0b02..0000000 --- a/src/models/stockable-gate.ts +++ /dev/null @@ -1,27 +0,0 @@ -export class StockableGate { - public x: number; - public y: number; - public color: 'red' | 'blue'; - public width: number; - public gateNumber: number; - public isFinal: boolean; - public sectorNumber?: number; - - constructor( - x: number, - y: number, - color: 'red' | 'blue', - width: number, - gateNumber: number, - isFinal: boolean, - sectorNumber?: number, - ) { - this.x = x; - this.y = y; - this.color = color; - this.width = width; - this.gateNumber = gateNumber; - this.isFinal = isFinal; - this.sectorNumber = sectorNumber; - } -} diff --git a/src/models/stockable-ghost.ts b/src/models/stockable-ghost.ts deleted file mode 100644 index 4bf3e55..0000000 --- a/src/models/stockable-ghost.ts +++ /dev/null @@ -1,41 +0,0 @@ -import { SkierPositioning } from './skier-positioning'; -import { TimedSector } from './timed-sector'; -import { TrackStyles } from './track-styles.enum'; - -export class StockableGhost { - public date?: Date; - public eventId?: string; - public trackName?: string; - public trackVersion?: number; - public trackStyle?: TrackStyles; - public skier?: string; - public totalTime?: number; - public timedSectors?: TimedSector[]; - public positions?: SkierPositioning[]; - - constructor( - date?: Date, - eventId?: string, - trackName?: string, - trackVersion?: number | undefined, - trackStyle?: TrackStyles, - skier?: string, - totalTime?: number, - timedSectors?: TimedSector[], - positions?: SkierPositioning[], - ) { - this.date = date; - this.eventId = eventId; - this.trackName = trackName; - this.trackVersion = trackVersion; - this.trackStyle = trackStyle; - this.skier = skier; - this.totalTime = totalTime; - this.timedSectors = timedSectors; - this.positions = positions; - } - - public getSectorTime(sectorNumber: number): number | undefined { - return this.timedSectors ? this.timedSectors[sectorNumber - 1]?.time : undefined; - } -} diff --git a/src/models/stockable-record.ts b/src/models/stockable-record.ts deleted file mode 100644 index 435b62f..0000000 --- a/src/models/stockable-record.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { RaceResult } from './race-result'; - -export class StockableRecord { - public player: string; - public date: Date; - public timing: number; - - constructor(raceResult: RaceResult) { - this.player = raceResult.skierName; - this.date = raceResult.date; - this.timing = raceResult.timing; - } -} diff --git a/src/models/stockable-track.ts b/src/models/stockable-track.ts deleted file mode 100644 index 8881059..0000000 --- a/src/models/stockable-track.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { TrackBuilder } from '../utils/track-builder'; -import { StockableGate } from './stockable-gate'; -import { StockableRecord } from './stockable-record'; -import { Track } from './track'; -import { TrackStyles } from './track-styles.enum'; - -export class StockableTrack { - public name: string; - public builderVersion?: number; - public style: TrackStyles; - public date: Date; - public gates: StockableGate[]; - public records: StockableRecord[]; - - constructor( - builderVersion?: number, - name?: string, - style?: TrackStyles, - date?: Date, - gates?: StockableGate[], - records?: StockableRecord[], - ) { - this.name = name!; - this.builderVersion = builderVersion; - this.style = style!; - this.date = date!; - this.gates = gates!; - this.records = records!; - } - - public toTrack(): Track { - return TrackBuilder.buildTrack(this); - } -} diff --git a/src/models/timed-sector.ts b/src/models/timed-sector.ts deleted file mode 100644 index d455d21..0000000 --- a/src/models/timed-sector.ts +++ /dev/null @@ -1,9 +0,0 @@ -export class TimedSector { - public sectorNumber: number; - public time: number; - - constructor(sectorNumber: number, time: number) { - this.sectorNumber = sectorNumber; - this.time = time; - } -} diff --git a/src/models/track-styles.enum.ts b/src/models/track-styles.enum.ts deleted file mode 100644 index b3523fb..0000000 --- a/src/models/track-styles.enum.ts +++ /dev/null @@ -1,6 +0,0 @@ -export enum TrackStyles { - SL = 'SL', - GS = 'GS', - SG = 'SG', - DH = 'DH', -} diff --git a/src/models/track.ts b/src/models/track.ts deleted file mode 100644 index e93f7de..0000000 --- a/src/models/track.ts +++ /dev/null @@ -1,40 +0,0 @@ -import { Gate } from '../actors/gate'; -import { StockableRecord } from './stockable-record'; -import { StockableTrack } from './stockable-track'; -import { TrackStyles } from './track-styles.enum'; - -export class Track { - public name: string; - public builderVersion?: number; - public style: TrackStyles; - public date: Date; - public gates: Gate[]; - public records: StockableRecord[]; - - constructor( - builderVersion?: number, - name?: string, - style?: TrackStyles, - date?: Date, - gates?: Gate[], - records?: StockableRecord[], - ) { - this.builderVersion = builderVersion; - this.name = name!; - this.style = style!; - this.date = date!; - this.gates = gates!; - this.records = records!; - } - - public toStockable(): StockableTrack { - return new StockableTrack( - this.builderVersion, - this.name, - this.style, - this.date, - this.gates.map(gate => gate.getStockableGate()), - this.records, - ); - } -} diff --git a/src/public/ghosts/adelboden.json b/src/public/ghosts/adelboden.json deleted file mode 100644 index 390bff5..0000000 --- a/src/public/ghosts/adelboden.json +++ /dev/null @@ -1,15595 +0,0 @@ -{ - "date": "2024-04-09T19:29:22.894Z", - "eventId": "event1712690916343", - "trackName": "adelboden", - "trackVersion": 4, - "trackStyle": "SL", - "skier": "Mathieu Hugas", - "totalTime": 43651.5, - "timedSectors": [ - { "sectorNumber": 1, "time": 16358.299999952316 }, - { "sectorNumber": 2, "time": 29703.799999952316 }, - { "sectorNumber": 3, "time": 43651 } - ], - "positions": [ - { "x": 0, "y": 0, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.021000000000000005, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.06294750000000002, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.12579013125000002, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.20947565592187503, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.3139519667820704, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.4391670868651152, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.5850691691479524, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.7516064962250826, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.9387274799845199, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.1463806612845586, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.3745147096313473, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.623078422857269, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.892020726800126, "rotation": 0, "action": "CARVE_RIGHT" }, - { - "x": 0.0007661777849289752, - "y": -2.179823876750017, - "rotation": 0.004291591955841993, - "action": "CARVE_RIGHT" - }, - { - "x": 0.0024614020598657466, - "y": -2.4862265933266, - "rotation": 0.008895472501347283, - "action": "CARVE_RIGHT" - }, - { - "x": 0.005258488543723905, - "y": -2.8109545117161945, - "rotation": 0.013809878753858668, - "action": "CARVE_RIGHT" - }, - { - "x": 0.009339924971487796, - "y": -3.1537204703821504, - "rotation": 0.019032985992441433, - "action": "CARVE_RIGHT" - }, - { - "x": 0.014897587001850076, - "y": -3.5142248089303814, - "rotation": 0.024562908201752835, - "action": "CARVE_RIGHT" - }, - { - "x": 0.02213244534039554, - "y": -3.892155674833627, - "rotation": 0.03039769862762806, - "action": "CARVE_RIGHT" - }, - { - "x": 0.03125426439482693, - "y": -4.287189338711997, - "rotation": 0.03653535034423486, - "action": "CARVE_RIGHT" - }, - { - "x": 0.04248129278477212, - "y": -4.698990517861628, - "rotation": 0.04297379683264685, - "action": "CARVE_RIGHT" - }, - { - "x": 0.056039946034444496, - "y": -5.127212707717842, - "rotation": 0.049710912570683656, - "action": "CARVE_RIGHT" - }, - { - "x": 0.0721644817818466, - "y": -5.57149852093407, - "rotation": 0.05674451363386377, - "action": "CARVE_RIGHT" - }, - { - "x": 0.09109666784330746, - "y": -6.031480033752933, - "rotation": 0.0640723583073142, - "action": "CARVE_RIGHT" - }, - { - "x": 0.11308544347692398, - "y": -6.506779139341354, - "rotation": 0.07169214770847891, - "action": "CARVE_RIGHT" - }, - { - "x": 0.13838657419293438, - "y": -6.997007907757319, - "rotation": 0.07960152642046639, - "action": "CARVE_RIGHT" - }, - { - "x": 0.16726230046318263, - "y": -7.501768952211957, - "rotation": 0.08779808313587435, - "action": "CARVE_RIGHT" - }, - { - "x": 0.1999809806856386, - "y": -8.02065580128699, - "rotation": 0.09627935131092828, - "action": "CARVE_RIGHT" - }, - { - "x": 0.23681672876341373, - "y": -8.553253276764263, - "rotation": 0.1050428098297684, - "action": "CARVE_RIGHT" - }, - { - "x": 0.2780490466608579, - "y": -9.099137876721047, - "rotation": 0.11408588367871787, - "action": "CARVE_RIGHT" - }, - { - "x": 0.32396245230213777, - "y": -9.657878163542101, - "rotation": 0.12340594463036367, - "action": "CARVE_RIGHT" - }, - { - "x": 0.37484610318017864, - "y": -10.229035156497082, - "rotation": 0.13300031193727935, - "action": "CARVE_RIGHT" - }, - { - "x": 0.43099341604600194, - "y": -10.812162728529781, - "rotation": 0.14286625303521794, - "action": "CARVE_RIGHT" - }, - { - "x": 0.49270168305030654, - "y": -11.406808006903914, - "rotation": 0.153000984255601, - "action": "CARVE_RIGHT" - }, - { - "x": 0.5602716847106269, - "y": -12.012511777348708, - "rotation": 0.1634016715471287, - "action": "CARVE_RIGHT" - }, - { - "x": 0.6340073000785522, - "y": -12.62880889134637, - "rotation": 0.17406543120633433, - "action": "CARVE_RIGHT" - }, - { - "x": 0.7142151144823092, - "y": -13.255228676202673, - "rotation": 0.18498933061690476, - "action": "CARVE_RIGHT" - }, - { - "x": 0.8012040252205028, - "y": -13.891295347541366, - "rotation": 0.1961703889975873, - "action": "CARVE_RIGHT" - }, - { - "x": 0.895284845582965, - "y": -14.536528423862878, - "rotation": 0.2076055781585021, - "action": "CARVE_RIGHT" - }, - { - "x": 0.9967699075744949, - "y": -15.190443142807847, - "rotation": 0.21929182326567764, - "action": "CARVE_RIGHT" - }, - { - "x": 1.1059726637167773, - "y": -15.85255087876642, - "rotation": 0.23122600361362539, - "action": "CARVE_RIGHT" - }, - { - "x": 1.223207288302945, - "y": -16.522359561474904, - "rotation": 0.24340495340576918, - "action": "CARVE_RIGHT" - }, - { - "x": 1.3487882784781104, - "y": -17.199374095242383, - "rotation": 0.25582546254254285, - "action": "CARVE_RIGHT" - }, - { - "x": 1.4830300555177285, - "y": -17.88309677845117, - "rotation": 0.268484277416969, - "action": "CARVE_RIGHT" - }, - { - "x": 1.6262465666738732, - "y": -18.573027722976533, - "rotation": 0.2813781017175303, - "action": "CARVE_RIGHT" - }, - { - "x": 1.7787508879574205, - "y": -19.268665273173056, - "rotation": 0.2945035972381439, - "action": "CARVE_RIGHT" - }, - { - "x": 1.9408548282217226, - "y": -19.969506424077075, - "rotation": 0.30785738469504864, - "action": "CARVE_RIGHT" - }, - { - "x": 2.1128685349106524, - "y": -20.675047238477177, - "rotation": 0.321436044550413, - "action": "CARVE_RIGHT" - }, - { - "x": 2.2951001018308816, - "y": -21.384783262507398, - "rotation": 0.3352361178424717, - "action": "CARVE_RIGHT" - }, - { - "x": 2.4878551793049466, - "y": -22.098209939420833, - "rotation": 0.34925410702199733, - "action": "CARVE_RIGHT" - }, - { - "x": 2.691436587058042, - "y": -22.814823021204592, - "rotation": 0.3634864767949129, - "action": "CARVE_RIGHT" - }, - { - "x": 2.906143930187595, - "y": -23.53411897770068, - "rotation": 0.3779296549708501, - "action": "CARVE_RIGHT" - }, - { - "x": 3.1322732185604822, - "y": -24.255595402901108, - "rotation": 0.39258003331745717, - "action": "CARVE_RIGHT" - }, - { - "x": 3.370116489978293, - "y": -24.978751418089754, - "rotation": 0.40743396842026014, - "action": "CARVE_RIGHT" - }, - { - "x": 3.6199614374462983, - "y": -25.70308807150768, - "rotation": 0.42248778254787994, - "action": "CARVE_RIGHT" - }, - { - "x": 3.8820910408767864, - "y": -26.428108734223365, - "rotation": 0.43773776452240726, - "action": "CARVE_RIGHT" - }, - { - "x": 4.156783203552139, - "y": -27.153319491894084, - "rotation": 0.453180170594737, - "action": "CARVE_RIGHT" - }, - { - "x": 4.444310393667504, - "y": -27.87822953210973, - "rotation": 0.46881122532466246, - "action": "CARVE_RIGHT" - }, - { - "x": 4.744939291267134, - "y": -28.60235152701579, - "rotation": 0.4846271224655307, - "action": "CARVE_RIGHT" - }, - { - "x": 5.058930440882416, - "y": -29.325202010917625, - "rotation": 0.5006240258532576, - "action": "CARVE_RIGHT" - }, - { - "x": 5.386537910173365, - "y": -30.046301752574102, - "rotation": 0.5167980702995033, - "action": "CARVE_RIGHT" - }, - { - "x": 5.728008954868849, - "y": -30.765176121894555, - "rotation": 0.5331453624888063, - "action": "CARVE_RIGHT" - }, - { - "x": 6.083583690294066, - "y": -31.481355450759267, - "rotation": 0.5496619818794752, - "action": "CARVE_RIGHT" - }, - { - "x": 6.45349476976686, - "y": -32.19437538769012, - "rotation": 0.5663439816080367, - "action": "CARVE_RIGHT" - }, - { - "x": 6.837967070137292, - "y": -32.90377724610467, - "rotation": 0.5831873893970372, - "action": "CARVE_RIGHT" - }, - { - "x": 7.237217384737517, - "y": -33.609108345893645, - "rotation": 0.6001882084659973, - "action": "CARVE_RIGHT" - }, - { - "x": 7.65145412400144, - "y": -34.309922348069065, - "rotation": 0.6173424184453158, - "action": "CARVE_RIGHT" - }, - { - "x": 8.080877024005893, - "y": -35.00577958223703, - "rotation": 0.6346459762929211, - "action": "CARVE_RIGHT" - }, - { - "x": 8.525676863177083, - "y": -35.696247366656934, - "rotation": 0.6520948172134684, - "action": "CARVE_RIGHT" - }, - { - "x": 8.986035187398, - "y": -36.38090032065611, - "rotation": 0.6696848555798789, - "action": "CARVE_RIGHT" - }, - { - "x": 9.462124043744163, - "y": -37.05932066917674, - "rotation": 0.6874119858570198, - "action": "CARVE_RIGHT" - }, - { - "x": 9.954105723066604, - "y": -37.731098539239625, - "rotation": 0.7052720835273218, - "action": "CARVE_RIGHT" - }, - { - "x": 10.46213251163247, - "y": -38.39583224811735, - "rotation": 0.7232610060181325, - "action": "CARVE_RIGHT" - }, - { - "x": 10.9863464520248, - "y": -39.0531285830176, - "rotation": 0.7413745936306023, - "action": "CARVE_RIGHT" - }, - { - "x": 11.526879113494212, - "y": -39.70260307208549, - "rotation": 0.7596086704699033, - "action": "CARVE_RIGHT" - }, - { - "x": 12.0838513719462, - "y": -40.34388024654214, - "rotation": 0.777959045376576, - "action": "CARVE_RIGHT" - }, - { - "x": 12.657373199738638, - "y": -40.9765938937854, - "rotation": 0.7964215128588051, - "action": "CARVE_RIGHT" - }, - { - "x": 13.247543465454845, - "y": -41.60038730128675, - "rotation": 0.8149918540254223, - "action": "CARVE_RIGHT" - }, - { - "x": 13.854449743808209, - "y": -42.21491349112769, - "rotation": 0.8336658375194342, - "action": "CARVE_RIGHT" - }, - { - "x": 14.47816813582498, - "y": -42.81983544502702, - "rotation": 0.8524392204518771, - "action": "CARVE_RIGHT" - }, - { - "x": 15.118763099442285, - "y": -43.41482631971987, - "rotation": 0.871307749335796, - "action": "CARVE_RIGHT" - }, - { - "x": 15.776287290648852, - "y": -43.999569652557824, - "rotation": 0.8902671610201504, - "action": "CARVE_RIGHT" - }, - { - "x": 16.45078141528625, - "y": -44.57375955720858, - "rotation": 0.9093131836234463, - "action": "CARVE_RIGHT" - }, - { - "x": 17.142274091618745, - "y": -45.1371009093428, - "rotation": 0.9284415374668977, - "action": "CARVE_RIGHT" - }, - { - "x": 17.8507817237701, - "y": -45.68930952220459, - "rotation": 0.9476479360069178, - "action": "CARVE_RIGHT" - }, - { - "x": 18.576308386115834, - "y": -46.23011231197147, - "rotation": 0.9669280867667431, - "action": "CARVE_RIGHT" - }, - { - "x": 19.318845718709568, - "y": -46.7592474528186, - "rotation": 0.9862776922669955, - "action": "CARVE_RIGHT" - }, - { - "x": 20.07837283381232, - "y": -47.27646452161145, - "rotation": 1.0056924509549838, - "action": "NOTHING" - }, - { - "x": 20.922498164580574, - "y": -47.71990025092576, - "rotation": 1.0022017924509952, - "action": "NOTHING" - }, - { - "x": 21.766832200598145, - "y": -48.167728367144505, - "rotation": 0.9987111339470065, - "action": "NOTHING" - }, - { - "x": 22.611377018662566, - "y": -48.6199821498924, - "rotation": 0.9952204754430178, - "action": "NOTHING" - }, - { - "x": 23.456134382104395, - "y": -49.07669508103491, - "rotation": 0.9917298169390292, - "action": "NOTHING" - }, - { - "x": 24.301105741781555, - "y": -49.53790084397757, - "rotation": 0.9882391584350405, - "action": "NOTHING" - }, - { - "x": 25.14629223707069, - "y": -50.0036333229675, - "rotation": 0.9847484999310518, - "action": "NOTHING" - }, - { - "x": 25.991694696855486, - "y": -50.47392660239726, - "rotation": 0.9812578414270632, - "action": "NOTHING" - }, - { - "x": 26.837313640512036, - "y": -50.94881496611082, - "rotation": 0.9777671829230745, - "action": "NOTHING" - }, - { - "x": 27.683149278891182, - "y": -51.42833289671179, - "rotation": 0.9742765244190859, - "action": "NOTHING" - }, - { - "x": 28.5292015152979, - "y": -51.912515074873895, - "rotation": 0.9707858659150972, - "action": "NOTHING" - }, - { - "x": 29.37546994646771, - "y": -52.401396378653615, - "rotation": 0.9672952074111085, - "action": "NOTHING" - }, - { - "x": 30.22195386354013, - "y": -52.895011882805036, - "rotation": 0.9638045489071199, - "action": "NOTHING" - }, - { - "x": 31.068652253029175, - "y": -53.39339685809688, - "rotation": 0.9603138904031312, - "action": "NOTHING" - }, - { - "x": 31.915563797790917, - "y": -53.89658677063174, - "rotation": 0.9568232318991425, - "action": "NOTHING" - }, - { - "x": 32.7626868779881, - "y": -54.40461728116752, - "rotation": 0.9533325733951539, - "action": "NOTHING" - }, - { - "x": 33.61001957205186, - "y": -54.91752424444093, - "rotation": 0.9498419148911652, - "action": "NOTHING" - }, - { - "x": 34.45755965764049, - "y": -55.43534370849334, - "rotation": 0.9463512563871765, - "action": "NOTHING" - }, - { - "x": 35.30530461259529, - "y": -55.9581119139986, - "rotation": 0.9428605978831879, - "action": "NOTHING" - }, - { - "x": 36.153251615893616, - "y": -56.48586529359312, - "rotation": 0.9393699393791992, - "action": "NOTHING" - }, - { - "x": 37.001397548598874, - "y": -57.018640471208094, - "rotation": 0.9358792808752106, - "action": "NOTHING" - }, - { - "x": 37.84973899480779, - "y": -57.55647426140381, - "rotation": 0.9323886223712219, - "action": "NOTHING" - }, - { - "x": 38.69827224259469, - "y": -58.099403668706124, - "rotation": 0.9288979638672332, - "action": "NOTHING" - }, - { - "x": 39.546993284953, - "y": -58.64746588694509, - "rotation": 0.9254073053632446, - "action": "NOTHING" - }, - { - "x": 40.39589782073381, - "y": -59.200698298595654, - "rotation": 0.9219166468592559, - "action": "NOTHING" - }, - { - "x": 41.24498125558167, - "y": -59.75913847412049, - "rotation": 0.9184259883552672, - "action": "NOTHING" - }, - { - "x": 42.09423870286748, - "y": -60.32282417131495, - "rotation": 0.9149353298512786, - "action": "NOTHING" - }, - { - "x": 42.94366498461857, - "y": -60.89179333465408, - "rotation": 0.9114446713472899, - "action": "NOTHING" - }, - { - "x": 43.79325463244598, - "y": -61.466084094641786, - "rotation": 0.9079540128433012, - "action": "NOTHING" - }, - { - "x": 44.64300188846888, - "y": -62.04573476716203, - "rotation": 0.9044633543393126, - "action": "NOTHING" - }, - { - "x": 45.49290070623623, - "y": -62.63078385283215, - "rotation": 0.9009726958353239, - "action": "NOTHING" - }, - { - "x": 46.3429447516456, - "y": -63.22127003635822, - "rotation": 0.8974820373313352, - "action": "NOTHING" - }, - { - "x": 47.193127403859215, - "y": -63.81723218589251, - "rotation": 0.8939913788273466, - "action": "NOTHING" - }, - { - "x": 48.04344175621725, - "y": -64.41870935239298, - "rotation": 0.8905007203233579, - "action": "NOTHING" - }, - { - "x": 48.89388061714828, - "y": -65.02574076898487, - "rotation": 0.8870100618193693, - "action": "NOTHING" - }, - { - "x": 49.744436511077026, - "y": -65.63836585032429, - "rotation": 0.8835194033153806, - "action": "NOTHING" - }, - { - "x": 50.59510167932933, - "y": -66.25662419196388, - "rotation": 0.8800287448113919, - "action": "NOTHING" - }, - { - "x": 51.44586808103435, - "y": -66.8805555697205, - "rotation": 0.8765380863074033, - "action": "NOTHING" - }, - { - "x": 52.296727394024046, - "y": -67.51019993904498, - "rotation": 0.8730474278034146, - "action": "NOTHING" - }, - { - "x": 53.14767101572993, - "y": -68.14559743439385, - "rotation": 0.8695567692994259, - "action": "NOTHING" - }, - { - "x": 53.99869006407706, - "y": -68.7867883686031, - "rotation": 0.8660661107954373, - "action": "NOTHING" - }, - { - "x": 54.84977537837536, - "y": -69.43381323226399, - "rotation": 0.8625754522914486, - "action": "NOTHING" - }, - { - "x": 55.70091752020821, - "y": -70.0867126931008, - "rotation": 0.8590847937874599, - "action": "NOTHING" - }, - { - "x": 56.5521067743183, - "y": -70.74552759535065, - "rotation": 0.8555941352834713, - "action": "NOTHING" - }, - { - "x": 57.40333314949086, - "y": -71.41029895914527, - "rotation": 0.8521034767794826, - "action": "NOTHING" - }, - { - "x": 58.254586379434166, - "y": -72.08106797989475, - "rotation": 0.848612818275494, - "action": "NOTHING" - }, - { - "x": 59.10585592365733, - "y": -72.75787602767335, - "rotation": 0.8451221597715053, - "action": "NOTHING" - }, - { - "x": 59.95713096834551, - "y": -73.44076464660712, - "rotation": 0.8416315012675166, - "action": "NOTHING" - }, - { - "x": 60.80840042723238, - "y": -74.1297755542637, - "rotation": 0.838140842763528, - "action": "NOTHING" - }, - { - "x": 61.659652942469975, - "y": -74.82495064104396, - "rotation": 0.8346501842595393, - "action": "NOTHING" - }, - { - "x": 62.510876885495904, - "y": -75.52633196957554, - "rotation": 0.8311595257555506, - "action": "NOTHING" - }, - { - "x": 63.36206035789789, - "y": -76.23396177410852, - "rotation": 0.827668867251562, - "action": "NOTHING" - }, - { - "x": 64.2131911922757, - "y": -76.94788245991289, - "rotation": 0.8241782087475733, - "action": "NOTHING" - }, - { - "x": 65.06425695310048, - "y": -77.668136602678, - "rotation": 0.8206875502435846, - "action": "NOTHING" - }, - { - "x": 65.91524493757139, - "y": -78.39476694791395, - "rotation": 0.817196891739596, - "action": "NOTHING" - }, - { - "x": 66.76614217646973, - "y": -79.12781641035492, - "rotation": 0.8137062332356073, - "action": "NOTHING" - }, - { - "x": 67.61693543501042, - "y": -79.8673280733644, - "rotation": 0.8102155747316186, - "action": "NOTHING" - }, - { - "x": 68.46761121369086, - "y": -80.61334518834236, - "rotation": 0.80672491622763, - "action": "NOTHING" - }, - { - "x": 69.31815574913725, - "y": -81.36591117413428, - "rotation": 0.8032342577236413, - "action": "NOTHING" - }, - { - "x": 70.16855501494832, - "y": -82.12506961644215, - "rotation": 0.7997435992196527, - "action": "CARVE_LEFT" - }, - { - "x": 70.91320844657048, - "y": -82.9882126048125, - "rotation": 0.7750646009918972, - "action": "CARVE_LEFT" - }, - { - "x": 71.63702380782414, - "y": -83.87703788927678, - "rotation": 0.7502887142654192, - "action": "CARVE_LEFT" - }, - { - "x": 72.33984862153163, - "y": -84.79200327487516, - "rotation": 0.7254108957389639, - "action": "CARVE_LEFT" - }, - { - "x": 73.02150987912997, - "y": -85.73358621590754, - "rotation": 0.7004260929740789, - "action": "CARVE_LEFT" - }, - { - "x": 73.68181380705747, - "y": -86.70228409832781, - "rotation": 0.6753292433401037, - "action": "CARVE_LEFT" - }, - { - "x": 74.32054561633969, - "y": -87.69861453767943, - "rotation": 0.6501152729596226, - "action": "CARVE_LEFT" - }, - { - "x": 74.93746923520546, - "y": -88.72311569274322, - "rotation": 0.6247790956541539, - "action": "CARVE_LEFT" - }, - { - "x": 75.53232702455009, - "y": -89.7763465950807, - "rotation": 0.5993156118898516, - "action": "NOTHING" - }, - { - "x": 76.19312736785761, - "y": -90.77754392133272, - "rotation": 0.5958249533858629, - "action": "NOTHING" - }, - { - "x": 76.8537414556564, - "y": -91.78796215644574, - "rotation": 0.5923342948818743, - "action": "NOTHING" - }, - { - "x": 77.51413559044158, - "y": -92.8076565473547, - "rotation": 0.5888436363778856, - "action": "NOTHING" - }, - { - "x": 78.17427587738699, - "y": -93.83668246358553, - "rotation": 0.585352977873897, - "action": "NOTHING" - }, - { - "x": 78.83412822498242, - "y": -94.87509539681551, - "rotation": 0.5818623193699083, - "action": "NOTHING" - }, - { - "x": 79.4936583456689, - "y": -95.92295096043487, - "rotation": 0.5783716608659196, - "action": "NOTHING" - }, - { - "x": 80.15283175647197, - "y": -96.98030488910999, - "rotation": 0.574881002361931, - "action": "NOTHING" - }, - { - "x": 80.81161377963308, - "y": -98.04721303834789, - "rotation": 0.5713903438579423, - "action": "CARVE_LEFT" - }, - { - "x": 81.37972614443784, - "y": -99.20690115684349, - "rotation": 0.5446316897378862, - "action": "CARVE_LEFT" - }, - { - "x": 81.92271520210116, - "y": -100.39901573206066, - "rotation": 0.5177321872377709, - "action": "CARVE_LEFT" - }, - { - "x": 82.44022450589152, - "y": -101.62422547180495, - "rotation": 0.49068644991801313, - "action": "CARVE_LEFT" - }, - { - "x": 82.9318726320643, - "y": -102.88322339134851, - "rotation": 0.4634890736083671, - "action": "CARVE_LEFT" - }, - { - "x": 83.39725277854845, - "y": -104.17672725456531, - "rotation": 0.4361346352993615, - "action": "CARVE_LEFT" - }, - { - "x": 83.83593234341859, - "y": -105.50548003387635, - "rotation": 0.40861769203248877, - "action": "CARVE_LEFT" - }, - { - "x": 84.24745248285252, - "y": -106.87025038929734, - "rotation": 0.3809327797889134, - "action": "CARVE_LEFT" - }, - { - "x": 84.63132764825835, - "y": -108.27183316689585, - "rotation": 0.3530744123764651, - "action": "CARVE_LEFT" - }, - { - "x": 84.9870451022389, - "y": -109.71104991698014, - "rotation": 0.3250370803146847, - "action": "CARVE_LEFT" - }, - { - "x": 85.31406441304497, - "y": -111.18874943235711, - "rotation": 0.2968152497176891, - "action": "CARVE_LEFT" - }, - { - "x": 85.61181692715226, - "y": -112.7058083070119, - "rotation": 0.26840336117462227, - "action": "CARVE_LEFT" - }, - { - "x": 85.87970521957955, - "y": -114.26313151557783, - "rotation": 0.23979582862746024, - "action": "CARVE_LEFT" - }, - { - "x": 86.11710252154926, - "y": -115.86165301398066, - "rotation": 0.21098703824593648, - "action": "CARVE_LEFT" - }, - { - "x": 86.32335212507354, - "y": -117.50233636165783, - "rotation": 0.18197134729935552, - "action": "CARVE_LEFT" - }, - { - "x": 86.49776676403154, - "y": -119.1861753657692, - "rotation": 0.1527430830250614, - "action": "CARVE_LEFT" - }, - { - "x": 86.63962797128559, - "y": -120.9141947478329, - "rotation": 0.1232965414933282, - "action": "CARVE_LEFT" - }, - { - "x": 86.74818541136581, - "y": -122.68745083323643, - "rotation": 0.09362598646843942, - "action": "CARVE_LEFT" - }, - { - "x": 86.82265618823384, - "y": -124.50703226409082, - "rotation": 0.06372564826572266, - "action": "CARVE_LEFT" - }, - { - "x": 86.8622241276177, - "y": -126.37406073591276, - "rotation": 0.0335897226043059, - "action": "CARVE_LEFT" - }, - { - "x": 86.86603903339042, - "y": -128.2896917586378, - "rotation": 0.0032123694553614496, - "action": "CARVE_LEFT" - }, - { - "x": 86.8332283501718, - "y": -130.19361045562906, - "rotation": 6.255773019065189, - "action": "CARVE_LEFT" - }, - { - "x": 86.76294332308959, - "y": -132.07751581294025, - "rotation": 6.224906837984983, - "action": "CARVE_LEFT" - }, - { - "x": 86.65436326974087, - "y": -133.94019544336868, - "rotation": 6.193806321988402, - "action": "CARVE_LEFT" - }, - { - "x": 86.50669641659898, - "y": -135.78046182213538, - "rotation": 6.162478691689483, - "action": "CARVE_LEFT" - }, - { - "x": 86.31918070751047, - "y": -137.59715313719485, - "rotation": 6.130931198101779, - "action": "CARVE_LEFT" - }, - { - "x": 86.09108458367092, - "y": -139.389134113267, - "rotation": 6.099171121015477, - "action": "CARVE_LEFT" - }, - { - "x": 85.82170773449602, - "y": -141.15529680902844, - "rotation": 6.067205767372435, - "action": "CARVE_LEFT" - }, - { - "x": 85.51038181883176, - "y": -142.89456138692663, - "rotation": 6.035042469639491, - "action": "CARVE_LEFT" - }, - { - "x": 85.15647115597594, - "y": -144.6058768551057, - "rotation": 6.002688584180383, - "action": "CARVE_LEFT" - }, - { - "x": 84.75937338601119, - "y": -146.2882217809598, - "rotation": 5.97015148962666, - "action": "CARVE_LEFT" - }, - { - "x": 84.31852009897891, - "y": -147.9406049758556, - "rotation": 5.937438585247895, - "action": "CARVE_LEFT" - }, - { - "x": 83.83337743245188, - "y": -149.56206615059347, - "rotation": 5.904557289321586, - "action": "CARVE_LEFT" - }, - { - "x": 83.3034466370929, - "y": -151.1516765412027, - "rotation": 5.871515037503066, - "action": "CARVE_LEFT" - }, - { - "x": 82.72826460981615, - "y": -152.7085395046946, - "rotation": 5.838319281195786, - "action": "CARVE_LEFT" - }, - { - "x": 82.10740439419733, - "y": -154.23179108442403, - "rotation": 5.804977485922314, - "action": "CARVE_LEFT" - }, - { - "x": 81.44047564780888, - "y": -155.72060054473764, - "rotation": 5.771497129696391, - "action": "CARVE_LEFT" - }, - { - "x": 80.72712507618584, - "y": -157.17417087461536, - "rotation": 5.737885701396392, - "action": "CARVE_LEFT" - }, - { - "x": 79.96703683315862, - "y": -158.59173926003888, - "rotation": 5.7041506991405395, - "action": "CARVE_LEFT" - }, - { - "x": 79.1599328873185, - "y": -159.9725775248492, - "rotation": 5.670299628664205, - "action": "NOTHING" - }, - { - "x": 78.2651022250555, - "y": -161.27971994539692, - "rotation": 5.673790287168194, - "action": "NOTHING" - }, - { - "x": 77.37224762320727, - "y": -162.59625248355806, - "rotation": 5.677280945672182, - "action": "NOTHING" - }, - { - "x": 76.4813938716429, - "y": -163.92222585850166, - "rotation": 5.68077160417617, - "action": "NOTHING" - }, - { - "x": 75.59256598872754, - "y": -165.25769093155324, - "rotation": 5.684262262680159, - "action": "NOTHING" - }, - { - "x": 74.70578922058513, - "y": -166.60269870568564, - "rotation": 5.687752921184147, - "action": "NOTHING" - }, - { - "x": 73.82108904036315, - "y": -167.95730032501135, - "rotation": 5.691243579688136, - "action": "NOTHING" - }, - { - "x": 72.93849114749973, - "y": -169.32154707427657, - "rotation": 5.694734238192124, - "action": "NOTHING" - }, - { - "x": 72.05802146699303, - "y": -170.69549037835696, - "rotation": 5.698224896696113, - "action": "NOTHING" - }, - { - "x": 71.17970614867274, - "y": -172.07918180175494, - "rotation": 5.701715555200101, - "action": "NOTHING" - }, - { - "x": 70.30357156647398, - "y": -173.4726730480987, - "rotation": 5.7052062137040895, - "action": "NOTHING" - }, - { - "x": 69.42964431771328, - "y": -174.87601595964273, - "rotation": 5.708696872208078, - "action": "NOTHING" - }, - { - "x": 68.55795122236685, - "y": -176.28926251677015, - "rotation": 5.712187530712066, - "action": "NOTHING" - }, - { - "x": 67.68851932235107, - "y": -177.71246483749653, - "rotation": 5.715678189216055, - "action": "NOTHING" - }, - { - "x": 66.8213758808051, - "y": -179.14567517697537, - "rotation": 5.719168847720043, - "action": "NOTHING" - }, - { - "x": 65.95654838137585, - "y": -180.58894592700526, - "rotation": 5.722659506224032, - "action": "NOTHING" - }, - { - "x": 65.09406452750495, - "y": -182.04232961553842, - "rotation": 5.72615016472802, - "action": "NOTHING" - }, - { - "x": 64.23395224171807, - "y": -183.50587890619119, - "rotation": 5.729640823232009, - "action": "NOTHING" - }, - { - "x": 63.376239664916326, - "y": -184.9796465977558, - "rotation": 5.733131481735997, - "action": "NOTHING" - }, - { - "x": 62.52095515566989, - "y": -186.46368562371384, - "rotation": 5.7366221402399855, - "action": "NOTHING" - }, - { - "x": 61.66812728951378, - "y": -187.95804905175152, - "rotation": 5.740112798743974, - "action": "NOTHING" - }, - { - "x": 60.81778485824576, - "y": -189.46279008327608, - "rotation": 5.743603457247962, - "action": "NOTHING" - }, - { - "x": 59.96995686922647, - "y": -190.97796205293426, - "rotation": 5.747094115751951, - "action": "NOTHING" - }, - { - "x": 59.12467254468164, - "y": -192.50361842813197, - "rotation": 5.750584774255939, - "action": "NOTHING" - }, - { - "x": 58.28196132100645, - "y": -194.0398128085557, - "rotation": 5.754075432759928, - "action": "NOTHING" - }, - { - "x": 57.44185284807209, - "y": -195.5865989256955, - "rotation": 5.757566091263916, - "action": "NOTHING" - }, - { - "x": 56.60437698853437, - "y": -197.14403064236947, - "rotation": 5.761056749767905, - "action": "NOTHING" - }, - { - "x": 55.769563817144494, - "y": -198.71216195224977, - "rotation": 5.764547408271893, - "action": "NOTHING" - }, - { - "x": 54.93744362006194, - "y": -200.29104697939027, - "rotation": 5.7680380667758815, - "action": "NOTHING" - }, - { - "x": 54.108046894169455, - "y": -201.88073997775572, - "rotation": 5.77152872527987, - "action": "NOTHING" - }, - { - "x": 53.28140434639014, - "y": -203.48129533075237, - "rotation": 5.775019383783858, - "action": "NOTHING" - }, - { - "x": 52.45754689300666, - "y": -205.0927675507603, - "rotation": 5.778510042287847, - "action": "NOTHING" - }, - { - "x": 51.63650565898251, - "y": -206.71521127866703, - "rotation": 5.782000700791835, - "action": "CARVE_RIGHT" - }, - { - "x": 50.95128969524515, - "y": -208.47157043567876, - "rotation": 5.820021624903655, - "action": "CARVE_RIGHT" - }, - { - "x": 50.32024274090721, - "y": -210.2867270358558, - "rotation": 5.8581726215621455, - "action": "CARVE_RIGHT" - }, - { - "x": 49.74386092182927, - "y": -212.1616307372708, - "rotation": 5.896461504465228, - "action": "CARVE_RIGHT" - }, - { - "x": 49.2226891012374, - "y": -214.0972770474779, - "rotation": 5.934896097192311, - "action": "CARVE_RIGHT" - }, - { - "x": 48.75732139310945, - "y": -216.09470790181217, - "rotation": 5.973484234848616, - "action": "CARVE_RIGHT" - }, - { - "x": 48.34840171523067, - "y": -218.15501227833892, - "rotation": 6.012233765707853, - "action": "CARVE_RIGHT" - }, - { - "x": 47.99662438225392, - "y": -220.27932684978487, - "rotation": 6.051152552853598, - "action": "NOTHING" - }, - { - "x": 47.60978351142254, - "y": -222.38299471390863, - "rotation": 6.054643211357586, - "action": "NOTHING" - }, - { - "x": 47.227019558107116, - "y": -224.50227415092846, - "rotation": 6.0581338698615745, - "action": "NOTHING" - }, - { - "x": 46.848386737114964, - "y": -226.63723243478353, - "rotation": 6.061624528365563, - "action": "NOTHING" - }, - { - "x": 46.473939392594055, - "y": -228.78793691648522, - "rotation": 6.065115186869551, - "action": "NOTHING" - }, - { - "x": 46.10373199760743, - "y": -230.9544550238299, - "rotation": 6.06860584537354, - "action": "NOTHING" - }, - { - "x": 45.737819153709026, - "y": -233.13685426111246, - "rotation": 6.072096503877528, - "action": "NOTHING" - }, - { - "x": 45.3762555905207, - "y": -235.33520220884105, - "rotation": 6.075587162381517, - "action": "NOTHING" - }, - { - "x": 45.01909616531067, - "y": -237.54956652345248, - "rotation": 6.079077820885505, - "action": "NOTHING" - }, - { - "x": 44.66639586257323, - "y": -239.78001493702885, - "rotation": 6.082568479389494, - "action": "NOTHING" - }, - { - "x": 44.31820979360974, - "y": -242.0266152570149, - "rotation": 6.086059137893482, - "action": "NOTHING" - }, - { - "x": 43.97459319611093, - "y": -244.28943536593644, - "rotation": 6.0895497963974705, - "action": "NOTHING" - }, - { - "x": 43.63560143374055, - "y": -246.56854322111965, - "rotation": 6.093040454901459, - "action": "CARVE_RIGHT" - }, - { - "x": 43.39581061568499, - "y": -248.9513324513162, - "rotation": 6.134417549807699, - "action": "CARVE_RIGHT" - }, - { - "x": 43.22219800718123, - "y": -251.40775257309866, - "rotation": 6.175983397964271, - "action": "CARVE_RIGHT" - }, - { - "x": 43.115698585451916, - "y": -253.9391967493298, - "rotation": 6.217746394868989, - "action": "CARVE_RIGHT" - }, - { - "x": 43.077306680815, - "y": -256.5471145290399, - "rotation": 6.259714957089322, - "action": "CARVE_RIGHT" - }, - { - "x": 43.108071047836944, - "y": -259.17553601506825, - "rotation": 0.01871221682566926, - "action": "CARVE_RIGHT" - }, - { - "x": 43.20902508841875, - "y": -261.75180782434705, - "rotation": 0.06110926849389346, - "action": "CARVE_RIGHT" - }, - { - "x": 43.38114408190552, - "y": -264.2744252723498, - "rotation": 0.1037112239981719, - "action": "CARVE_RIGHT" - }, - { - "x": 43.62534427872783, - "y": -266.74193722406164, - "rotation": 0.14650848266174016, - "action": "CARVE_RIGHT" - }, - { - "x": 43.942482048521875, - "y": -269.15294701411204, - "rotation": 0.18949142614485182, - "action": "CARVE_RIGHT" - }, - { - "x": 44.333353083260995, - "y": -271.5061133158506, - "rotation": 0.23265042054084828, - "action": "CARVE_RIGHT" - }, - { - "x": 44.798691655881456, - "y": -273.80015095889127, - "rotation": 0.2759758184703095, - "action": "NOTHING" - }, - { - "x": 45.311170288943956, - "y": -276.0610852728388, - "rotation": 0.27248515996632083, - "action": "NOTHING" - }, - { - "x": 45.81903783645409, - "y": -278.33685428994494, - "rotation": 0.26899450146233217, - "action": "NOTHING" - }, - { - "x": 46.322247282805634, - "y": -280.6275217968963, - "rotation": 0.2655038429583435, - "action": "NOTHING" - }, - { - "x": 46.820751457443954, - "y": -282.93315167321595, - "rotation": 0.26201318445435484, - "action": "NOTHING" - }, - { - "x": 47.31450303537464, - "y": -285.2538078909191, - "rotation": 0.2585225259503662, - "action": "NOTHING" - }, - { - "x": 47.8034545376705, - "y": -287.5895545141699, - "rotation": 0.2550318674463775, - "action": "NOTHING" - }, - { - "x": 48.28755833197698, - "y": -289.9404556989392, - "rotation": 0.25154120894238885, - "action": "NOTHING" - }, - { - "x": 48.76676663301611, - "y": -292.306575692664, - "rotation": 0.24805055043840019, - "action": "NOTHING" - }, - { - "x": 49.241031503088756, - "y": -294.6879788339074, - "rotation": 0.24455989193441152, - "action": "NOTHING" - }, - { - "x": 49.710304852575426, - "y": -297.08472955201984, - "rotation": 0.24106923343042286, - "action": "NOTHING" - }, - { - "x": 50.17453844043546, - "y": -299.49689236680194, - "rotation": 0.2375785749264342, - "action": "NOTHING" - }, - { - "x": 50.63368387470471, - "y": -301.9245318881678, - "rotation": 0.23408791642244553, - "action": "NOTHING" - }, - { - "x": 51.08769261299165, - "y": -304.3677128158097, - "rotation": 0.23059725791845687, - "action": "NOTHING" - }, - { - "x": 51.53651596297198, - "y": -306.82649993886406, - "rotation": 0.2271065994144682, - "action": "NOTHING" - }, - { - "x": 51.980105082881664, - "y": -309.3009581355783, - "rotation": 0.22361594091047954, - "action": "NOTHING" - }, - { - "x": 52.41841098200846, - "y": -311.79115237297884, - "rotation": 0.22012528240649087, - "action": "NOTHING" - }, - { - "x": 52.851384521181934, - "y": -314.2971477065402, - "rotation": 0.2166346239025022, - "action": "NOTHING" - }, - { - "x": 53.27897641326192, - "y": -316.81900927985544, - "rotation": 0.21314396539851355, - "action": "NOTHING" - }, - { - "x": 53.701137223625516, - "y": -319.3568023243072, - "rotation": 0.20965330689452488, - "action": "NOTHING" - }, - { - "x": 54.11781737065251, - "y": -321.91059215874026, - "rotation": 0.20616264839053622, - "action": "NOTHING" - }, - { - "x": 54.52896712620937, - "y": -324.4804441891352, - "rotation": 0.20267198988654755, - "action": "NOTHING" - }, - { - "x": 54.934536616131666, - "y": -327.06642390828273, - "rotation": 0.1991813313825589, - "action": "NOTHING" - }, - { - "x": 55.33447582070504, - "y": -329.6685968954596, - "rotation": 0.19569067287857023, - "action": "NOTHING" - }, - { - "x": 55.72873457514466, - "y": -332.2870288161051, - "rotation": 0.19220001437458156, - "action": "NOTHING" - }, - { - "x": 56.117262570073194, - "y": -334.9217854214991, - "rotation": 0.1887093558705929, - "action": "CARVE_LEFT" - }, - { - "x": 56.379347576925205, - "y": -337.68454857526166, - "rotation": 0.1409251571652439, - "action": "CARVE_LEFT" - }, - { - "x": 56.55290581995744, - "y": -340.54082449742197, - "rotation": 0.0929665498810167, - "action": "CARVE_LEFT" - }, - { - "x": 56.63692400262291, - "y": -343.49216618864006, - "rotation": 0.04482373886980454, - "action": "CARVE_LEFT" - }, - { - "x": 56.63031146495901, - "y": -346.5278599661183, - "rotation": 6.279672221354162, - "action": "CARVE_LEFT" - }, - { - "x": 56.5319491393206, - "y": -349.4905998076182, - "rotation": 6.231133055069811, - "action": "CARVE_LEFT" - }, - { - "x": 56.34079543291745, - "y": -352.37873979568116, - "rotation": 6.18240240807245, - "action": "CARVE_LEFT" - }, - { - "x": 56.055887141434475, - "y": -355.19070588394294, - "rotation": 6.133491154935222, - "action": "CARVE_LEFT" - }, - { - "x": 55.67634029136203, - "y": -357.92499682438034, - "rotation": 6.084410181574146, - "action": "CARVE_LEFT" - }, - { - "x": 55.2013509105864, - "y": -360.58018502788366, - "rotation": 6.035170382897432, - "action": "NOTHING" - }, - { "x": 54.67933278869047, "y": -363.201821569125, "rotation": 6.03866104140142, "action": "NOTHING" }, - { - "x": 54.163106898826285, - "y": -365.83883643957415, - "rotation": 6.042151699905409, - "action": "NOTHING" - }, - { - "x": 53.65271778125278, - "y": -368.4912925089997, - "rotation": 6.045642358409397, - "action": "NOTHING" - }, - { - "x": 53.14821014065758, - "y": -371.15925274534726, - "rotation": 6.049133016913386, - "action": "NOTHING" - }, - { - "x": 52.649628845616455, - "y": -373.84278021437365, - "rotation": 6.052623675417374, - "action": "CARVE_LEFT" - }, - { - "x": 52.10171930022985, - "y": -376.4893170824656, - "rotation": 6.002435157930201, - "action": "CARVE_LEFT" - }, - { - "x": 51.45395512071175, - "y": -379.05138512809225, - "rotation": 5.952108071992749, - "action": "CARVE_LEFT" - }, - { - "x": 50.705752611843806, - "y": -381.52774939185315, - "rotation": 5.901653500471143, - "action": "CARVE_LEFT" - }, - { - "x": 49.856613131244494, - "y": -383.9172538470303, - "rotation": 5.851082525721269, - "action": "CARVE_LEFT" - }, - { - "x": 48.90612350773321, - "y": -386.2188219346338, - "rotation": 5.80040622722581, - "action": "CARVE_LEFT" - }, - { - "x": 47.853956384217675, - "y": -388.4314570281228, - "rotation": 5.7496356792378105, - "action": "CARVE_LEFT" - }, - { - "x": 46.69987048510194, - "y": -390.55424282776846, - "rotation": 5.698781948431238, - "action": "CARVE_LEFT" - }, - { - "x": 45.44371080827709, - "y": -392.58634368468694, - "rotation": 5.647856091559045, - "action": "CARVE_LEFT" - }, - { - "x": 44.085408741820935, - "y": -394.5270048546286, - "rotation": 5.5968691531191945, - "action": "CARVE_LEFT" - }, - { - "x": 42.62498210559709, - "y": -396.3755526816706, - "rotation": 5.54583216302914, - "action": "CARVE_LEFT" - }, - { - "x": 41.062535118007126, - "y": -398.1313947120178, - "rotation": 5.494756134309226, - "action": "CARVE_LEFT" - }, - { - "x": 39.398258288212496, - "y": -399.794019738176, - "rotation": 5.443652060775487, - "action": "CARVE_LEFT" - }, - { - "x": 37.63242823420536, - "y": -401.36299777381953, - "rotation": 5.392530914742312, - "action": "CARVE_LEFT" - }, - { - "x": 35.76540742716909, - "y": -402.83797995973197, - "rotation": 5.341403644735436, - "action": "CARVE_LEFT" - }, - { - "x": 33.79764386263034, - "y": -404.2186984012564, - "rotation": 5.290281173215729, - "action": "CARVE_LEFT" - }, - { - "x": 31.729670658965087, - "y": -405.5049659377472, - "rotation": 5.2391743943142295, - "action": "CARVE_LEFT" - }, - { - "x": 29.562105583880452, - "y": -406.6966758445708, - "rotation": 5.188094171578892, - "action": "CARVE_LEFT" - }, - { - "x": 27.295650509552996, - "y": -407.79380146825764, - "rotation": 5.137051335733484, - "action": "CARVE_LEFT" - }, - { - "x": 24.931090797162195, - "y": -408.7963957954617, - "rotation": 5.086056682449095, - "action": "CARVE_LEFT" - }, - { - "x": 22.469294611614746, - "y": -409.7045909564364, - "rotation": 5.0351209701286885, - "action": "NOTHING" - }, - { - "x": 19.744703071150624, - "y": -410.3658492704465, - "rotation": 5.038611628632677, - "action": "NOTHING" - }, - { - "x": 17.03078425040303, - "y": -411.0334376039112, - "rotation": 5.042102287136665, - "action": "NOTHING" - }, - { - "x": 14.32747383389985, - "y": -411.7073519524551, - "rotation": 5.045592945640654, - "action": "NOTHING" - }, - { - "x": 11.634708023937131, - "y": -412.38758865225043, - "rotation": 5.049083604144642, - "action": "NOTHING" - }, - { - "x": 8.952423538952226, - "y": -413.0741443788577, - "rotation": 5.052574262648631, - "action": "NOTHING" - }, - { - "x": 6.2805576119018145, - "y": -413.76701614607015, - "rotation": 5.056064921152619, - "action": "NOTHING" - }, - { - "x": 3.6190479886448177, - "y": -414.46620130476197, - "rotation": 5.059555579656608, - "action": "NOTHING" - }, - { - "x": 0.9678329263301824, - "y": -415.17169754174, - "rotation": 5.063046238160596, - "action": "NOTHING" - }, - { - "x": -1.673148808210482, - "y": -415.8835028785993, - "rotation": 5.0665368966645845, - "action": "NOTHING" - }, - { - "x": -4.303957940065422, - "y": -416.60161567058196, - "rotation": 5.070027555168573, - "action": "NOTHING" - }, - { - "x": -6.924654687840437, - "y": -417.32603460543993, - "rotation": 5.073518213672561, - "action": "NOTHING" - }, - { - "x": -9.535298765251756, - "y": -418.0567587023012, - "rotation": 5.07700887217655, - "action": "NOTHING" - }, - { - "x": -12.13594938271412, - "y": -418.7937873105396, - "rotation": 5.080499530680538, - "action": "NOTHING" - }, - { - "x": -14.726665248924082, - "y": -419.53712010864825, - "rotation": 5.083990189184527, - "action": "NOTHING" - }, - { - "x": -17.30750457243853, - "y": -420.28675710311666, - "rotation": 5.087480847688515, - "action": "NOTHING" - }, - { - "x": -19.878525063248453, - "y": -421.04269862731104, - "rotation": 5.090971506192504, - "action": "NOTHING" - }, - { - "x": -22.439783934347975, - "y": -421.80494534035864, - "rotation": 5.094462164696492, - "action": "NOTHING" - }, - { - "x": -24.991337903298643, - "y": -422.5734982260352, - "rotation": 5.0979528232004805, - "action": "NOTHING" - }, - { - "x": -27.533243193789016, - "y": -423.3483585916562, - "rotation": 5.101443481704469, - "action": "NOTHING" - }, - { - "x": -30.06555553718954, - "y": -424.1295280669715, - "rotation": 5.104934140208457, - "action": "NOTHING" - }, - { - "x": -32.588330174102744, - "y": -424.9170086030635, - "rotation": 5.108424798712446, - "action": "NOTHING" - }, - { - "x": -35.10162185590876, - "y": -425.7108024712489, - "rotation": 5.111915457216434, - "action": "NOTHING" - }, - { - "x": -37.60548484630617, - "y": -426.5109122619837, - "rotation": 5.115406115720423, - "action": "NOTHING" - }, - { - "x": -40.09997292284823, - "y": -427.31734088377203, - "rotation": 5.118896774224411, - "action": "NOTHING" - }, - { - "x": -42.585139378474445, - "y": -428.130091562078, - "rotation": 5.1223874327284, - "action": "NOTHING" - }, - { - "x": -45.06103702303753, - "y": -428.9491678382414, - "rotation": 5.125878091232388, - "action": "CARVE_RIGHT" - }, - { - "x": -47.19217545713568, - "y": -430.0851784150278, - "rotation": 5.1755304001522155, - "action": "CARVE_RIGHT" - }, - { - "x": -49.22679318216542, - "y": -431.3089418606972, - "rotation": 5.225146211695415, - "action": "CARVE_RIGHT" - }, - { - "x": -51.165455420734915, - "y": -432.62060183571043, - "rotation": 5.274736201811889, - "action": "CARVE_RIGHT" - }, - { - "x": -53.00864437609301, - "y": -434.0203769998581, - "rotation": 5.324311014253097, - "action": "CARVE_RIGHT" - }, - { - "x": -54.756759655336595, - "y": -435.50856076697556, - "rotation": 5.373881262923215, - "action": "CARVE_RIGHT" - }, - { - "x": -56.410118621481864, - "y": -437.08552112479015, - "rotation": 5.423457534218053, - "action": "NOTHING" - }, - { - "x": -58.24077516063596, - "y": -438.5001003954137, - "rotation": 5.426948192722041, - "action": "NOTHING" - }, - { - "x": -60.065038907980174, - "y": -439.9224244583106, - "rotation": 5.43043885122603, - "action": "NOTHING" - }, - { - "x": -61.882925684975504, - "y": -441.3525207667952, - "rotation": 5.433929509730018, - "action": "NOTHING" - }, - { - "x": -63.69445094873516, - "y": -442.79041700628363, - "rotation": 5.437420168234007, - "action": "NOTHING" - }, - { - "x": -65.49962979318742, - "y": -444.23614109348074, - "rotation": 5.440910826737995, - "action": "NOTHING" - }, - { - "x": -67.29847695023494, - "y": -445.68972117556865, - "rotation": 5.4444014852419835, - "action": "NOTHING" - }, - { - "x": -69.09100679091055, - "y": -447.1511856293988, - "rotation": 5.447892143745972, - "action": "NOTHING" - }, - { - "x": -70.87723332652953, - "y": -448.6205630606859, - "rotation": 5.45138280224996, - "action": "NOTHING" - }, - { - "x": -72.65717020983837, - "y": -450.09788230320504, - "rotation": 5.454873460753949, - "action": "NOTHING" - }, - { - "x": -74.43083073616003, - "y": -451.58317241799085, - "rotation": 5.458364119257937, - "action": "NOTHING" - }, - { - "x": -76.1982278445358, - "y": -453.07646269253974, - "rotation": 5.461854777761926, - "action": "NOTHING" - }, - { - "x": -77.95937411886348, - "y": -454.5777826400144, - "rotation": 5.465345436265914, - "action": "NOTHING" - }, - { - "x": -79.71428178903238, - "y": -456.0871619984508, - "rotation": 5.468836094769903, - "action": "NOTHING" - }, - { - "x": -81.4629627320546, - "y": -457.60463072996816, - "rotation": 5.472326753273891, - "action": "NOTHING" - }, - { - "x": -83.20542847319304, - "y": -459.130219019981, - "rotation": 5.4758174117778795, - "action": "NOTHING" - }, - { - "x": -84.94169018708588, - "y": -460.66395727641384, - "rotation": 5.479308070281868, - "action": "NOTHING" - }, - { - "x": -86.67175869886769, - "y": -462.2058761289188, - "rotation": 5.482798728785856, - "action": "NOTHING" - }, - { - "x": -88.3956444852871, - "y": -463.7560064280952, - "rotation": 5.486289387289845, - "action": "NOTHING" - }, - { - "x": -90.11335767582106, - "y": -465.31437924471186, - "rotation": 5.489780045793833, - "action": "NOTHING" - }, - { - "x": -91.82490805378579, - "y": -466.8810258689322, - "rotation": 5.493270704297822, - "action": "CARVE_RIGHT" - }, - { - "x": -93.2683971897, - "y": -468.6984107297949, - "rotation": 5.543558774191383, - "action": "CARVE_RIGHT" - }, - { - "x": -94.61502778195074, - "y": -470.60867931924435, - "rotation": 5.593887270025677, - "action": "CARVE_RIGHT" - }, - { - "x": -95.86476378726243, - "y": -472.6125305360247, - "rotation": 5.644266827481629, - "action": "CARVE_RIGHT" - }, - { - "x": -97.01748544527518, - "y": -474.71073995550773, - "rotation": 5.694708066544109, - "action": "CARVE_RIGHT" - }, - { - "x": -98.07298919487849, - "y": -476.9041600510596, - "rotation": 5.745221593806767, - "action": "CARVE_RIGHT" - }, - { - "x": -99.03098752028943, - "y": -479.19372047995046, - "rotation": 5.795818004768253, - "action": "CARVE_RIGHT" - }, - { - "x": -99.89110872700788, - "y": -481.5804284337169, - "rotation": 5.846507886120324, - "action": "CARVE_RIGHT" - }, - { - "x": -100.65289664772092, - "y": -484.06536905294155, - "rotation": 5.8973018180283585, - "action": "CARVE_RIGHT" - }, - { - "x": -101.3158102781692, - "y": -486.6497059064694, - "rotation": 5.9482103764047745, - "action": "CARVE_RIGHT" - }, - { - "x": -101.87922334292814, - "y": -489.3346815351368, - "rotation": 5.9992441351758545, - "action": "CARVE_RIGHT" - }, - { - "x": -102.34242379099828, - "y": -492.1216180601407, - "rotation": 6.0504136685424825, - "action": "CARVE_RIGHT" - }, - { - "x": -102.70461322103938, - "y": -495.01191785623377, - "rotation": 6.101729553235288, - "action": "CARVE_RIGHT" - }, - { - "x": -102.96490623602452, - "y": -498.00706428998217, - "rotation": 6.153202370764691, - "action": "CARVE_RIGHT" - }, - { - "x": -103.12232972703146, - "y": -501.1086225233795, - "rotation": 6.204842709666338, - "action": "CARVE_RIGHT" - }, - { - "x": -103.17582208582967, - "y": -504.3182403831632, - "rotation": 6.256661167742433, - "action": "CARVE_RIGHT" - }, - { - "x": -103.12424309017258, - "y": -507.54144132268607, - "rotation": 0.025483047119839952, - "action": "CARVE_RIGHT" - }, - { - "x": -102.9664846064081, - "y": -510.6774120353079, - "rotation": 0.07767871243622604, - "action": "CARVE_RIGHT" - }, - { - "x": -102.7015287873875, - "y": -513.7244821904252, - "rotation": 0.13005125023983824, - "action": "CARVE_RIGHT" - }, - { - "x": -102.32844892921874, - "y": -516.6810654597076, - "rotation": 0.18258904554139374, - "action": "CARVE_RIGHT" - }, - { - "x": -101.84641024592898, - "y": -519.5456603907164, - "rotation": 0.23528047713414998, - "action": "CARVE_RIGHT" - }, - { - "x": -101.25467056169315, - "y": -522.3168512038536, - "rotation": 0.28811392008863923, - "action": "CARVE_RIGHT" - }, - { - "x": -100.55258092035724, - "y": -524.9933085123592, - "rotation": 0.34107774824196013, - "action": "CARVE_RIGHT" - }, - { - "x": -99.73958611205765, - "y": -527.5737899651396, - "rotation": 0.3941603366811096, - "action": "CARVE_RIGHT" - }, - { - "x": -98.8152251168092, - "y": -530.0571408122768, - "rotation": 0.44735006421983936, - "action": "CARVE_RIGHT" - }, - { - "x": -97.77913146500688, - "y": -532.4422943931369, - "rotation": 0.5006353158685255, - "action": "CARVE_RIGHT" - }, - { - "x": -96.63103351485732, - "y": -534.7282725470595, - "rotation": 0.5540044852965416, - "action": "CARVE_RIGHT" - }, - { - "x": -95.37075464682724, - "y": -536.9141859466783, - "rotation": 0.6074459772866277, - "action": "CARVE_RIGHT" - }, - { - "x": -93.99821337526686, - "y": -538.9992343539867, - "rotation": 0.6609482101807543, - "action": "CARVE_RIGHT" - }, - { - "x": -92.51342337743644, - "y": -540.9827067993301, - "rotation": 0.7144996183169773, - "action": "CARVE_RIGHT" - }, - { - "x": -90.9164934402337, - "y": -542.8639816835682, - "rotation": 0.7680886544567889, - "action": "CARVE_RIGHT" - }, - { - "x": -89.20762732498905, - "y": -544.6425268037167, - "rotation": 0.8217037922024703, - "action": "CARVE_RIGHT" - }, - { - "x": -87.3871235507641, - "y": -546.3178993024417, - "rotation": 0.8753335284039544, - "action": "CARVE_RIGHT" - }, - { - "x": -85.4553750966565, - "y": -547.889745541841, - "rotation": 0.9289663855547121, - "action": "CARVE_RIGHT" - }, - { - "x": -83.41286902368124, - "y": -549.357800902012, - "rotation": 0.982590914176178, - "action": "CARVE_RIGHT" - }, - { - "x": -81.26018601686499, - "y": -550.7218895049634, - "rotation": 1.0361956951902362, - "action": "CARVE_RIGHT" - }, - { - "x": -78.99799984825489, - "y": -551.9819238644931, - "rotation": 1.089769342279289, - "action": "CARVE_RIGHT" - }, - { - "x": -76.62707676160824, - "y": -553.1379044627098, - "rotation": 1.143300504233436, - "action": "CARVE_RIGHT" - }, - { - "x": -74.1482747795926, - "y": -554.1899192539405, - "rotation": 1.1967778672842984, - "action": "NOTHING" - }, - { - "x": -71.40480839863427, - "y": -554.9935533371358, - "rotation": 1.1932872087803097, - "action": "NOTHING" - }, - { - "x": -68.67203915264734, - "y": -555.8038260649147, - "rotation": 1.189796550276321, - "action": "NOTHING" - }, - { - "x": -65.94990664096768, - "y": -556.620736342678, - "rotation": 1.1863058917723324, - "action": "NOTHING" - }, - { - "x": -63.238350969200496, - "y": -557.4442834075146, - "rotation": 1.1828152332683437, - "action": "NOTHING" - }, - { - "x": -60.53731274762648, - "y": -558.2744668270684, - "rotation": 1.179324574764355, - "action": "NOTHING" - }, - { - "x": -57.84673308961277, - "y": -559.1112864984087, - "rotation": 1.1758339162603664, - "action": "NOTHING" - }, - { - "x": -55.166553610028714, - "y": -559.9547426469045, - "rotation": 1.1723432577563777, - "action": "NOTHING" - }, - { - "x": -52.496716423666385, - "y": -560.8048358251018, - "rotation": 1.168852599252389, - "action": "NOTHING" - }, - { - "x": -49.83716414366589, - "y": -561.6615669116053, - "rotation": 1.1653619407484004, - "action": "NOTHING" - }, - { - "x": -47.18783987994539, - "y": -562.5249371099627, - "rotation": 1.1618712822444117, - "action": "NOTHING" - }, - { - "x": -44.54868723763592, - "y": -563.3949479475535, - "rotation": 1.158380623740423, - "action": "NOTHING" - }, - { - "x": -41.91965031552082, - "y": -564.2716012744804, - "rotation": 1.1548899652364344, - "action": "NOTHING" - }, - { - "x": -39.30067370448002, - "y": -565.1548992624649, - "rotation": 1.1513993067324457, - "action": "NOTHING" - }, - { - "x": -36.691702485938876, - "y": -566.0448444037461, - "rotation": 1.147908648228457, - "action": "NOTHING" - }, - { - "x": -34.092682230321785, - "y": -566.9414395099828, - "rotation": 1.1444179897244684, - "action": "NOTHING" - }, - { - "x": -31.503558995510417, - "y": -567.8446877111601, - "rotation": 1.1409273312204797, - "action": "NOTHING" - }, - { - "x": -28.92427932530662, - "y": -568.7545924544977, - "rotation": 1.137436672716491, - "action": "NOTHING" - }, - { - "x": -26.354790247899956, - "y": -569.6711575033636, - "rotation": 1.1339460142125024, - "action": "NOTHING" - }, - { - "x": -23.795039274339857, - "y": -570.5943869361896, - "rotation": 1.1304553557085137, - "action": "NOTHING" - }, - { - "x": -21.244974397012406, - "y": -571.5242851453916, - "rotation": 1.126964697204525, - "action": "NOTHING" - }, - { - "x": -18.704544088121708, - "y": -572.460856836292, - "rotation": 1.1234740387005364, - "action": "NOTHING" - }, - { - "x": -16.17369729817585, - "y": -573.4041070260472, - "rotation": 1.1199833801965478, - "action": "NOTHING" - }, - { - "x": -13.652383454477425, - "y": -574.3540410425766, - "rotation": 1.116492721692559, - "action": "NOTHING" - }, - { - "x": -11.140552459618624, - "y": -575.3106645234963, - "rotation": 1.1130020631885704, - "action": "NOTHING" - }, - { - "x": -8.638154689980862, - "y": -576.273983415056, - "rotation": 1.1095114046845818, - "action": "NOTHING" - }, - { - "x": -6.145140994238947, - "y": -577.2440039710791, - "rotation": 1.106020746180593, - "action": "NOTHING" - }, - { - "x": -3.6614626918697533, - "y": -578.2207327519059, - "rotation": 1.1025300876766044, - "action": "NOTHING" - }, - { - "x": -1.1870715716654137, - "y": -579.2041766233406, - "rotation": 1.0990394291726158, - "action": "NOTHING" - }, - { - "x": 1.2780801097490087, - "y": -580.1943427556016, - "rotation": 1.095548770668627, - "action": "NOTHING" - }, - { - "x": 3.734039629393362, - "y": -581.1912386222749, - "rotation": 1.0920581121646384, - "action": "NOTHING" - }, - { - "x": 6.180853799405787, - "y": -582.1948719992711, - "rotation": 1.0885674536606498, - "action": "NOTHING" - }, - { - "x": 8.61856896851164, - "y": -583.2052509637853, - "rotation": 1.0850767951566611, - "action": "NOTHING" - }, - { - "x": 11.047231023487988, - "y": -584.2223838932609, - "rotation": 1.0815861366526724, - "action": "NOTHING" - }, - { - "x": 13.466885390623663, - "y": -585.2462794643566, - "rotation": 1.0780954781486838, - "action": "NOTHING" - }, - { - "x": 15.877577037174916, - "y": -586.2769466519156, - "rotation": 1.0746048196446951, - "action": "CARVE_LEFT" - }, - { - "x": 17.941113522669912, - "y": -587.6275264841913, - "rotation": 1.0225395284099585, - "action": "CARVE_LEFT" - }, - { - "x": 19.899131695517244, - "y": -589.074980692724, - "rotation": 0.9704986090601995, - "action": "CARVE_LEFT" - }, - { - "x": 21.75210800435537, - "y": -590.6195657500326, - "rotation": 0.9184708986029109, - "action": "CARVE_LEFT" - }, - { - "x": 23.50042810254354, - "y": -592.2616204265049, - "rotation": 0.866445264770964, - "action": "CARVE_LEFT" - }, - { - "x": 25.144387209835273, - "y": -594.0015656083938, - "rotation": 0.8144106035709112, - "action": "CARVE_LEFT" - }, - { - "x": 26.684190396494515, - "y": -595.8399041868981, - "rotation": 0.7623558368434503, - "action": "CARVE_LEFT" - }, - { - "x": 28.119952790390904, - "y": -597.7772210178662, - "rotation": 0.7102699098354978, - "action": "CARVE_LEFT" - }, - { - "x": 29.451699707542712, - "y": -599.8141829517211, - "rotation": 0.6581417887833265, - "action": "CARVE_LEFT" - }, - { - "x": 30.679366706508958, - "y": -601.951538933272, - "rotation": 0.6059604585062227, - "action": "CARVE_LEFT" - }, - { - "x": 31.802799566965682, - "y": -604.1901201711316, - "rotation": 0.5537149200101228, - "action": "CARVE_LEFT" - }, - { - "x": 32.82175419273558, - "y": -606.5308403765275, - "rotation": 0.5013941881006951, - "action": "CARVE_LEFT" - }, - { - "x": 33.73589643947483, - "y": -608.9746960713488, - "rotation": 0.4489872890053324, - "action": "CARVE_LEFT" - }, - { - "x": 34.544801867156025, - "y": -611.5227669653348, - "rotation": 0.39648325800352574, - "action": "CARVE_LEFT" - }, - { - "x": 35.247955417422006, - "y": -614.176216402367, - "rotation": 0.3438711370650942, - "action": "CARVE_LEFT" - }, - { - "x": 35.84475101582085, - "y": -616.9362918758902, - "rotation": 0.2911399724957458, - "action": "CARVE_LEFT" - }, - { - "x": 36.33449109886903, - "y": -619.8043256135414, - "rotation": 0.23827881258944972, - "action": "CARVE_LEFT" - }, - { - "x": 36.71638606582594, - "y": -622.7817352311295, - "rotation": 0.18527670528710166, - "action": "CARVE_LEFT" - }, - { - "x": 36.98955365499972, - "y": -625.8700244561621, - "rotation": 0.13212269584096725, - "action": "CARVE_LEFT" - }, - { - "x": 37.153018244341425, - "y": -629.0707839211792, - "rotation": 0.07880582448439076, - "action": "CARVE_LEFT" - }, - { - "x": 37.20571007602109, - "y": -632.3856920272068, - "rotation": 0.0253151241062589, - "action": "CARVE_LEFT" - }, - { - "x": 37.14647771222331, - "y": -635.7060556924997, - "rotation": 6.254824925109298, - "action": "CARVE_LEFT" - }, - { - "x": 36.974209590654915, - "y": -638.9325194031516, - "rotation": 6.200965724803863, - "action": "CARVE_LEFT" - }, - { - "x": 36.68789049469, - "y": -642.0633938962786, - "rotation": 6.146934779567595, - "action": "CARVE_LEFT" - }, - { - "x": 36.28660239027475, - "y": -645.0970796297579, - "rotation": 6.092744045364472, - "action": "CARVE_LEFT" - }, - { - "x": 35.76952517560765, - "y": -648.0320676369288, - "rotation": 6.038405482356874, - "action": "CARVE_LEFT" - }, - { - "x": 35.13593734329625, - "y": -650.8669402998748, - "rotation": 5.9839310523435865, - "action": "CARVE_LEFT" - }, - { - "x": 34.38521655476797, - "y": -653.600372041047, - "rotation": 5.92933271620386, - "action": "CARVE_LEFT" - }, - { - "x": 33.51684012678872, - "y": -656.2311299330588, - "rotation": 5.8746224313480555, - "action": "CARVE_LEFT" - }, - { - "x": 32.53038543001894, - "y": -658.7580742265569, - "rotation": 5.819812149175397, - "action": "CARVE_LEFT" - }, - { - "x": 31.425530199612588, - "y": -661.1801587961378, - "rotation": 5.764913812539374, - "action": "CARVE_LEFT" - }, - { - "x": 30.202052757939704, - "y": -663.4964315043536, - "rotation": 5.709939353221295, - "action": "CARVE_LEFT" - }, - { - "x": 28.859832149588126, - "y": -665.7060344839198, - "rotation": 5.654900689412519, - "action": "CARVE_LEFT" - }, - { - "x": 27.39884818887441, - "y": -667.8082043383031, - "rotation": 5.599809723205884, - "action": "CARVE_LEFT" - }, - { - "x": 25.819181420167787, - "y": -669.8022722609421, - "rotation": 5.544678338096844, - "action": "CARVE_LEFT" - }, - { - "x": 24.12101299140422, - "y": -671.6876640734156, - "rotation": 5.489518396494811, - "action": "CARVE_LEFT" - }, - { - "x": 22.30462444124027, - "y": -673.4639001829446, - "rotation": 5.434341737245225, - "action": "CARVE_LEFT" - }, - { - "x": 20.370397400368272, - "y": -675.1305954596802, - "rotation": 5.379160173162846, - "action": "CARVE_LEFT" - }, - { - "x": 18.3188132075854, - "y": -676.6874590342937, - "rotation": 5.323985488576759, - "action": "NOTHING" - }, - { - "x": 16.047845487791612, - "y": -678.0407716268, - "rotation": 5.3274761470807475, - "action": "NOTHING" - }, - { - "x": 13.785414796531441, - "y": -679.4016185005127, - "rotation": 5.330966805584736, - "action": "NOTHING" - }, - { - "x": 11.531488311482704, - "y": -680.7700168569962, - "rotation": 5.334457464088724, - "action": "NOTHING" - }, - { - "x": 9.286033630315716, - "y": -682.145984167716, - "rotation": 5.337948122592713, - "action": "NOTHING" - }, - { - "x": 7.0490187693584705, - "y": -683.5295381730991, - "rotation": 5.341438781096701, - "action": "NOTHING" - }, - { "x": 4.820412162265862, "y": -684.920696881599, "rotation": 5.34492943960069, "action": "NOTHING" }, - { - "x": 2.6001826586929497, - "y": -686.3194785687632, - "rotation": 5.348420098104678, - "action": "NOTHING" - }, - { - "x": 0.3882995229722477, - "y": -687.7259017763037, - "rotation": 5.3519107566086666, - "action": "NOTHING" - }, - { - "x": -1.8152675672049732, - "y": -689.1399853111703, - "rotation": 5.355401415112655, - "action": "NOTHING" - }, - { - "x": -4.01054852210338, - "y": -690.5617482446274, - "rotation": 5.358892073616643, - "action": "NOTHING" - }, - { - "x": -6.197572841254287, - "y": -691.991209911333, - "rotation": 5.362382732120632, - "action": "NOTHING" - }, - { - "x": -8.376369614762378, - "y": -693.4283899084213, - "rotation": 5.36587339062462, - "action": "NOTHING" - }, - { - "x": -10.546967524608474, - "y": -694.8733080945879, - "rotation": 5.369364049128609, - "action": "CARVE_RIGHT" - }, - { - "x": -12.382751789739, - "y": -696.6284222060732, - "rotation": 5.424492215406634, - "action": "CARVE_RIGHT" - }, - { - "x": -14.101129704483698, - "y": -698.4931657827399, - "rotation": 5.479623306518555, - "action": "CARVE_RIGHT" - }, - { - "x": -15.7023474719818, - "y": -700.468045803652, - "rotation": 5.534769076451726, - "action": "CARVE_RIGHT" - }, - { - "x": -17.186550267451018, - "y": -702.5536613079129, - "rotation": 5.589941252940012, - "action": "CARVE_RIGHT" - }, - { - "x": -18.553782424268867, - "y": -704.7507033825497, - "rotation": 5.645151540031343, - "action": "CARVE_RIGHT" - }, - { - "x": -19.80398753434215, - "y": -707.0599552290784, - "rotation": 5.7004116206437905, - "action": "CARVE_RIGHT" - }, - { - "x": -20.93700846318083, - "y": -709.4822923083987, - "rotation": 5.75573315911075, - "action": "CARVE_RIGHT" - }, - { - "x": -21.952587280018225, - "y": -712.0186825637381, - "rotation": 5.81112780371579, - "action": "CARVE_RIGHT" - }, - { - "x": -22.850365103245704, - "y": -714.6701867214325, - "rotation": 5.866607189217749, - "action": "CARVE_RIGHT" - }, - { - "x": -23.62988186135715, - "y": -717.4379586693959, - "rotation": 5.922182939366625, - "action": "CARVE_RIGHT" - }, - { - "x": -24.290575969525673, - "y": -720.3232459132036, - "rotation": 5.977866669410832, - "action": "CARVE_RIGHT" - }, - { - "x": -24.831783921863103, - "y": -723.3273901097735, - "rotation": 6.033669988596375, - "action": "CARVE_RIGHT" - }, - { - "x": -25.25292228120966, - "y": -726.4516575913068, - "rotation": 6.089520524660194, - "action": "CARVE_RIGHT" - }, - { - "x": -25.553434347184798, - "y": -729.6972881184455, - "rotation": 6.145371060724012, - "action": "CARVE_RIGHT" - }, - { - "x": -25.732688232422593, - "y": -733.0655892586676, - "rotation": 6.201221596787831, - "action": "CARVE_RIGHT" - }, - { - "x": -25.78997711296205, - "y": -736.5579361589708, - "rotation": 6.25707213285165, - "action": "CARVE_RIGHT" - }, - { - "x": -25.72453410907983, - "y": -740.053771905426, - "rotation": 0.02973736173588204, - "action": "CARVE_RIGHT" - }, - { - "x": -25.535637213877962, - "y": -743.4455631895424, - "rotation": 0.08558789779970058, - "action": "CARVE_RIGHT" - }, - { - "x": -25.222644526745484, - "y": -746.7319433304953, - "rotation": 0.14143843386351912, - "action": "CARVE_RIGHT" - }, - { - "x": -24.784993986363546, - "y": -749.911621503551, - "rotation": 0.19728896992733766, - "action": "CARVE_RIGHT" - }, - { - "x": -24.222203104544825, - "y": -752.9833824887958, - "rotation": 0.2531395059911562, - "action": "CARVE_RIGHT" - }, - { - "x": -23.53386870090476, - "y": -755.9460864206451, - "rotation": 0.30899004205497477, - "action": "CARVE_RIGHT" - }, - { - "x": -22.719666638362078, - "y": -758.7986685381345, - "rotation": 0.36484057811879333, - "action": "CARVE_RIGHT" - }, - { - "x": -21.779351559466164, - "y": -761.5401389359871, - "rotation": 0.4206911141826119, - "action": "CARVE_RIGHT" - }, - { - "x": -20.712756623548763, - "y": -764.1695823164565, - "rotation": 0.47654165024643047, - "action": "CARVE_RIGHT" - }, - { - "x": -19.519793244697546, - "y": -766.6861577419427, - "rotation": 0.532392186310249, - "action": "CARVE_RIGHT" - }, - { - "x": -18.20045083054909, - "y": -769.0890983883787, - "rotation": 0.5882427223740675, - "action": "CARVE_RIGHT" - }, - { - "x": -16.754796521898797, - "y": -771.3777112993855, - "rotation": 0.644093258437886, - "action": "CARVE_RIGHT" - }, - { - "x": -15.182974933125296, - "y": -773.5513771411928, - "rotation": 0.6999437945017045, - "action": "CARVE_RIGHT" - }, - { - "x": -13.485207893426905, - "y": -775.6095499583234, - "rotation": 0.755794330565523, - "action": "CARVE_RIGHT" - }, - { - "x": -11.661794188867683, - "y": -777.5517569300399, - "rotation": 0.8116448666293415, - "action": "CARVE_RIGHT" - }, - { - "x": -9.713109305230677, - "y": -779.3775981275493, - "rotation": 0.8674954026931601, - "action": "CARVE_RIGHT" - }, - { - "x": -7.639605171675914, - "y": -781.086746271965, - "rotation": 0.9233459387569786, - "action": "CARVE_RIGHT" - }, - { - "x": -5.44180990520072, - "y": -782.678946493024, - "rotation": 0.9791964748207971, - "action": "CARVE_RIGHT" - }, - { - "x": -3.1203275558999874, - "y": -784.1540160885556, - "rotation": 1.0350470108846157, - "action": "NOTHING" - }, - { - "x": -0.550915524666006, - "y": -785.3976687954804, - "rotation": 1.031556352380627, - "action": "NOTHING" - }, - { - "x": 2.00852885610296, - "y": -786.6487497376804, - "rotation": 1.0280656938766384, - "action": "NOTHING" - }, - { - "x": 4.558050277580715, - "y": -787.9072687037826, - "rotation": 1.0245750353726497, - "action": "NOTHING" - }, - { - "x": 7.09769297271372, - "y": -789.1732357787753, - "rotation": 1.021084376868661, - "action": "NOTHING" - }, - { - "x": 9.627500717672909, - "y": -790.4466613429832, - "rotation": 1.0175937183646724, - "action": "NOTHING" - }, - { - "x": 12.147516833301117, - "y": -791.7275560710469, - "rotation": 1.0141030598606837, - "action": "NOTHING" - }, - { - "x": 14.657784186556109, - "y": -793.0159309309046, - "rotation": 1.010612401356695, - "action": "NOTHING" - }, - { - "x": 17.15834519194926, - "y": -794.3117971827771, - "rotation": 1.0071217428527064, - "action": "NOTHING" - }, - { - "x": 19.649241812979856, - "y": -795.6151663781571, - "rotation": 1.0036310843487177, - "action": "NOTHING" - }, - { - "x": 22.13051556356508, - "y": -796.9260503588004, - "rotation": 1.000140425844729, - "action": "NOTHING" - }, - { - "x": 24.60220750946564, - "y": -798.2444612557209, - "rotation": 0.9966497673407404, - "action": "NOTHING" - }, - { - "x": 27.064358269707085, - "y": -799.5704114881893, - "rotation": 0.9931591088367517, - "action": "NOTHING" - }, - { - "x": 29.51700801799684, - "y": -800.903913762734, - "rotation": 0.9896684503327631, - "action": "NOTHING" - }, - { - "x": 31.9601964841369, - "y": -802.2449810721461, - "rotation": 0.9861777918287744, - "action": "NOTHING" - }, - { - "x": 34.39396295543229, - "y": -803.5936266944867, - "rotation": 0.9826871333247857, - "action": "NOTHING" - }, - { - "x": 36.81834627809525, - "y": -804.9498641920986, - "rotation": 0.9791964748207971, - "action": "NOTHING" - }, - { - "x": 39.23338485864511, - "y": -806.3137074106197, - "rotation": 0.9757058163168084, - "action": "NOTHING" - }, - { - "x": 41.63911666530401, - "y": -807.6851704780006, - "rotation": 0.9722151578128198, - "action": "NOTHING" - }, - { - "x": 44.035579229388325, - "y": -809.0642678035251, - "rotation": 0.9687244993088311, - "action": "NOTHING" - }, - { - "x": 46.4228096466959, - "y": -810.4510140768335, - "rotation": 0.9652338408048424, - "action": "NOTHING" - }, - { - "x": 48.80084457888906, - "y": -811.8454242669495, - "rotation": 0.9617431823008538, - "action": "NOTHING" - }, - { - "x": 51.169720254873454, - "y": -813.24751362131, - "rotation": 0.9582525237968651, - "action": "NOTHING" - }, - { - "x": 53.529472472172685, - "y": -814.6572976647977, - "rotation": 0.9547618652928764, - "action": "NOTHING" - }, - { - "x": 55.88013659829881, - "y": -816.0747921987776, - "rotation": 0.9512712067888878, - "action": "CARVE_LEFT" - }, - { - "x": 57.87116098183808, - "y": -817.8246305133582, - "rotation": 0.8954206707250693, - "action": "CARVE_LEFT" - }, - { - "x": 59.73804613805128, - "y": -819.68950488251, - "rotation": 0.8395701346612507, - "action": "CARVE_LEFT" - }, - { - "x": 61.48114767790689, - "y": -821.6698324726706, - "rotation": 0.7837195985974322, - "action": "CARVE_LEFT" - }, - { - "x": 63.10074298141495, - "y": -823.7661010202602, - "rotation": 0.7278690625336137, - "action": "CARVE_LEFT" - }, - { - "x": 64.59703145753531, - "y": -825.9788685956919, - "rotation": 0.6720185264697952, - "action": "CARVE_LEFT" - }, - { - "x": 65.9701348032752, - "y": -828.3087633681195, - "rotation": 0.6161679904059767, - "action": "CARVE_LEFT" - }, - { - "x": 67.22009726197875, - "y": -830.7564833709225, - "rotation": 0.5603174543421582, - "action": "CARVE_LEFT" - }, - { - "x": 68.34688588081066, - "y": -833.3227962679259, - "rotation": 0.5044669182783397, - "action": "CARVE_LEFT" - }, - { - "x": 69.3503907674366, - "y": -836.0085391203515, - "rotation": 0.4486163822145211, - "action": "CARVE_LEFT" - }, - { - "x": 70.23042534590262, - "y": -838.8146181545001, - "rotation": 0.39276584615070254, - "action": "CARVE_LEFT" - }, - { - "x": 70.98672661171612, - "y": -841.7420085301609, - "rotation": 0.33691531008688397, - "action": "CARVE_LEFT" - }, - { - "x": 71.61895538613065, - "y": -844.7917541097469, - "rotation": 0.2810647740230654, - "action": "CARVE_LEFT" - }, - { - "x": 72.12669656963689, - "y": -847.9649672281536, - "rotation": 0.22521423795924686, - "action": "CARVE_LEFT" - }, - { - "x": 72.50945939466241, - "y": -851.2628284633392, - "rotation": 0.16936370189542832, - "action": "CARVE_LEFT" - }, - { - "x": 72.7666776774823, - "y": -854.6865864076241, - "rotation": 0.11351316583160978, - "action": "CARVE_LEFT" - }, - { - "x": 72.89771006934326, - "y": -858.2375574397064, - "rotation": 0.05766262976779123, - "action": "CARVE_LEFT" - }, - { - "x": 72.90184030680338, - "y": -861.917125497394, - "rotation": 0.0018120937039726864, - "action": "CARVE_LEFT" - }, - { - "x": 72.77832577623012, - "y": -865.4965216213022, - "rotation": 6.22914686481974, - "action": "CARVE_LEFT" - }, - { - "x": 72.52650230198896, - "y": -868.9667096567402, - "rotation": 6.173296328755922, - "action": "CARVE_LEFT" - }, - { - "x": 72.14578561242108, - "y": -872.3263779535421, - "rotation": 6.117445792692103, - "action": "CARVE_LEFT" - }, - { - "x": 71.63567107349864, - "y": -875.5742905267339, - "rotation": 6.0615952566282845, - "action": "CARVE_LEFT" - }, - { - "x": 70.99573342331229, - "y": -878.7092868058721, - "rotation": 6.005744720564466, - "action": "CARVE_LEFT" - }, - { - "x": 70.22562650738854, - "y": -881.7302813851626, - "rotation": 5.949894184500647, - "action": "CARVE_LEFT" - }, - { - "x": 69.3250830148345, - "y": -884.6362637743575, - "rotation": 5.894043648436829, - "action": "CARVE_LEFT" - }, - { - "x": 68.2939142153074, - "y": -887.4262981504281, - "rotation": 5.83819311237301, - "action": "CARVE_LEFT" - }, - { - "x": 67.13200969680655, - "y": -890.0995231100108, - "rotation": 5.782342576309191, - "action": "CARVE_LEFT" - }, - { - "x": 65.83933710428519, - "y": -892.6551514226243, - "rotation": 5.726492040245373, - "action": "CARVE_LEFT" - }, - { - "x": 64.41594187907982, - "y": -895.0924697846559, - "rotation": 5.670641504181554, - "action": "CARVE_LEFT" - }, - { - "x": 62.861946999154476, - "y": -897.4108385741139, - "rotation": 5.6147909681177355, - "action": "CARVE_LEFT" - }, - { - "x": 61.17755272015758, - "y": -899.6096916061442, - "rotation": 5.558940432053917, - "action": "CARVE_LEFT" - }, - { - "x": 59.36303631728892, - "y": -901.688535889309, - "rotation": 5.503089895990098, - "action": "CARVE_LEFT" - }, - { - "x": 57.41875182797432, - "y": -903.646951382625, - "rotation": 5.44723935992628, - "action": "CARVE_LEFT" - }, - { - "x": 55.345129795345464, - "y": -905.484590753359, - "rotation": 5.391388823862461, - "action": "CARVE_LEFT" - }, - { - "x": 53.14267701252272, - "y": -907.2011791355787, - "rotation": 5.335538287798642, - "action": "CARVE_LEFT" - }, - { - "x": 50.81197626769824, - "y": -908.796513889456, - "rotation": 5.279687751734824, - "action": "CARVE_LEFT" - }, - { - "x": 48.353686090017185, - "y": -910.2704643613212, - "rotation": 5.223837215671005, - "action": "CARVE_LEFT" - }, - { - "x": 45.7685404962545, - "y": -911.6229716444651, - "rotation": 5.1679866796071865, - "action": "CARVE_LEFT" - }, - { - "x": 43.057348738284986, - "y": -912.854048340688, - "rotation": 5.112136143543368, - "action": "CARVE_LEFT" - }, - { - "x": 40.22099505134417, - "y": -913.9637783225913, - "rotation": 5.056285607479549, - "action": "CARVE_LEFT" - }, - { - "x": 37.26043840307771, - "y": -914.9523164966122, - "rotation": 5.000435071415731, - "action": "CARVE_LEFT" - }, - { - "x": 34.17671224337683, - "y": -915.819888566796, - "rotation": 4.944584535351912, - "action": "NOTHING" - }, - { "x": 30.764935935486, "y": -916.377554207167, "rotation": 4.9480751938559004, "action": "NOTHING" }, - { - "x": 27.36765935226243, - "y": -916.9425512833246, - "rotation": 4.951565852359889, - "action": "NOTHING" - }, - { - "x": 23.984796715079725, - "y": -917.5148622728694, - "rotation": 4.955056510863877, - "action": "NOTHING" - }, - { - "x": 20.616262831952074, - "y": -918.0944700418321, - "rotation": 4.958547169367866, - "action": "NOTHING" - }, - { - "x": 17.261973095697137, - "y": -918.6813578433594, - "rotation": 4.962037827871854, - "action": "NOTHING" - }, - { - "x": 13.921843482104482, - "y": -919.2755093164037, - "rotation": 4.965528486375843, - "action": "NOTHING" - }, - { - "x": 10.595790548109521, - "y": -919.876908484418, - "rotation": 4.969019144879831, - "action": "NOTHING" - }, - { - "x": 7.28373142997294, - "y": -920.4855397540532, - "rotation": 4.9725098033838195, - "action": "NOTHING" - }, - { - "x": 3.9855838414655818, - "y": -921.1013879138615, - "rotation": 4.976000461887808, - "action": "NOTHING" - }, - { - "x": 0.7012660720587935, - "y": -921.724438133002, - "rotation": 4.979491120391796, - "action": "NOTHING" - }, - { - "x": -2.5693030148797806, - "y": -922.3546759599517, - "rotation": 4.982981778895785, - "action": "NOTHING" - }, - { - "x": -5.826203983884993, - "y": -922.9920873212202, - "rotation": 4.986472437399773, - "action": "NOTHING" - }, - { - "x": -9.069516829187577, - "y": -923.636658520068, - "rotation": 4.989963095903762, - "action": "NOTHING" - }, - { - "x": -12.299320976502141, - "y": -924.2883762352295, - "rotation": 4.99345375440775, - "action": "CARVE_RIGHT" - }, - { - "x": -15.07621984311489, - "y": -925.3541492249128, - "rotation": 5.049304290471569, - "action": "CARVE_RIGHT" - }, - { - "x": -17.72411423167567, - "y": -926.5348292588501, - "rotation": 5.105154826535387, - "action": "CARVE_RIGHT" - }, - { - "x": -20.24384442234346, - "y": -927.83039632039, - "rotation": 5.161005362599206, - "action": "CARVE_RIGHT" - }, - { - "x": -22.636170853280188, - "y": -929.2409024256052, - "rotation": 5.216855898663025, - "action": "CARVE_RIGHT" - }, - { - "x": -24.901774385584968, - "y": -930.7664713827199, - "rotation": 5.272706434726843, - "action": "CARVE_RIGHT" - }, - { - "x": -27.04125656740269, - "y": -932.4072985522912, - "rotation": 5.328556970790662, - "action": "CARVE_RIGHT" - }, - { - "x": -29.055139897209397, - "y": -934.1636506081398, - "rotation": 5.3844075068544806, - "action": "CARVE_RIGHT" - }, - { - "x": -30.943868086276947, - "y": -936.03586529903, - "rotation": 5.440258042918299, - "action": "CARVE_RIGHT" - }, - { - "x": -32.707806320319435, - "y": -938.0243512110942, - "rotation": 5.496108578982118, - "action": "CARVE_RIGHT" - }, - { - "x": -34.34724152032378, - "y": -940.1295875310024, - "rotation": 5.551959115045936, - "action": "CARVE_RIGHT" - }, - { - "x": -35.86238260256694, - "y": -942.352123809872, - "rotation": 5.607809651109755, - "action": "CARVE_RIGHT" - }, - { - "x": -37.25336073782222, - "y": -944.6925797279177, - "rotation": 5.663660187173574, - "action": "CARVE_RIGHT" - }, - { - "x": -38.52022960975706, - "y": -947.1516448598381, - "rotation": 5.719510723237392, - "action": "CARVE_RIGHT" - }, - { - "x": -39.662965672524734, - "y": -949.7300784409364, - "rotation": 5.775361259301211, - "action": "CARVE_RIGHT" - }, - { - "x": -40.681468407552416, - "y": -952.4287091339745, - "rotation": 5.8312117953650295, - "action": "CARVE_RIGHT" - }, - { - "x": -41.575560579527966, - "y": -955.2484347967575, - "rotation": 5.887062331428848, - "action": "CARVE_RIGHT" - }, - { - "x": -42.34498849158786, - "y": -958.1902222504451, - "rotation": 5.942912867492667, - "action": "CARVE_RIGHT" - }, - { - "x": -42.98942223970868, - "y": -961.2551070485911, - "rotation": 5.998763403556485, - "action": "CARVE_RIGHT" - }, - { - "x": -43.50845596630451, - "y": -964.4441932469043, - "rotation": 6.054613939620304, - "action": "CARVE_RIGHT" - }, - { - "x": -43.90160811303265, - "y": -967.758653173733, - "rotation": 6.110464475684123, - "action": "CARVE_RIGHT" - }, - { - "x": -44.168321672810016, - "y": -971.1997272012678, - "rotation": 6.166315011747941, - "action": "CARVE_RIGHT" - }, - { - "x": -44.307964441042564, - "y": -974.7687235174618, - "rotation": 6.22216554781176, - "action": "CARVE_RIGHT" - }, - { - "x": -44.319829266070165, - "y": -978.4670178986665, - "rotation": 6.2780160838755785, - "action": "CARVE_RIGHT" - }, - { - "x": -44.20317679712474, - "y": -982.0786359235838, - "rotation": 0.050681312759810915, - "action": "CARVE_RIGHT" - }, - { - "x": -43.95734262157826, - "y": -985.5802179573698, - "rotation": 0.10653184882362945, - "action": "CARVE_RIGHT" - }, - { - "x": -43.581742229661174, - "y": -988.970452178858, - "rotation": 0.162382384887448, - "action": "CARVE_RIGHT" - }, - { - "x": -43.075870748124665, - "y": -992.2481024309219, - "rotation": 0.21823292095126653, - "action": "CARVE_RIGHT" - }, - { - "x": -42.43930267473525, - "y": -995.4120079698207, - "rotation": 0.2740834570150851, - "action": "CARVE_RIGHT" - }, - { - "x": -41.67169161359918, - "y": -998.461083215325, - "rotation": 0.32993399307890364, - "action": "CARVE_RIGHT" - }, - { - "x": -40.77277001131409, - "y": -1001.3943175016202, - "rotation": 0.3857845291427222, - "action": "CARVE_RIGHT" - }, - { - "x": -39.74234889394554, - "y": -1004.2107748289867, - "rotation": 0.4416350652065408, - "action": "CARVE_RIGHT" - }, - { - "x": -38.58031760482589, - "y": -1006.9095936162519, - "rotation": 0.49748560127035935, - "action": "CARVE_RIGHT" - }, - { - "x": -37.28664354317305, - "y": -1009.4899864540147, - "rotation": 0.5533361373341779, - "action": "CARVE_RIGHT" - }, - { - "x": -35.86137190352663, - "y": -1011.951239858638, - "rotation": 0.6091866733979964, - "action": "CARVE_RIGHT" - }, - { - "x": -34.304625415999126, - "y": -1014.292714027008, - "rotation": 0.6650372094618149, - "action": "CARVE_RIGHT" - }, - { - "x": -32.61660408733955, - "y": -1016.513842592057, - "rotation": 0.7208877455256334, - "action": "CARVE_RIGHT" - }, - { - "x": -30.797584942807237, - "y": -1018.6141323790497, - "rotation": 0.7767382815894519, - "action": "CARVE_RIGHT" - }, - { - "x": -28.847921768853187, - "y": -1020.5931631626266, - "rotation": 0.8325888176532704, - "action": "CARVE_RIGHT" - }, - { - "x": -26.76804485660675, - "y": -1022.4505874246074, - "rotation": 0.8884393537170889, - "action": "CARVE_RIGHT" - }, - { - "x": -24.558460746165043, - "y": -1024.1861301125473, - "rotation": 0.9442898897809074, - "action": "CARVE_RIGHT" - }, - { - "x": -22.219751971682804, - "y": -1025.7995883990473, - "rotation": 1.000140425844726, - "action": "CARVE_RIGHT" - }, - { - "x": -19.75257680726022, - "y": -1027.2908314418148, - "rotation": 1.0559909619085446, - "action": "CARVE_RIGHT" - }, - { - "x": -17.15766901362636, - "y": -1028.6598001444722, - "rotation": 1.1118414979723632, - "action": "CARVE_RIGHT" - }, - { - "x": -14.435837585615829, - "y": -1029.9065069181122, - "rotation": 1.1676920340361818, - "action": "CARVE_RIGHT" - }, - { - "x": -11.587966500436224, - "y": -1031.0310354435958, - "rotation": 1.2235425701000004, - "action": "CARVE_RIGHT" - }, - { - "x": -8.615014466724057, - "y": -1032.033540434593, - "rotation": 1.279393106163819, - "action": "CARVE_RIGHT" - }, - { - "x": -5.518014674386754, - "y": -1032.9142474013624, - "rotation": 1.3352436422276377, - "action": "NOTHING" - }, - { - "x": -2.091553802440998, - "y": -1033.4837228386127, - "rotation": 1.331752983723649, - "action": "NOTHING" - }, - { - "x": 1.3203434172697035, - "y": -1034.0605702688201, - "rotation": 1.3282623252196604, - "action": "NOTHING" - }, - { - "x": 4.717762752371613, - "y": -1034.644772226358, - "rotation": 1.3247716667156717, - "action": "NOTHING" - }, - { - "x": 8.100789383766397, - "y": -1035.2363116339916, - "rotation": 1.321281008211683, - "action": "NOTHING" - }, - { - "x": 11.469507907468708, - "y": -1035.8351718015624, - "rotation": 1.3177903497076944, - "action": "NOTHING" - }, - { - "x": 14.824002336438232, - "y": -1036.4413364246795, - "rotation": 1.3142996912037057, - "action": "NOTHING" - }, - { - "x": 18.164356102406238, - "y": -1037.0547895834131, - "rotation": 1.310809032699717, - "action": "NOTHING" - }, - { - "x": 21.490652057696646, - "y": -1037.6755157409923, - "rotation": 1.3073183741957284, - "action": "NOTHING" - }, - { - "x": 24.80297247704161, - "y": -1038.3034997425073, - "rotation": 1.3038277156917397, - "action": "NOTHING" - }, - { - "x": 28.10139905939165, - "y": -1038.9387268136163, - "rotation": 1.300337057187751, - "action": "NOTHING" - }, - { - "x": 31.38601292972034, - "y": -1039.5811825592555, - "rotation": 1.2968463986837624, - "action": "NOTHING" - }, - { - "x": 34.65689464082359, - "y": -1040.2308529623533, - "rotation": 1.2933557401797737, - "action": "NOTHING" - }, - { - "x": 37.91412417511347, - "y": -1040.8877243825495, - "rotation": 1.289865081675785, - "action": "NOTHING" - }, - { - "x": 41.157780946406724, - "y": -1041.5517835549174, - "rotation": 1.2863744231717964, - "action": "NOTHING" - }, - { - "x": 44.387943801707806, - "y": -1042.2230175886905, - "rotation": 1.2828837646678077, - "action": "NOTHING" - }, - { - "x": 47.604691022986636, - "y": -1042.901413965993, - "rotation": 1.279393106163819, - "action": "NOTHING" - }, - { - "x": 50.80810032895097, - "y": -1043.5869605405749, - "rotation": 1.2759024476598304, - "action": "NOTHING" - }, - { - "x": 53.99824887681345, - "y": -1044.2796455365499, - "rotation": 1.2724117891558417, - "action": "NOTHING" - }, - { - "x": 57.175213264053326, - "y": -1044.9794575471385, - "rotation": 1.268921130651853, - "action": "NOTHING" - }, - { - "x": 60.33906953017292, - "y": -1045.6863855334148, - "rotation": 1.2654304721478644, - "action": "NOTHING" - }, - { - "x": 63.489893158448744, - "y": -1046.4004188230563, - "rotation": 1.2619398136438758, - "action": "NOTHING" - }, - { - "x": 66.6277590776774, - "y": -1047.1215471090993, - "rotation": 1.258449155139887, - "action": "CARVE_LEFT" - }, - { - "x": 69.3228998155022, - "y": -1048.2477621601909, - "rotation": 1.2025986190760685, - "action": "CARVE_LEFT" - }, - { - "x": 71.88997520710133, - "y": -1049.4884710536548, - "rotation": 1.1467480830122498, - "action": "CARVE_LEFT" - }, - { - "x": 74.32977854526226, - "y": -1050.8436961387538, - "rotation": 1.0908975469484312, - "action": "CARVE_LEFT" - }, - { - "x": 76.64302343757515, - "y": -1052.3135316551416, - "rotation": 1.0350470108846126, - "action": "CARVE_LEFT" - }, - { - "x": 78.8303440708768, - "y": -1053.898143492738, - "rotation": 0.9791964748207941, - "action": "CARVE_LEFT" - }, - { - "x": 80.89229547487035, - "y": -1055.597768952355, - "rotation": 0.9233459387569756, - "action": "CARVE_LEFT" - }, - { - "x": 82.82935378492327, - "y": -1057.4127165070727, - "rotation": 0.8674954026931571, - "action": "CARVE_LEFT" - }, - { - "x": 84.64191650404612, - "y": -1059.343365564361, - "rotation": 0.8116448666293385, - "action": "CARVE_LEFT" - }, - { - "x": 86.33030276405448, - "y": -1061.3901662289466, - "rotation": 0.75579433056552, - "action": "CARVE_LEFT" - }, - { - "x": 87.89475358591652, - "y": -1063.553639066422, - "rotation": 0.6999437945017015, - "action": "CARVE_LEFT" - }, - { - "x": 89.33543213928868, - "y": -1065.8343748675945, - "rotation": 0.644093258437883, - "action": "CARVE_LEFT" - }, - { - "x": 90.65242400124188, - "y": -1068.233034413574, - "rotation": 0.5882427223740645, - "action": "CARVE_LEFT" - }, - { - "x": 91.84573741418055, - "y": -1070.7503482415946, - "rotation": 0.532392186310246, - "action": "CARVE_LEFT" - }, - { - "x": 92.91530354295716, - "y": -1073.387116411572, - "rotation": 0.4765416502464274, - "action": "CARVE_LEFT" - }, - { - "x": 93.86097673118451, - "y": -1076.1442082733895, - "rotation": 0.42069111418260885, - "action": "CARVE_LEFT" - }, - { - "x": 94.68253475674804, - "y": -1079.0225622349155, - "rotation": 0.3648405781187903, - "action": "CARVE_LEFT" - }, - { - "x": 95.37967908652091, - "y": -1082.023185530747, - "rotation": 0.3089900420549717, - "action": "CARVE_LEFT" - }, - { - "x": 95.95203513028392, - "y": -1085.1471539916763, - "rotation": 0.25313950599115315, - "action": "CARVE_LEFT" - }, - { - "x": 96.39915249385278, - "y": -1088.3956118148826, - "rotation": 0.1972889699273346, - "action": "CARVE_LEFT" - }, - { - "x": 96.72050523141517, - "y": -1091.7697713348425, - "rotation": 0.14143843386351607, - "action": "CARVE_LEFT" - }, - { - "x": 96.9154920970798, - "y": -1095.270912794959, - "rotation": 0.08558789779969753, - "action": "CARVE_LEFT" - }, - { - "x": 96.98343679564002, - "y": -1098.900384119906, - "rotation": 0.02973736173587898, - "action": "CARVE_LEFT" - }, - { - "x": 96.92359951478898, - "y": -1102.54808224797, - "rotation": 6.257072132851647, - "action": "CARVE_LEFT" - }, - { - "x": 96.73527852183379, - "y": -1106.0867604443015, - "rotation": 6.201221596787828, - "action": "CARVE_LEFT" - }, - { - "x": 96.41785211218813, - "y": -1109.5150715236682, - "rotation": 6.14537106072401, - "action": "CARVE_LEFT" - }, - { - "x": 95.97077834264158, - "y": -1112.8317440827957, - "rotation": 6.089520524660191, - "action": "CARVE_LEFT" - }, - { - "x": 95.3935947654624, - "y": -1116.0355822493443, - "rotation": 6.0336699885963725, - "action": "CARVE_LEFT" - }, - { - "x": 94.68591816333125, - "y": -1119.1254654316674, - "rotation": 5.977819452532554, - "action": "CARVE_LEFT" - }, - { - "x": 93.84744428510348, - "y": -1122.1003480693487, - "rotation": 5.921968916468735, - "action": "CARVE_LEFT" - }, - { - "x": 92.87794758239728, - "y": -1124.9592593845161, - "rotation": 5.866118380404917, - "action": "CARVE_LEFT" - }, - { - "x": 91.77728094700555, - "y": -1127.7013031339316, - "rotation": 5.810267844341098, - "action": "CARVE_LEFT" - }, - { - "x": 90.5453754491286, - "y": -1130.3256573618505, - "rotation": 5.754417308277279, - "action": "CARVE_LEFT" - }, - { - "x": 89.18224007642559, - "y": -1132.8315741536537, - "rotation": 5.698566772213461, - "action": "CARVE_LEFT" - }, - { - "x": 87.68796147388204, - "y": -1135.2183793902445, - "rotation": 5.642716236149642, - "action": "CARVE_LEFT" - }, - { - "x": 86.06270368449103, - "y": -1137.4854725032135, - "rotation": 5.5868657000858235, - "action": "CARVE_LEFT" - }, - { - "x": 84.3067078907456, - "y": -1139.632326230764, - "rotation": 5.531015164022005, - "action": "NOTHING" - }, - { - "x": 82.36385363753773, - "y": -1141.6077218193977, - "rotation": 5.534505822525993, - "action": "NOTHING" - }, - { - "x": 80.42923713857446, - "y": -1143.5923466807196, - "rotation": 5.537996481029982, - "action": "NOTHING" - }, - { - "x": 78.50284432627811, - "y": -1145.5862304515554, - "rotation": 5.54148713953397, - "action": "NOTHING" - }, - { - "x": 76.58466149437363, - "y": -1147.5894029966141, - "rotation": 5.544977798037959, - "action": "NOTHING" - }, - { - "x": 74.67467529673003, - "y": -1149.6018944076825, - "rotation": 5.548468456541947, - "action": "NOTHING" - }, - { - "x": 72.7728727462053, - "y": -1151.6237350028211, - "rotation": 5.5519591150459355, - "action": "NOTHING" - }, - { - "x": 70.87924121349488, - "y": -1153.6549553255636, - "rotation": 5.555449773549924, - "action": "NOTHING" - }, - { - "x": 68.99376842598366, - "y": -1155.695586144118, - "rotation": 5.558940432053912, - "action": "NOTHING" - }, - { - "x": 67.11644246660146, - "y": -1157.7456584505715, - "rotation": 5.562431090557901, - "action": "NOTHING" - }, - { - "x": 65.24725177268198, - "y": -1159.8052034600971, - "rotation": 5.565921749061889, - "action": "NOTHING" - }, - { - "x": 63.3861851348253, - "y": -1161.8742526101628, - "rotation": 5.569412407565878, - "action": "NOTHING" - }, - { - "x": 61.53323169576381, - "y": -1163.9528375597436, - "rotation": 5.572903066069866, - "action": "NOTHING" - }, - { - "x": 59.68838094923159, - "y": -1166.0409901885362, - "rotation": 5.576393724573855, - "action": "NOTHING" - }, - { - "x": 57.85162273883728, - "y": -1168.1387425961757, - "rotation": 5.579884383077843, - "action": "NOTHING" - }, - { - "x": 56.02294725694034, - "y": -1170.2461271014558, - "rotation": 5.5833750415818315, - "action": "CARVE_RIGHT" - }, - { - "x": 54.5076157234131, - "y": -1172.6458342784783, - "rotation": 5.63922557764565, - "action": "CARVE_RIGHT" - }, - { - "x": 53.122642186384816, - "y": -1175.1691738835268, - "rotation": 5.695076113709469, - "action": "CARVE_RIGHT" - }, - { - "x": 51.86798569938157, - "y": -1177.8168473434177, - "rotation": 5.750926649773287, - "action": "CARVE_RIGHT" - }, - { - "x": 50.74368251561458, - "y": -1180.5896257178067, - "rotation": 5.806777185837106, - "action": "CARVE_RIGHT" - }, - { - "x": 49.74984583126168, - "y": -1183.4883494661076, - "rotation": 5.862627721900925, - "action": "CARVE_RIGHT" - }, - { - "x": 48.88666552954991, - "y": -1186.5139282151408, - "rotation": 5.918478257964743, - "action": "CARVE_RIGHT" - }, - { - "x": 48.15440792563678, - "y": -1189.66734052751, - "rotation": 5.974328794028562, - "action": "CARVE_RIGHT" - }, - { - "x": 47.55341551228788, - "y": -1192.9496336707052, - "rotation": 6.0301793300923805, - "action": "CARVE_RIGHT" - }, - { - "x": 47.084106706348315, - "y": -1196.3619233869283, - "rotation": 6.086029866156199, - "action": "CARVE_RIGHT" - }, - { - "x": 46.74697559600579, - "y": -1199.9053936636417, - "rotation": 6.141880402220018, - "action": "CARVE_RIGHT" - }, - { - "x": 46.54259168884274, - "y": -1203.5812965048342, - "rotation": 6.197730938283836, - "action": "CARVE_RIGHT" - }, - { - "x": 46.471599660675345, - "y": -1207.3909517030058, - "rotation": 6.253581474347655, - "action": "CARVE_RIGHT" - }, - { - "x": 46.5347077072643, - "y": -1211.2181675201516, - "rotation": 0.02624670323188738, - "action": "CARVE_RIGHT" - }, - { - "x": 46.73258580899022, - "y": -1214.9300845669818, - "rotation": 0.08209723929570592, - "action": "CARVE_RIGHT" - }, - { - "x": 47.065824037092106, - "y": -1218.5253860937771, - "rotation": 0.13794777535952446, - "action": "CARVE_RIGHT" - }, - { - "x": 47.53493282000167, - "y": -1222.002831020127, - "rotation": 0.193798311423343, - "action": "CARVE_RIGHT" - }, - { - "x": 48.14034320884546, - "y": -1225.3612536842788, - "rotation": 0.24964884748716154, - "action": "CARVE_RIGHT" - }, - { - "x": 48.88240714211717, - "y": -1228.5995635932695, - "rotation": 0.3054993835509801, - "action": "NOTHING" - }, - { - "x": 49.698986093861976, - "y": -1231.7760270401848, - "rotation": 0.30200872504699144, - "action": "NOTHING" - }, - { - "x": 50.5076001110197, - "y": -1234.9670431462853, - "rotation": 0.2985180665430028, - "action": "NOTHING" - }, - { - "x": 51.30822056675008, - "y": -1238.1726671402719, - "rotation": 0.2950274080390141, - "action": "NOTHING" - }, - { - "x": 52.10081861301862, - "y": -1241.392954383849, - "rotation": 0.29153674953502545, - "action": "NOTHING" - }, - { - "x": 52.88536518132144, - "y": -1244.6279603712328, - "rotation": 0.2880460910310368, - "action": "NOTHING" - }, - { - "x": 53.661830983407974, - "y": -1247.8777407286618, - "rotation": 0.2845554325270481, - "action": "NOTHING" - }, - { - "x": 54.43018651200134, - "y": -1251.1423512139074, - "rotation": 0.28106477402305946, - "action": "NOTHING" - }, - { - "x": 55.190402041516556, - "y": -1254.4218477157876, - "rotation": 0.2775741155190708, - "action": "NOTHING" - }, - { - "x": 55.94244762877647, - "y": -1257.7162862536823, - "rotation": 0.27408345701508213, - "action": "NOTHING" - }, - { - "x": 56.68629311372553, - "y": -1261.0257229770486, - "rotation": 0.27059279851109347, - "action": "NOTHING" - }, - { - "x": 57.42190812014132, - "y": -1264.3502141649399, - "rotation": 0.2671021400071048, - "action": "NOTHING" - }, - { - "x": 58.14926205634386, - "y": -1267.6898162255245, - "rotation": 0.26361148150311614, - "action": "NOTHING" - }, - { - "x": 58.868324115902794, - "y": -1271.0445856956078, - "rotation": 0.2601208229991275, - "action": "NOTHING" - }, - { - "x": 59.57906327834231, - "y": -1274.4145792401544, - "rotation": 0.2566301644951388, - "action": "NOTHING" - }, - { - "x": 60.281448309843924, - "y": -1277.7998536518126, - "rotation": 0.25313950599115015, - "action": "NOTHING" - }, - { - "x": 60.975447763947045, - "y": -1281.2004658504404, - "rotation": 0.24964884748716148, - "action": "NOTHING" - }, - { - "x": 61.66102998224743, - "y": -1284.6164728826334, - "rotation": 0.24615818898317282, - "action": "NOTHING" - }, - { - "x": 62.33816309509341, - "y": -1288.047931921253, - "rotation": 0.24266753047918416, - "action": "NOTHING" - }, - { - "x": 63.00681502228002, - "y": -1291.4949002649576, - "rotation": 0.2391768719751955, - "action": "NOTHING" - }, - { - "x": 63.66695347374096, - "y": -1294.9574353377352, - "rotation": 0.23568621347120683, - "action": "NOTHING" - }, - { - "x": 64.31854595023835, - "y": -1298.4355946884364, - "rotation": 0.23219555496721817, - "action": "NOTHING" - }, - { - "x": 64.96155974405043, - "y": -1301.92943599031, - "rotation": 0.2287048964632295, - "action": "NOTHING" - }, - { - "x": 65.59596193965714, - "y": -1305.4390170405397, - "rotation": 0.22521423795924084, - "action": "NOTHING" - }, - { - "x": 66.22171941442348, - "y": -1308.9643957597832, - "rotation": 0.22172357945525217, - "action": "NOTHING" - }, - { - "x": 66.8387988392808, - "y": -1312.5056301917111, - "rotation": 0.2182329209512635, - "action": "NOTHING" - }, - { - "x": 67.44716667940604, - "y": -1316.062778502549, - "rotation": 0.21474226244727485, - "action": "NOTHING" - }, - { - "x": 68.04678919489876, - "y": -1319.6358989806201, - "rotation": 0.21125160394328618, - "action": "NOTHING" - }, - { - "x": 68.63763244145618, - "y": -1323.2250500358903, - "rotation": 0.20776094543929752, - "action": "NOTHING" - }, - { - "x": 69.21966227104595, - "y": -1326.8302901995132, - "rotation": 0.20427028693530885, - "action": "NOTHING" - }, - { - "x": 69.79284433257709, - "y": -1330.4516781233785, - "rotation": 0.2007796284313202, - "action": "NOTHING" - }, - { - "x": 70.3571440725686, - "y": -1334.089272579661, - "rotation": 0.19728896992733153, - "action": "NOTHING" - }, - { - "x": 70.91252673581617, - "y": -1337.7431324603701, - "rotation": 0.19379831142334286, - "action": "NOTHING" - }, - { - "x": 71.45895736605674, - "y": -1341.4133167769035, - "rotation": 0.1903076529193542, - "action": "NOTHING" - }, - { - "x": 71.99640080663096, - "y": -1345.099884659599, - "rotation": 0.18681699441536553, - "action": "NOTHING" - }, - { - "x": 72.52482170114374, - "y": -1348.8028953572905, - "rotation": 0.18332633591137687, - "action": "NOTHING" - }, - { - "x": 73.04418449412259, - "y": -1352.5224082368645, - "rotation": 0.1798356774073882, - "action": "NOTHING" - }, - { - "x": 73.55445343167402, - "y": -1356.2584827828173, - "rotation": 0.17634501890339954, - "action": "CARVE_LEFT" - }, - { - "x": 73.86885713080402, - "y": -1360.184081773976, - "rotation": 0.120494482839581, - "action": "CARVE_LEFT" - }, - { - "x": 74.03788698172032, - "y": -1364.2531801704208, - "rotation": 0.06464394677576246, - "action": "CARVE_LEFT" - }, - { - "x": 74.06093217367517, - "y": -1368.4670679693495, - "rotation": 0.008793410711943915, - "action": "CARVE_LEFT" - }, - { - "x": 73.93734347714313, - "y": -1372.5969427584328, - "rotation": 6.236128181827712, - "action": "CARVE_LEFT" - }, - { - "x": 73.66654207978075, - "y": -1376.5988229451814, - "rotation": 6.180277645763893, - "action": "CARVE_LEFT" - }, - { - "x": 73.24802874895785, - "y": -1380.4714788268586, - "rotation": 6.124427109700075, - "action": "CARVE_LEFT" - }, - { - "x": 72.68138356650056, - "y": -1384.2137560586646, - "rotation": 6.068576573636256, - "action": "CARVE_LEFT" - }, - { - "x": 71.9662656642632, - "y": -1387.824575404099, - "rotation": 6.012726037572437, - "action": "NOTHING" - }, - { - "x": 71.18070662374815, - "y": -1391.3769199520475, - "rotation": 6.016216696076426, - "action": "NOTHING" - }, - { - "x": 70.40419098477474, - "y": -1394.9444162941088, - "rotation": 6.019707354580414, - "action": "NOTHING" - }, - { - "x": 69.63674597031186, - "y": -1398.5271193577169, - "rotation": 6.023198013084403, - "action": "NOTHING" - }, - { - "x": 68.87839903042297, - "y": -1402.125084206276, - "rotation": 6.026688671588391, - "action": "NOTHING" - }, - { - "x": 68.12917784152052, - "y": -1405.7383660386558, - "rotation": 6.03017933009238, - "action": "NOTHING" - }, - { - "x": 67.38911030562265, - "y": -1409.3670201886894, - "rotation": 6.033669988596368, - "action": "NOTHING" - }, - { - "x": 66.6582245496122, - "y": -1413.0111021246707, - "rotation": 6.0371606471003565, - "action": "NOTHING" - }, - { - "x": 65.93654892449793, - "y": -1416.6706674488557, - "rotation": 6.040651305604345, - "action": "NOTHING" - }, - { - "x": 65.22411200467818, - "y": -1420.3457718969642, - "rotation": 6.044141964108333, - "action": "NOTHING" - }, - { - "x": 64.52094258720666, - "y": -1424.0364713376835, - "rotation": 6.047632622612322, - "action": "NOTHING" - }, - { - "x": 63.82706969106065, - "y": -1427.742821772174, - "rotation": 6.05112328111631, - "action": "NOTHING" - }, - { - "x": 63.142522556411336, - "y": -1431.464879333576, - "rotation": 6.054613939620299, - "action": "NOTHING" - }, - { - "x": 62.46733064389652, - "y": -1435.2027002865177, - "rotation": 6.058104598124287, - "action": "NOTHING" - }, - { - "x": 61.80152363389549, - "y": -1438.9563410266267, - "rotation": 6.061595256628276, - "action": "NOTHING" - }, - { - "x": 61.14513142580624, - "y": -1442.7258580800406, - "rotation": 6.065085915132264, - "action": "NOTHING" - }, - { - "x": 60.498184137324834, - "y": -1446.5113081029215, - "rotation": 6.0685765736362525, - "action": "NOTHING" - }, - { - "x": 59.860712103727046, - "y": -1450.3127478809706, - "rotation": 6.072067232140241, - "action": "NOTHING" - }, - { - "x": 59.23274587715224, - "y": -1454.1302343289449, - "rotation": 6.075557890644229, - "action": "CARVE_RIGHT" - }, - { - "x": 58.8189204017775, - "y": -1458.1532728011832, - "rotation": 6.131408426708048, - "action": "CARVE_RIGHT" - }, - { - "x": 58.55689856100412, - "y": -1462.3248722280687, - "rotation": 6.187258962771867, - "action": "CARVE_RIGHT" - }, - { - "x": 58.44721543515003, - "y": -1466.6462547159224, - "rotation": 6.243109498835685, - "action": "CARVE_RIGHT" - }, - { - "x": 58.49047730989602, - "y": -1471.03817011729, - "rotation": 0.015774727719917614, - "action": "CARVE_RIGHT" - }, - { - "x": 58.687274366157766, - "y": -1475.296185822577, - "rotation": 0.07162526378373615, - "action": "CARVE_RIGHT" - }, - { - "x": 59.03811718111786, - "y": -1479.4190617521933, - "rotation": 0.1274757998475547, - "action": "CARVE_RIGHT" - }, - { - "x": 59.54343699353187, - "y": -1483.405633206363, - "rotation": 0.18332633591137323, - "action": "CARVE_RIGHT" - }, - { - "x": 60.20358596820535, - "y": -1487.2548106154425, - "rotation": 0.23917687197519177, - "action": "CARVE_RIGHT" - }, - { - "x": 61.01883745964437, - "y": -1490.9655792910146, - "rotation": 0.29502740803901034, - "action": "CARVE_RIGHT" - }, - { - "x": 61.989386274881944, - "y": -1494.5369991777607, - "rotation": 0.3508779441028289, - "action": "CARVE_RIGHT" - }, - { - "x": 63.11534893548298, - "y": -1497.9682046061023, - "rotation": 0.4067284801666475, - "action": "CARVE_RIGHT" - }, - { - "x": 64.39676393873003, - "y": -1501.2584040456152, - "rotation": 0.46257901623046604, - "action": "CARVE_RIGHT" - }, - { - "x": 65.83359201799247, - "y": -1504.4068798592104, - "rotation": 0.5184295522942846, - "action": "CARVE_RIGHT" - }, - { - "x": 67.42571640228147, - "y": -1507.4129880580813, - "rotation": 0.5742800883581031, - "action": "CARVE_RIGHT" - }, - { - "x": 69.17294307499314, - "y": -1510.2761580574138, - "rotation": 0.6301306244219216, - "action": "CARVE_RIGHT" - }, - { - "x": 71.07500103184252, - "y": -1512.9958924328587, - "rotation": 0.6859811604857401, - "action": "CARVE_RIGHT" - }, - { - "x": 73.13154253799048, - "y": -1515.5717666777616, - "rotation": 0.7418316965495586, - "action": "CARVE_RIGHT" - }, - { - "x": 75.34214338436637, - "y": -1518.0034289611501, - "rotation": 0.7976822326133771, - "action": "CARVE_RIGHT" - }, - { - "x": 77.70630314318844, - "y": -1520.2905998864755, - "rotation": 0.8535327686771956, - "action": "CARVE_RIGHT" - }, - { - "x": 80.22344542268473, - "y": -1522.4330722511058, - "rotation": 0.9093833047410141, - "action": "CARVE_RIGHT" - }, - { - "x": 82.89291812101675, - "y": -1524.4307108065696, - "rotation": 0.9652338408048327, - "action": "CARVE_RIGHT" - }, - { - "x": 85.71399367940816, - "y": -1526.2834520195463, - "rotation": 1.0210843768686513, - "action": "CARVE_RIGHT" - }, - { - "x": 88.68586933448117, - "y": -1527.991303833603, - "rotation": 1.07693491293247, - "action": "CARVE_RIGHT" - }, - { - "x": 91.80766736980276, - "y": -1529.5543454316735, - "rotation": 1.1327854489962885, - "action": "CARVE_RIGHT" - }, - { - "x": 95.07843536664325, - "y": -1530.9727269992782, - "rotation": 1.1886359850601071, - "action": "CARVE_RIGHT" - }, - { - "x": 98.49714645394945, - "y": -1532.2466694884836, - "rotation": 1.2444865211239258, - "action": "CARVE_RIGHT" - }, - { - "x": 102.06269955753501, - "y": -1533.3764643825969, - "rotation": 1.3003370571877444, - "action": "CARVE_RIGHT" - }, - { - "x": 105.7739196484899, - "y": -1534.362473461596, - "rotation": 1.356187593251563, - "action": "NOTHING" - }, - { - "x": 109.8793133427787, - "y": -1534.975366946099, - "rotation": 1.3526969347475744, - "action": "NOTHING" - }, - { - "x": 113.96662409250911, - "y": -1535.5969308786887, - "rotation": 1.3492062762435857, - "action": "NOTHING" - }, - { - "x": 118.03595250013461, - "y": -1536.2271389581595, - "rotation": 1.345715617739597, - "action": "NOTHING" - }, - { - "x": 122.08739853256552, - "y": -1536.8659653046489, - "rotation": 1.3422249592356084, - "action": "NOTHING" - }, - { - "x": 126.12106152315795, - "y": -1537.513384458213, - "rotation": 1.3387343007316197, - "action": "NOTHING" - }, - { - "x": 130.1370401736968, - "y": -1538.1693713774084, - "rotation": 1.335243642227631, - "action": "NOTHING" - }, - { - "x": 134.13543255637276, - "y": -1538.8339014378757, - "rotation": 1.3317529837236424, - "action": "NOTHING" - }, - { - "x": 138.1163361157534, - "y": -1539.5069504309304, - "rotation": 1.3282623252196537, - "action": "NOTHING" - }, - { - "x": 142.07984767074836, - "y": -1540.1884945621564, - "rotation": 1.324771666715665, - "action": "NOTHING" - }, - { - "x": 146.02606341656855, - "y": -1540.8785104500046, - "rotation": 1.3212810082116764, - "action": "NOTHING" - }, - { - "x": 149.9550789266796, - "y": -1541.5769751243959, - "rotation": 1.3177903497076877, - "action": "NOTHING" - }, - { - "x": 153.8669891547493, - "y": -1542.283866025328, - "rotation": 1.314299691203699, - "action": "NOTHING" - }, - { - "x": 157.7618884365893, - "y": -1542.9991610014881, - "rotation": 1.3108090326997104, - "action": "NOTHING" - }, - { - "x": 161.63987049209092, - "y": -1543.7228383088677, - "rotation": 1.3073183741957217, - "action": "NOTHING" - }, - { - "x": 165.50102842715515, - "y": -1544.4548766093842, - "rotation": 1.303827715691733, - "action": "NOTHING" - }, - { - "x": 169.34545473561684, - "y": -1545.1952549695047, - "rotation": 1.3003370571877444, - "action": "NOTHING" - }, - { - "x": 173.17324130116313, - "y": -1545.9439528588762, - "rotation": 1.2968463986837557, - "action": "NOTHING" - }, - { - "x": 176.9844793992461, - "y": -1546.700950148958, - "rotation": 1.293355740179767, - "action": "NOTHING" - }, - { - "x": 180.7792596989897, - "y": -1547.4662271116604, - "rotation": 1.2898650816757784, - "action": "CARVE_LEFT" - }, - { - "x": 184.04141602277275, - "y": -1548.717779457169, - "rotation": 1.2340145456119598, - "action": "CARVE_LEFT" - }, - { - "x": 187.15145989820533, - "y": -1550.104045601036, - "rotation": 1.1781640095481412, - "action": "CARVE_LEFT" - }, - { - "x": 190.11034429505534, - "y": -1551.6249051581665, - "rotation": 1.1223134734843225, - "action": "CARVE_LEFT" - }, - { - "x": 192.9189419223789, - "y": -1553.2803101539537, - "rotation": 1.066462937420504, - "action": "CARVE_LEFT" - }, - { - "x": 195.57804549484382, - "y": -1555.0702847824452, - "rotation": 1.0106124013566853, - "action": "CARVE_LEFT" - }, - { - "x": 198.0883679982231, - "y": -1556.994925165267, - "rotation": 0.9547618652928668, - "action": "CARVE_LEFT" - }, - { - "x": 200.450542954061, - "y": -1559.0543991113, - "rotation": 0.8989113292290483, - "action": "CARVE_LEFT" - }, - { - "x": 202.66512468351397, - "y": -1561.2489458771108, - "rotation": 0.8430607931652297, - "action": "CARVE_LEFT" - }, - { - "x": 204.73258857036902, - "y": -1563.5788759281306, - "rotation": 0.7872102571014112, - "action": "CARVE_LEFT" - }, - { - "x": 206.6533313232422, - "y": -1566.044570700582, - "rotation": 0.7313597210375927, - "action": "CARVE_LEFT" - }, - { - "x": 208.4276712369592, - "y": -1568.6464823641513, - "rotation": 0.6755091849737742, - "action": "CARVE_LEFT" - }, - { - "x": 210.05584845312094, - "y": -1571.3851335854042, - "rotation": 0.6196586489099557, - "action": "CARVE_LEFT" - }, - { - "x": 211.53802521985625, - "y": -1574.2611172919421, - "rotation": 0.5638081128461372, - "action": "CARVE_LEFT" - }, - { - "x": 212.87428615076448, - "y": -1577.2750964372963, - "rotation": 0.5079575767823187, - "action": "CARVE_LEFT" - }, - { - "x": 214.06463848304998, - "y": -1580.4278037665597, - "rotation": 0.4521070407185001, - "action": "CARVE_LEFT" - }, - { - "x": 215.10901233485134, - "y": -1583.7200415827522, - "rotation": 0.39625650465468154, - "action": "CARVE_LEFT" - }, - { - "x": 216.0072609617674, - "y": -1587.152681513918, - "rotation": 0.340405968590863, - "action": "CARVE_LEFT" - }, - { - "x": 216.75916101258272, - "y": -1590.7266642809525, - "rotation": 0.2845554325270444, - "action": "CARVE_LEFT" - }, - { - "x": 217.3644127841949, - "y": -1594.4429994661575, - "rotation": 0.22870489646322587, - "action": "CARVE_LEFT" - }, - { - "x": 217.82264047574586, - "y": -1598.3027652825212, - "rotation": 0.17285436039940733, - "action": "CARVE_LEFT" - }, - { - "x": 218.13339244195973, - "y": -1602.307108343721, - "rotation": 0.11700382433558879, - "action": "CARVE_LEFT" - }, - { - "x": 218.29614144568987, - "y": -1606.4572434348486, - "rotation": 0.06115328827177024, - "action": "CARVE_LEFT" - }, - { - "x": 218.3102849096768, - "y": -1610.7544532838529, - "rotation": 0.0053027522079516914, - "action": "CARVE_LEFT" - }, - { - "x": 218.17518744217207, - "y": -1614.9485171469414, - "rotation": 6.232637523323719, - "action": "CARVE_LEFT" - }, - { - "x": 217.89028805347746, - "y": -1619.0119552014114, - "rotation": 6.1767869872599, - "action": "CARVE_LEFT" - }, - { - "x": 217.45510526885272, - "y": -1622.9435547714666, - "rotation": 6.120936451196082, - "action": "CARVE_LEFT" - }, - { - "x": 216.86923686347114, - "y": -1626.742178478025, - "rotation": 6.065085915132263, - "action": "CARVE_LEFT" - }, - { - "x": 216.13235959820312, - "y": -1630.4067639892808, - "rotation": 6.0092353790684445, - "action": "CARVE_LEFT" - }, - { - "x": 215.2442289562256, - "y": -1633.936323772044, - "rotation": 5.953384843004626, - "action": "CARVE_LEFT" - }, - { - "x": 214.2046788804548, - "y": -1637.329944843853, - "rotation": 5.897534306940807, - "action": "CARVE_LEFT" - }, - { - "x": 213.01362151179964, - "y": -1640.5867885258592, - "rotation": 5.841683770876989, - "action": "CARVE_LEFT" - }, - { - "x": 211.6710469282338, - "y": -1643.7060901964833, - "rotation": 5.78583323481317, - "action": "CARVE_LEFT" - }, - { - "x": 210.17702288468342, - "y": -1646.6871590458359, - "rotation": 5.729982698749351, - "action": "CARVE_LEFT" - }, - { - "x": 208.53169455372833, - "y": -1649.5293778309053, - "rotation": 5.674132162685533, - "action": "CARVE_LEFT" - }, - { - "x": 206.7352842671144, - "y": -1652.2322026315073, - "rotation": 5.618281626621714, - "action": "CARVE_LEFT" - }, - { - "x": 204.78809125807427, - "y": -1654.795162606995, - "rotation": 5.5624310905578955, - "action": "CARVE_LEFT" - }, - { - "x": 202.6904914044545, - "y": -1657.2178597537281, - "rotation": 5.506580554494077, - "action": "CARVE_LEFT" - }, - { - "x": 200.44293697264607, - "y": -1659.4999686632964, - "rotation": 5.450730018430258, - "action": "CARVE_LEFT" - }, - { - "x": 198.04595636231664, - "y": -1661.6412362814985, - "rotation": 5.39487948236644, - "action": "CARVE_LEFT" - }, - { - "x": 195.50015385194138, - "y": -1663.6414816680713, - "rotation": 5.339028946302621, - "action": "CARVE_LEFT" - }, - { - "x": 192.80620934513044, - "y": -1665.5005957571677, - "rotation": 5.283178410238802, - "action": "CARVE_LEFT" - }, - { - "x": 189.9648781177506, - "y": -1667.218541118583, - "rotation": 5.227327874174984, - "action": "CARVE_LEFT" - }, - { - "x": 186.97699056583852, - "y": -1668.7953517197247, - "rotation": 5.171477338111165, - "action": "CARVE_LEFT" - }, - { - "x": 183.84345195430345, - "y": -1670.2311326883248, - "rotation": 5.1156268020473465, - "action": "CARVE_LEFT" - }, - { - "x": 180.56524216641688, - "y": -1671.526060075893, - "rotation": 5.059776265983528, - "action": "NOTHING" - }, - { - "x": 176.93832523400977, - "y": -1672.4919756033169, - "rotation": 5.063266924487516, - "action": "NOTHING" - }, - { - "x": 173.32686538449568, - "y": -1673.4661303739065, - "rotation": 5.066757582991505, - "action": "NOTHING" - }, - { - "x": 169.73078188899947, - "y": -1674.4485114875465, - "rotation": 5.070248241495493, - "action": "NOTHING" - }, - { - "x": 166.14999459253434, - "y": -1675.4391064208778, - "rotation": 5.073738899999482, - "action": "NOTHING" - }, - { - "x": 162.58442391219685, - "y": -1676.4379030260122, - "rotation": 5.07722955850347, - "action": "NOTHING" - }, - { - "x": 159.03399083536763, - "y": -1677.4448895292528, - "rotation": 5.080720217007459, - "action": "NOTHING" - }, - { - "x": 155.4986169179172, - "y": -1678.4600545298165, - "rotation": 5.084210875511447, - "action": "NOTHING" - }, - { - "x": 151.97822428241744, - "y": -1679.483386998562, - "rotation": 5.0877015340154355, - "action": "NOTHING" - }, - { - "x": 148.47273561635834, - "y": -1680.5148762767217, - "rotation": 5.091192192519424, - "action": "NOTHING" - }, - { - "x": 144.98207417037014, - "y": -1681.5545120746367, - "rotation": 5.094682851023412, - "action": "NOTHING" - }, - { - "x": 141.50616375645083, - "y": -1682.6022844704967, - "rotation": 5.098173509527401, - "action": "NOTHING" - }, - { - "x": 138.044928746199, - "y": -1683.6581839090832, - "rotation": 5.101664168031389, - "action": "NOTHING" - }, - { - "x": 134.59829406905197, - "y": -1684.722201200518, - "rotation": 5.105154826535378, - "action": "NOTHING" - }, - { - "x": 131.16618521052936, - "y": -1685.7943275190135, - "rotation": 5.108645485039366, - "action": "NOTHING" - }, - { - "x": 127.74852821048181, - "y": -1686.874554401629, - "rotation": 5.1121361435433545, - "action": "NOTHING" - }, - { - "x": 124.34524966134502, - "y": -1687.9628737470302, - "rotation": 5.115626802047343, - "action": "NOTHING" - }, - { - "x": 120.95627670639914, - "y": -1689.0592778142525, - "rotation": 5.119117460551331, - "action": "NOTHING" - }, - { - "x": 117.5815370380333, - "y": -1690.1637592214674, - "rotation": 5.12260811905532, - "action": "NOTHING" - }, - { - "x": 114.22095889601545, - "y": -1691.276310944755, - "rotation": 5.126098777559308, - "action": "NOTHING" - }, - { - "x": 110.87447106576732, - "y": -1692.3969263168785, - "rotation": 5.129589436063297, - "action": "NOTHING" - }, - { - "x": 107.54200287664477, - "y": -1693.5255990260634, - "rotation": 5.133080094567285, - "action": "NOTHING" - }, - { - "x": 104.2234842002231, - "y": -1694.66232311478, - "rotation": 5.136570753071274, - "action": "CARVE_RIGHT" - }, - { - "x": 101.38553902988579, - "y": -1696.2392166649176, - "rotation": 5.192421289135092, - "action": "CARVE_RIGHT" - }, - { - "x": 98.69549744802042, - "y": -1697.949010656668, - "rotation": 5.248271825198911, - "action": "CARVE_RIGHT" - }, - { - "x": 96.15262121387052, - "y": -1699.7917783187554, - "rotation": 5.3041223612627295, - "action": "CARVE_RIGHT" - }, - { - "x": 93.75625163098425, - "y": -1701.7676646400757, - "rotation": 5.359972897326548, - "action": "CARVE_RIGHT" - }, - { - "x": 91.50580928313083, - "y": -1703.8768861299045, - "rotation": 5.415823433390367, - "action": "CARVE_RIGHT" - }, - { - "x": 89.4007937710403, - "y": -1706.119730578855, - "rotation": 5.471673969454185, - "action": "CARVE_RIGHT" - }, - { - "x": 87.44078344996406, - "y": -1708.4965568205862, - "rotation": 5.527524505518004, - "action": "CARVE_RIGHT" - }, - { - "x": 85.62543516805378, - "y": -1711.0077944942539, - "rotation": 5.583375041581823, - "action": "CARVE_RIGHT" - }, - { - "x": 83.95448400555618, - "y": -1713.6539438077086, - "rotation": 5.639225577645641, - "action": "CARVE_RIGHT" - }, - { - "x": 82.4277430148212, - "y": -1716.435575301433, - "rotation": 5.69507611370946, - "action": "CARVE_RIGHT" - }, - { - "x": 81.0451029611213, - "y": -1719.3533296132182, - "rotation": 5.7509266497732785, - "action": "CARVE_RIGHT" - }, - { - "x": 79.80653206427922, - "y": -1722.4079172435802, - "rotation": 5.806777185837097, - "action": "CARVE_RIGHT" - }, - { - "x": 78.712075741102, - "y": -1725.6001183219068, - "rotation": 5.862627721900916, - "action": "CARVE_RIGHT" - }, - { - "x": 77.76185634861861, - "y": -1728.9307823733402, - "rotation": 5.918478257964734, - "action": "CARVE_RIGHT" - }, - { - "x": 76.95607292811904, - "y": -1732.400828086389, - "rotation": 5.974328794028553, - "action": "CARVE_RIGHT" - }, - { - "x": 76.29500094999227, - "y": -1736.0112430812687, - "rotation": 6.030179330092372, - "action": "CARVE_RIGHT" - }, - { - "x": 75.77899205936073, - "y": -1739.7630836789676, - "rotation": 6.08602986615619, - "action": "CARVE_RIGHT" - }, - { - "x": 75.40847382250897, - "y": -1743.6574746710373, - "rotation": 6.141880402220009, - "action": "CARVE_RIGHT" - }, - { - "x": 75.18394947410404, - "y": -1747.6956090901042, - "rotation": 6.1977309382838275, - "action": "CARVE_RIGHT" - }, - { - "x": 75.10599766520532, - "y": -1751.8787479811015, - "rotation": 6.253581474347646, - "action": "CARVE_RIGHT" - }, - { - "x": 75.17526081414873, - "y": -1756.0792427438082, - "rotation": 0.0262467032318785, - "action": "CARVE_RIGHT" - }, - { - "x": 75.39234337039805, - "y": -1760.1514085574238, - "rotation": 0.08209723929569704, - "action": "CARVE_RIGHT" - }, - { - "x": 75.75777011996206, - "y": -1764.0939914901292, - "rotation": 0.13794777535951558, - "action": "CARVE_RIGHT" - }, - { - "x": 76.27198645090995, - "y": -1767.9058130467631, - "rotation": 0.19379831142333412, - "action": "CARVE_RIGHT" - }, - { - "x": 76.93535861805712, - "y": -1771.585769918943, - "rotation": 0.24964884748715266, - "action": "CARVE_RIGHT" - }, - { - "x": 77.74817400682377, - "y": -1775.1328337359623, - "rotation": 0.3054993835509712, - "action": "CARVE_RIGHT" - }, - { - "x": 78.71064139626878, - "y": -1778.5460508164658, - "rotation": 0.3613499196147898, - "action": "CARVE_RIGHT" - }, - { - "x": 79.82289122130138, - "y": -1781.8245419208956, - "rotation": 0.41720045567860836, - "action": "CARVE_RIGHT" - }, - { - "x": 81.08497583407298, - "y": -1784.9675020047102, - "rotation": 0.47305099174242693, - "action": "CARVE_RIGHT" - }, - { - "x": 82.49686976455182, - "y": -1787.9741999723706, - "rotation": 0.5289015278062454, - "action": "CARVE_RIGHT" - }, - { - "x": 84.05846998028261, - "y": -1790.8439784320942, - "rotation": 0.584752063870064, - "action": "NOTHING" - }, - { - "x": 85.7841987145342, - "y": -1793.5642258872972, - "rotation": 0.5812614053660753, - "action": "NOTHING" - }, - { - "x": 87.50054923605991, - "y": -1796.295637285815, - "rotation": 0.5777707468620866, - "action": "NOTHING" - }, - { - "x": 89.20752561656718, - "y": -1799.0382493231825, - "rotation": 0.574280088358098, - "action": "NOTHING" - }, - { - "x": 90.90513159670942, - "y": -1801.7920989003019, - "rotation": 0.5707894298541093, - "action": "NOTHING" - }, - { - "x": 92.59337058715589, - "y": -1804.5572231227047, - "rotation": 0.5672987713501206, - "action": "NOTHING" - }, - { - "x": 94.2722456696582, - "y": -1807.3336592998173, - "rotation": 0.563808112846132, - "action": "NOTHING" - }, - { - "x": 95.9417595981136, - "y": -1810.1214449442277, - "rotation": 0.5603174543421433, - "action": "NOTHING" - }, - { - "x": 97.601914799625, - "y": -1812.9206177709548, - "rotation": 0.5568267958381546, - "action": "NOTHING" - }, - { - "x": 99.25271337555772, - "y": -1815.7312156967205, - "rotation": 0.553336137334166, - "action": "NOTHING" - }, - { - "x": 100.89415710259298, - "y": -1818.5532768392243, - "rotation": 0.5498454788301773, - "action": "NOTHING" - }, - { - "x": 102.52624743377827, - "y": -1821.3868395164193, - "rotation": 0.5463548203261887, - "action": "NOTHING" - }, - { "x": 104.1489854995743, "y": -1824.231942245792, "rotation": 0.5428641618222, "action": "NOTHING" }, - { - "x": 105.76237210889893, - "y": -1827.088623743643, - "rotation": 0.5393735033182113, - "action": "NOTHING" - }, - { - "x": 107.36640775016782, - "y": -1829.9569229243712, - "rotation": 0.5358828448142227, - "action": "CARVE_LEFT" - }, - { - "x": 108.66047298924795, - "y": -1833.1152303840963, - "rotation": 0.4800323087504041, - "action": "CARVE_LEFT" - }, - { - "x": 109.80495814208717, - "y": -1836.415775741063, - "rotation": 0.4241817726865855, - "action": "CARVE_LEFT" - }, - { - "x": 110.79977290217434, - "y": -1839.8593799345347, - "rotation": 0.36833123662276696, - "action": "CARVE_LEFT" - }, - { - "x": 111.64475016101663, - "y": -1843.446933173415, - "rotation": 0.3124807005589484, - "action": "CARVE_LEFT" - }, - { - "x": 112.33964626368987, - "y": -1847.1793947042358, - "rotation": 0.2566301644951298, - "action": "CARVE_LEFT" - }, - { - "x": 112.88414126359115, - "y": -1851.0577925798725, - "rotation": 0.20077962843131128, - "action": "CARVE_LEFT" - }, - { - "x": 113.277839176396, - "y": -1855.0832234289828, - "rotation": 0.14492909236749274, - "action": "CARVE_LEFT" - }, - { - "x": 113.52026823322274, - "y": -1859.2568522261695, - "rotation": 0.0890785563036742, - "action": "CARVE_LEFT" - }, - { - "x": 113.61088113300609, - "y": -1863.5799120628635, - "rotation": 0.03322802023985565, - "action": "CARVE_LEFT" - }, - { - "x": 113.54906376162945, - "y": -1867.9386145834271, - "rotation": 6.260562791355623, - "action": "CARVE_LEFT" - }, - { - "x": 113.33423275791606, - "y": -1872.1638488552965, - "rotation": 6.204712255291804, - "action": "CARVE_LEFT" - }, - { - "x": 112.96588434292593, - "y": -1876.2543812222223, - "rotation": 6.148861719227986, - "action": "CARVE_LEFT" - }, - { - "x": 112.44359405471482, - "y": -1880.2090533876035, - "rotation": 6.093011183164167, - "action": "CARVE_LEFT" - }, - { - "x": 111.76701648392174, - "y": -1884.026782164866, - "rotation": 6.0371606471003485, - "action": "CARVE_LEFT" - }, - { - "x": 110.93588501018299, - "y": -1887.7065592286192, - "rotation": 5.98131011103653, - "action": "CARVE_LEFT" - }, - { - "x": 109.95001153936995, - "y": -1891.2474508665855, - "rotation": 5.925459574972711, - "action": "CARVE_LEFT" - }, - { - "x": 108.80928624164835, - "y": -1894.6485977323046, - "rotation": 5.869609038908893, - "action": "CARVE_LEFT" - }, - { - "x": 107.51367729035628, - "y": -1897.9092145986058, - "rotation": 5.813758502845074, - "action": "CARVE_LEFT" - }, - { - "x": 106.06323060169886, - "y": -1901.0285901118498, - "rotation": 5.757907966781255, - "action": "CARVE_LEFT" - }, - { - "x": 104.45806957525676, - "y": -1904.0060865469354, - "rotation": 5.702057430717437, - "action": "CARVE_LEFT" - }, - { - "x": 102.69839483530637, - "y": -1906.841139563069, - "rotation": 5.646206894653618, - "action": "CARVE_LEFT" - }, - { - "x": 100.78448397294909, - "y": -1909.5332579602957, - "rotation": 5.5903563585897995, - "action": "CARVE_LEFT" - }, - { - "x": 98.71669128904726, - "y": -1912.0820234367893, - "rotation": 5.534505822525981, - "action": "CARVE_LEFT" - }, - { - "x": 96.49544753796447, - "y": -1914.4870903468975, - "rotation": 5.478655286462162, - "action": "CARVE_LEFT" - }, - { - "x": 94.1212596721076, - "y": -1916.7481854599425, - "rotation": 5.422804750398344, - "action": "CARVE_LEFT" - }, - { - "x": 91.59471058726845, - "y": -1918.8651077197735, - "rotation": 5.366954214334525, - "action": "CARVE_LEFT" - }, - { - "x": 88.91645886876235, - "y": -1920.8377280050677, - "rotation": 5.311103678270706, - "action": "CARVE_LEFT" - }, - { "x": 86.0872385383614, "y": -1922.66598889038, "rotation": 5.255253142206888, "action": "NOTHING" }, - { - "x": 82.9570228723545, - "y": -1924.211734843432, - "rotation": 5.258743800710876, - "action": "NOTHING" - }, - { - "x": 79.84011191689721, - "y": -1925.7660406310138, - "rotation": 5.262234459214865, - "action": "NOTHING" - }, - { - "x": 76.73644840663302, - "y": -1927.3289092946686, - "rotation": 5.265725117718853, - "action": "NOTHING" - }, - { - "x": 73.64597557758842, - "y": -1928.9003442000208, - "rotation": 5.2692157762228415, - "action": "NOTHING" - }, - { "x": 70.568637165584, "y": -1930.4803490356546, "rotation": 5.27270643472683, "action": "NOTHING" }, - { - "x": 67.50437740465014, - "y": -1932.0689278119971, - "rotation": 5.276197093230818, - "action": "NOTHING" - }, - { - "x": 64.45314102544775, - "y": -1933.6660848602044, - "rotation": 5.279687751734807, - "action": "NOTHING" - }, - { - "x": 61.41487325369351, - "y": -1935.2718248310514, - "rotation": 5.283178410238795, - "action": "NOTHING" - }, - { - "x": 58.38951980859011, - "y": -1936.8861526938254, - "rotation": 5.286669068742784, - "action": "NOTHING" - }, - { - "x": 55.377026901261154, - "y": -1938.5090737352225, - "rotation": 5.290159727246772, - "action": "NOTHING" - }, - { - "x": 52.37734123319079, - "y": -1940.1405935582488, - "rotation": 5.293650385750761, - "action": "NOTHING" - }, - { - "x": 49.390409994668104, - "y": -1941.7807180811237, - "rotation": 5.297141044254749, - "action": "NOTHING" - }, - { - "x": 46.41618086323618, - "y": -1943.429453536187, - "rotation": 5.3006317027587375, - "action": "NOTHING" - }, - { - "x": 43.45460200214593, - "y": -1945.0868064688111, - "rotation": 5.304122361262726, - "action": "NOTHING" - }, - { - "x": 40.50562205881455, - "y": -1946.7527837363139, - "rotation": 5.307613019766714, - "action": "NOTHING" - }, - { - "x": 37.569190163288674, - "y": -1948.4273925068776, - "rotation": 5.311103678270703, - "action": "NOTHING" - }, - { - "x": 34.64525592671217, - "y": -1950.11064025847, - "rotation": 5.314594336774691, - "action": "NOTHING" - }, - { - "x": 31.733769439798596, - "y": -1951.802534777769, - "rotation": 5.31808499527868, - "action": "NOTHING" - }, - { - "x": 28.834681271308302, - "y": -1953.5030841590913, - "rotation": 5.321575653782668, - "action": "NOTHING" - }, - { - "x": 25.947942466530094, - "y": -1955.2122968033227, - "rotation": 5.325066312286657, - "action": "NOTHING" - }, - { - "x": 23.073504545767566, - "y": -1956.9301814168555, - "rotation": 5.328556970790645, - "action": "NOTHING" - }, - { - "x": 20.211319502829976, - "y": -1958.6567470105247, - "rotation": 5.3320476292946335, - "action": "NOTHING" - }, - { - "x": 17.361339803527724, - "y": -1960.3920028985515, - "rotation": 5.335538287798622, - "action": "NOTHING" - }, - { - "x": 14.52351838417238, - "y": -1962.1359586974875, - "rotation": 5.33902894630261, - "action": "NOTHING" - }, - { - "x": 11.697808650081274, - "y": -1963.8886243251638, - "rotation": 5.342519604806599, - "action": "CARVE_RIGHT" - }, - { - "x": 9.307007112819054, - "y": -1966.0415309614327, - "rotation": 5.398370140870417, - "action": "CARVE_RIGHT" - }, - { - "x": 7.067987179603879, - "y": -1968.3332771498008, - "rotation": 5.454220676934236, - "action": "CARVE_RIGHT" - }, - { - "x": 4.980272181302469, - "y": -1970.7641724440512, - "rotation": 5.510071212998055, - "action": "CARVE_RIGHT" - }, - { - "x": 3.0434641367664286, - "y": -1973.3345973799276, - "rotation": 5.565921749061873, - "action": "CARVE_RIGHT" - }, - { - "x": 1.2572434913954937, - "y": -1976.0450032377557, - "rotation": 5.621772285125692, - "action": "CARVE_RIGHT" - }, - { - "x": -0.3786311434838181, - "y": -1978.895911805809, - "rotation": 5.677622821189511, - "action": "CARVE_RIGHT" - }, - { - "x": -1.864323250426636, - "y": -1981.8879151444146, - "rotation": 5.733473357253329, - "action": "NOTHING" - }, - { - "x": -3.5056533699389574, - "y": -1984.7385876609183, - "rotation": 5.736964015757318, - "action": "NOTHING" - }, - { - "x": -5.137546086579086, - "y": -1987.600816682755, - "rotation": 5.740454674261306, - "action": "NOTHING" - }, - { - "x": -6.76000256287244, - "y": -1990.474640754756, - "rotation": 5.7439453327652945, - "action": "NOTHING" - }, - { - "x": -8.373023639584872, - "y": -1993.360098620624, - "rotation": 5.747435991269283, - "action": "NOTHING" - }, - { - "x": -9.976609836764192, - "y": -1996.2572292222187, - "rotation": 5.750926649773271, - "action": "NOTHING" - }, - { - "x": -11.570761354778508, - "y": -1999.16607169884, - "rotation": 5.75441730827726, - "action": "CARVE_RIGHT" - }, - { - "x": -12.854837666196163, - "y": -2002.365036135735, - "rotation": 5.8102678443410785, - "action": "CARVE_RIGHT" - }, - { - "x": -13.988236259445664, - "y": -2005.7072713942882, - "rotation": 5.866118380404897, - "action": "CARVE_RIGHT" - }, - { - "x": -14.970862425294053, - "y": -2009.193602448861, - "rotation": 5.921968916468716, - "action": "CARVE_RIGHT" - }, - { - "x": -15.802544664964046, - "y": -2012.8249235320422, - "rotation": 5.977819452532534, - "action": "CARVE_RIGHT" - }, - { - "x": -16.483034945649678, - "y": -2016.6021979026696, - "rotation": 6.033669988596353, - "action": "CARVE_RIGHT" - }, - { - "x": -17.01200895523431, - "y": -2020.5264576145742, - "rotation": 6.089520524660172, - "action": "CARVE_RIGHT" - }, - { - "x": -17.389066356213398, - "y": -2024.5988032860532, - "rotation": 6.14537106072399, - "action": "CARVE_RIGHT" - }, - { - "x": -17.613731038824376, - "y": -2028.8204038700635, - "rotation": 6.201221596787809, - "action": "CARVE_RIGHT" - }, - { - "x": -17.68545137338606, - "y": -2033.1924964251357, - "rotation": 6.257072132851627, - "action": "CARVE_RIGHT" - }, - { - "x": -17.603615093074374, - "y": -2037.5640285538504, - "rotation": 0.029737361735859835, - "action": "CARVE_RIGHT" - }, - { - "x": -17.36765422444703, - "y": -2041.8008902383567, - "rotation": 0.08558789779967838, - "action": "CARVE_RIGHT" - }, - { - "x": -16.977080322836017, - "y": -2045.9018624546368, - "rotation": 0.14143843386349692, - "action": "CARVE_RIGHT" - }, - { - "x": -16.43148420727758, - "y": -2049.8658014878924, - "rotation": 0.19728896992731546, - "action": "CARVE_RIGHT" - }, - { - "x": -15.730535696270485, - "y": -2053.691638683085, - "rotation": 0.253139505991134, - "action": "CARVE_RIGHT" - }, - { - "x": -14.873983344360068, - "y": -2057.3783801962504, - "rotation": 0.30899004205495256, - "action": "CARVE_RIGHT" - }, - { - "x": -13.861654179545653, - "y": -2060.9251067465916, - "rotation": 0.36484057811877113, - "action": "CARVE_RIGHT" - }, - { - "x": -12.693453441508806, - "y": -2064.330973369339, - "rotation": 0.4206911141825897, - "action": "CARVE_RIGHT" - }, - { - "x": -11.369364320660006, - "y": -2067.5952091693835, - "rotation": 0.47654165024640827, - "action": "CARVE_RIGHT" - }, - { - "x": -9.889447698001248, - "y": -2070.7171170756747, - "rotation": 0.5323921863102268, - "action": "CARVE_RIGHT" - }, - { - "x": -8.253841885802148, - "y": -2073.6960735963876, - "rotation": 0.5882427223740453, - "action": "CARVE_RIGHT" - }, - { - "x": -6.462762369087093, - "y": -2076.531528574847, - "rotation": 0.6440932584378638, - "action": "CARVE_RIGHT" - }, - { - "x": -4.516501547931024, - "y": -2079.223004946218, - "rotation": 0.6999437945016823, - "action": "CARVE_RIGHT" - }, - { - "x": -2.415428480561396, - "y": -2081.77009849495, - "rotation": 0.7557943305655008, - "action": "CARVE_RIGHT" - }, - { - "x": -0.15998862726391483, - "y": -2084.1724776129795, - "rotation": 0.8116448666293193, - "action": "CARVE_RIGHT" - }, - { - "x": 2.249296404910364, - "y": -2086.4298830586854, - "rotation": 0.8674954026931379, - "action": "CARVE_RIGHT" - }, - { - "x": 4.811829116638991, - "y": -2088.5421277165956, - "rotation": 0.9233459387569564, - "action": "CARVE_RIGHT" - }, - { - "x": 7.526936370025528, - "y": -2090.509096357844, - "rotation": 0.9791964748207749, - "action": "NOTHING" - }, - { - "x": 10.530789930318196, - "y": -2092.2054606895076, - "rotation": 0.9757058163167862, - "action": "NOTHING" - }, - { - "x": 13.521763417187255, - "y": -2093.910559180288, - "rotation": 0.9722151578127975, - "action": "NOTHING" - }, - { - "x": 16.499908548353122, - "y": -2095.6243985896613, - "rotation": 0.9687244993088089, - "action": "NOTHING" - }, - { - "x": 19.46527655741878, - "y": -2097.3469859887437, - "rotation": 0.9652338408048202, - "action": "NOTHING" - }, - { - "x": 22.417918195407125, - "y": -2099.078328759211, - "rotation": 0.9617431823008316, - "action": "NOTHING" - }, - { - "x": 25.357883732293676, - "y": -2100.818434592221, - "rotation": 0.9582525237968429, - "action": "NOTHING" - }, - { - "x": 28.28522295853459, - "y": -2102.5673114873357, - "rotation": 0.9547618652928542, - "action": "NOTHING" - }, - { - "x": 31.199985186590098, - "y": -2104.3249677514523, - "rotation": 0.9512712067888656, - "action": "NOTHING" - }, - { - "x": 34.10221925244328, - "y": -2106.0914119977338, - "rotation": 0.9477805482848769, - "action": "NOTHING" - }, - { - "x": 36.99197351711423, - "y": -2107.8666531445447, - "rotation": 0.9442898897808882, - "action": "NOTHING" - }, - { - "x": 39.86929586816971, - "y": -2109.650700414389, - "rotation": 0.9407992312768996, - "action": "NOTHING" - }, - { - "x": 42.734233721228065, - "y": -2111.443563332854, - "rotation": 0.9373085727729109, - "action": "NOTHING" - }, - { - "x": 45.58683402145976, - "y": -2113.2452517275533, - "rotation": 0.9338179142689222, - "action": "NOTHING" - }, - { - "x": 48.42714324508321, - "y": -2115.0557757270776, - "rotation": 0.9303272557649336, - "action": "NOTHING" - }, - { - "x": 51.25520740085616, - "y": -2116.875145759946, - "rotation": 0.9268365972609449, - "action": "NOTHING" - }, - { - "x": 54.07107203156251, - "y": -2118.703372553562, - "rotation": 0.9233459387569563, - "action": "CARVE_LEFT" - }, - { - "x": 56.450778027204066, - "y": -2120.9330636038117, - "rotation": 0.8674954026931377, - "action": "CARVE_LEFT" - }, - { - "x": 58.67645479721001, - "y": -2123.3037406085336, - "rotation": 0.8116448666293192, - "action": "CARVE_LEFT" - }, - { - "x": 60.748566375021426, - "y": -2125.815724658048, - "rotation": 0.7557943305655007, - "action": "CARVE_LEFT" - }, - { - "x": 62.66749814330906, - "y": -2128.469407790585, - "rotation": 0.6999437945016822, - "action": "CARVE_LEFT" - }, - { - "x": 64.43355709530302, - "y": -2131.265252755006, - "rotation": 0.6440932584378637, - "action": "CARVE_LEFT" - }, - { - "x": 66.0469720953073, - "y": -2134.203792774264, - "rotation": 0.5882427223740452, - "action": "CARVE_LEFT" - }, - { - "x": 67.5078941384017, - "y": -2137.285631309612, - "rotation": 0.5323921863102267, - "action": "CARVE_LEFT" - }, - { - "x": 68.81639660933358, - "y": -2140.511441825542, - "rotation": 0.4765416502464081, - "action": "CARVE_LEFT" - }, - { - "x": 69.97247554060176, - "y": -2143.881967555465, - "rotation": 0.42069111418258953, - "action": "CARVE_LEFT" - }, - { - "x": 70.97604986973516, - "y": -2147.398021268124, - "rotation": 0.36484057811877096, - "action": "CARVE_LEFT" - }, - { - "x": 71.82696169576838, - "y": -2151.0604850347386, - "rotation": 0.3089900420549524, - "action": "CARVE_LEFT" - }, - { - "x": 72.52497653491686, - "y": -2154.8703099968798, - "rotation": 0.25313950599113383, - "action": "CARVE_LEFT" - }, - { - "x": 73.06978357545385, - "y": -2158.828516135072, - "rotation": 0.1972889699273153, - "action": "CARVE_LEFT" - }, - { - "x": 73.46099593179164, - "y": -2162.9361920381193, - "rotation": 0.14143843386349675, - "action": "CARVE_LEFT" - }, - { - "x": 73.69815089776942, - "y": -2167.1944946731574, - "rotation": 0.08558789779967821, - "action": "CARVE_LEFT" - }, - { - "x": 73.78071019915022, - "y": -2171.6046491564234, - "rotation": 0.029737361735859662, - "action": "CARVE_LEFT" - }, - { - "x": 73.70807152756406, - "y": -2176.032723804891, - "rotation": 6.257072132851627, - "action": "CARVE_LEFT" - }, - { - "x": 73.47967013894453, - "y": -2180.3245396095786, - "rotation": 6.201221596787809, - "action": "CARVE_LEFT" - }, - { - "x": 73.09502080373866, - "y": -2184.478880702461, - "rotation": 6.14537106072399, - "action": "CARVE_LEFT" - }, - { - "x": 72.55371754188799, - "y": -2188.494606511128, - "rotation": 6.089520524660172, - "action": "CARVE_LEFT" - }, - { - "x": 71.85543335863777, - "y": -2192.3706515093722, - "rotation": 6.033669988596353, - "action": "CARVE_LEFT" - }, - { - "x": 70.99991998117183, - "y": -2196.1060249685534, - "rotation": 5.977819452532534, - "action": "CARVE_LEFT" - }, - { - "x": 69.98700759607061, - "y": -2199.6998107097365, - "rotation": 5.921968916468716, - "action": "CARVE_LEFT" - }, - { - "x": 68.81660458758988, - "y": -2203.1511668566027, - "rotation": 5.866118380404897, - "action": "CARVE_LEFT" - }, - { - "x": 67.48869727675768, - "y": -2206.4593255891277, - "rotation": 5.8102678443410785, - "action": "CARVE_LEFT" - }, - { - "x": 66.00334966128706, - "y": -2209.6235928980304, - "rotation": 5.75441730827726, - "action": "CARVE_LEFT" - }, - { - "x": 64.36070315630218, - "y": -2212.6433483399833, - "rotation": 5.698566772213441, - "action": "CARVE_LEFT" - }, - { - "x": 62.56097633587523, - "y": -2215.518044793587, - "rotation": 5.642716236149623, - "action": "CARVE_LEFT" - }, - { - "x": 60.60446467537187, - "y": -2218.247208216106, - "rotation": 5.586865700085804, - "action": "CARVE_LEFT" - }, - { - "x": 58.49154029460267, - "y": -2220.8304374009617, - "rotation": 5.531015164021985, - "action": "CARVE_LEFT" - }, - { - "x": 56.22265170177815, - "y": -2223.267403735979, - "rotation": 5.475164627958167, - "action": "CARVE_LEFT" - }, - { - "x": 53.79832353826504, - "y": -2225.55785096239, - "rotation": 5.419314091894348, - "action": "CARVE_LEFT" - }, - { - "x": 51.21915632414133, - "y": -2227.7015949345887, - "rotation": 5.3634635558305295, - "action": "CARVE_LEFT" - }, - { - "x": 48.48582620454771, - "y": -2229.698523380631, - "rotation": 5.307613019766711, - "action": "CARVE_LEFT" - }, - { - "x": 45.59908469683299, - "y": -2231.5485956634843, - "rotation": 5.251762483702892, - "action": "CARVE_LEFT" - }, - { - "x": 42.559758438491144, - "y": -2233.251842543024, - "rotation": 5.195911947639074, - "action": "CARVE_LEFT" - }, - { - "x": 39.36874893588763, - "y": -2234.808365938766, - "rotation": 5.140061411575255, - "action": "CARVE_LEFT" - }, - { - "x": 36.02703231377253, - "y": -2236.2183386933457, - "rotation": 5.084210875511436, - "action": "CARVE_LEFT" - }, - { - "x": 32.535659065578216, - "y": -2237.48200433673, - "rotation": 5.028360339447618, - "action": "CARVE_LEFT" - }, - { - "x": 28.895753804499154, - "y": -2238.5996768511686, - "rotation": 4.972509803383799, - "action": "CARVE_LEFT" - }, - { - "x": 25.108515015351518, - "y": -2239.571740436876, - "rotation": 4.9166592673199805, - "action": "CARVE_LEFT" - }, - { - "x": 21.175214807210242, - "y": -2240.398649278448, - "rotation": 4.860808731256162, - "action": "CARVE_LEFT" - }, - { - "x": 17.0971986668212, - "y": -2241.0809273120017, - "rotation": 4.804958195192343, - "action": "CARVE_LEFT" - }, - { - "x": 12.87588521278617, - "y": -2241.6191679930494, - "rotation": 4.749107659128525, - "action": "CARVE_LEFT" - }, - { - "x": 8.565019442302933, - "y": -2242.0626727019467, - "rotation": 4.71238898038469, - "action": "CARVE_LEFT" - }, - { - "x": 4.265611236245906, - "y": -2242.5049986490717, - "rotation": 4.71238898038469, - "action": "NOTHING" - }, - { - "x": -0.489027196959789, - "y": -2242.5148036446035, - "rotation": 4.715879638888678, - "action": "NOTHING" - }, - { - "x": -5.221316464396229, - "y": -2242.534365025504, - "rotation": 4.719370297392667, - "action": "NOTHING" - }, - { - "x": -9.931388462842051, - "y": -2242.56363467501, - "rotation": 4.722860955896655, - "action": "CARVE_RIGHT" - }, - { - "x": -14.0086748502672, - "y": -2243.1680274754144, - "rotation": 4.778711491960474, - "action": "CARVE_RIGHT" - }, - { - "x": -17.925622084593147, - "y": -2243.910866643013, - "rotation": 4.834562028024292, - "action": "CARVE_RIGHT" - }, - { - "x": -21.683587545985468, - "y": -2244.7916670505147, - "rotation": 4.890412564088111, - "action": "CARVE_RIGHT" - }, - { - "x": -25.283847008068612, - "y": -2245.810017202975, - "rotation": 4.9462631001519295, - "action": "CARVE_RIGHT" - }, - { - "x": -28.727594908450996, - "y": -2246.9655789921335, - "rotation": 5.002113636215748, - "action": "CARVE_RIGHT" - }, - { - "x": -32.01594461840748, - "y": -2248.258087451518, - "rotation": 5.057964172279567, - "action": "CARVE_RIGHT" - }, - { - "x": -35.14992871172183, - "y": -2249.6873505123162, - "rotation": 5.113814708343385, - "action": "CARVE_RIGHT" - }, - { - "x": -38.130499232691555, - "y": -2251.25324876001, - "rotation": 5.169665244407204, - "action": "CARVE_RIGHT" - }, - { - "x": -40.9585279632978, - "y": -2252.955735191771, - "rotation": 5.225515780471023, - "action": "CARVE_RIGHT" - }, - { - "x": -43.63480668954262, - "y": -2254.7948349746143, - "rotation": 5.281366316534841, - "action": "CARVE_RIGHT" - }, - { - "x": -46.16004746695627, - "y": -2256.770645204311, - "rotation": 5.33721685259866, - "action": "CARVE_RIGHT" - }, - { - "x": -48.53488288527686, - "y": -2258.883334665054, - "rotation": 5.3930673886624785, - "action": "CARVE_RIGHT" - }, - { - "x": -50.75986633230499, - "y": -2261.1331435898733, - "rotation": 5.448917924726297, - "action": "CARVE_RIGHT" - }, - { - "x": -52.83547225693576, - "y": -2263.5203834218064, - "rotation": 5.504768460790116, - "action": "CARVE_RIGHT" - }, - { - "x": -54.76209643137062, - "y": -2266.0454365758114, - "rotation": 5.560618996853934, - "action": "CARVE_RIGHT" - }, - { - "x": -56.54005621251152, - "y": -2268.70875620143, - "rotation": 5.616469532917753, - "action": "CARVE_RIGHT" - }, - { - "x": -58.16959080253984, - "y": -2271.5108659461876, - "rotation": 5.672320068981572, - "action": "CARVE_RIGHT" - }, - { - "x": -59.650861508682496, - "y": -2274.4523597197413, - "rotation": 5.72817060504539, - "action": "CARVE_RIGHT" - }, - { - "x": -60.98395200216774, - "y": -2277.533901458761, - "rotation": 5.784021141109209, - "action": "CARVE_RIGHT" - }, - { - "x": -62.168868576372944, - "y": -2280.7562248925506, - "rotation": 5.8398716771730275, - "action": "CARVE_RIGHT" - }, - { - "x": -63.205540404166925, - "y": -2284.1201333093995, - "rotation": 5.895722213236846, - "action": "CARVE_RIGHT" - }, - { - "x": -64.09381979444916, - "y": -2287.6264993236714, - "rotation": 5.951572749300665, - "action": "CARVE_RIGHT" - }, - { - "x": -64.83348244788827, - "y": -2291.276264643618, - "rotation": 6.007423285364483, - "action": "CARVE_RIGHT" - }, - { - "x": -65.42422771186229, - "y": -2295.070439839924, - "rotation": 6.063273821428302, - "action": "CARVE_RIGHT" - }, - { - "x": -65.86567883460295, - "y": -2299.0101041149737, - "rotation": 6.119124357492121, - "action": "CARVE_RIGHT" - }, - { - "x": -66.15738321854653, - "y": -2303.0964050728453, - "rotation": 6.174974893555939, - "action": "CARVE_RIGHT" - }, - { - "x": -66.29881267289349, - "y": -2307.3305584900227, - "rotation": 6.230825429619758, - "action": "CARVE_RIGHT" - }, - { - "x": -66.28936386697941, - "y": -2311.696256778099, - "rotation": 0.0034906585039902183, - "action": "CARVE_RIGHT" - }, - { - "x": -66.12841945589152, - "y": -2315.9302519063913, - "rotation": 0.059341194567808765, - "action": "CARVE_RIGHT" - }, - { - "x": -65.81544179297471, - "y": -2320.031277960885, - "rotation": 0.11519173063162731, - "action": "CARVE_RIGHT" - }, - { - "x": -65.3499726642227, - "y": -2323.998144496545, - "rotation": 0.17104226669544587, - "action": "CARVE_RIGHT" - }, - { - "x": -64.73163302349907, - "y": -2327.829736287354, - "rotation": 0.2268928027592644, - "action": "CARVE_RIGHT" - }, - { - "x": -63.960122728585716, - "y": -2331.5250130771196, - "rotation": 0.28274333882308295, - "action": "CARVE_RIGHT" - }, - { - "x": -63.03522027805635, - "y": -2335.083009331065, - "rotation": 0.3385938748869015, - "action": "CARVE_RIGHT" - }, - { - "x": -61.95678254897239, - "y": -2338.5028339881896, - "rotation": 0.3944444109507201, - "action": "CARVE_RIGHT" - }, - { - "x": -60.72474453539893, - "y": -2341.783670214401, - "rotation": 0.45029494701453865, - "action": "CARVE_RIGHT" - }, - { - "x": -59.339119087738226, - "y": -2344.9247751564158, - "rotation": 0.5061454830783572, - "action": "CARVE_RIGHT" - }, - { - "x": -57.79999665287829, - "y": -2347.925479696429, - "rotation": 0.5619960191421757, - "action": "CARVE_RIGHT" - }, - { - "x": -56.10754501515418, - "y": -2350.785188207545, - "rotation": 0.6178465552059942, - "action": "CARVE_RIGHT" - }, - { - "x": -54.26200903811942, - "y": -2353.503378309971, - "rotation": 0.6736970912698127, - "action": "CARVE_RIGHT" - }, - { - "x": -52.263710407125316, - "y": -2356.0796006279725, - "rotation": 0.7295476273336312, - "action": "CARVE_RIGHT" - }, - { - "x": -50.11304737270551, - "y": -2358.5134785475834, - "rotation": 0.7853981633974497, - "action": "CARVE_RIGHT" - }, - { - "x": -47.81049449476357, - "y": -2360.8047079750727, - "rotation": 0.8412486994612682, - "action": "CARVE_RIGHT" - }, - { - "x": -45.356602387561075, - "y": -2362.9530570961642, - "rotation": 0.8970992355250867, - "action": "CARVE_RIGHT" - }, - { - "x": -42.75199746550382, - "y": -2364.958366136006, - "rotation": 0.9529497715889053, - "action": "CARVE_RIGHT" - }, - { - "x": -39.997381689723746, - "y": -2366.8205471198894, - "rotation": 1.0088003076527239, - "action": "CARVE_RIGHT" - }, - { - "x": -37.093532315454226, - "y": -2368.539583634712, - "rotation": 1.0646508437165425, - "action": "CARVE_RIGHT" - }, - { - "x": -34.041301640196316, - "y": -2370.1155305911884, - "rotation": 1.1205013797803611, - "action": "CARVE_RIGHT" - }, - { - "x": -30.841616752673538, - "y": -2371.5485139867983, - "rotation": 1.1763519158441798, - "action": "CARVE_RIGHT" - }, - { - "x": -27.495479282572937, - "y": -2372.838730669478, - "rotation": 1.2322024519079984, - "action": "CARVE_RIGHT" - }, - { - "x": -24.003965151069952, - "y": -2373.986448102046, - "rotation": 1.288052987971817, - "action": "CARVE_RIGHT" - }, - { - "x": -20.368224322134783, - "y": -2374.9920041273645, - "rotation": 1.3439035240356356, - "action": "CARVE_RIGHT" - }, - { - "x": -16.58948055461791, - "y": -2375.8558067342365, - "rotation": 1.3997540600994542, - "action": "CARVE_RIGHT" - }, - { - "x": -12.669031155112426, - "y": -2376.578333824029, - "rotation": 1.4556045961632729, - "action": "CARVE_RIGHT" - }, - { - "x": -8.608246731590821, - "y": -2377.160132978028, - "rotation": 1.5114551322270915, - "action": "NOTHING" - }, - { - "x": -4.117067316167854, - "y": -2377.333403788808, - "rotation": 1.5079644737231028, - "action": "NOTHING" - }, - { - "x": 0.3534310606913591, - "y": -2377.5158809503623, - "rotation": 1.5044738152191142, - "action": "NOTHING" - }, - { - "x": 4.803369936548292, - "y": -2377.707523451476, - "rotation": 1.5009831567151255, - "action": "NOTHING" - }, - { - "x": 9.232870149893103, - "y": -2377.908290749413, - "rotation": 1.4974924982111368, - "action": "NOTHING" - }, - { - "x": 13.642051842320374, - "y": -2378.11814276835, - "rotation": 1.4940018397071482, - "action": "NOTHING" - }, - { - "x": 18.03103446069836, - "y": -2378.337039897812, - "rotation": 1.4905111812031595, - "action": "NOTHING" - }, - { - "x": 22.399936759331734, - "y": -2378.5649429911155, - "rotation": 1.4870205226991708, - "action": "NOTHING" - }, - { - "x": 26.74887680211785, - "y": -2378.801813363816, - "rotation": 1.4835298641951822, - "action": "NOTHING" - }, - { - "x": 31.07797196469658, - "y": -2379.0476127921597, - "rotation": 1.4800392056911935, - "action": "NOTHING" - }, - { - "x": 35.38733893659369, - "y": -2379.302303511539, - "rotation": 1.4765485471872049, - "action": "CARVE_LEFT" - }, - { - "x": 39.110886752687776, - "y": -2380.0901139285393, - "rotation": 1.4206980111233862, - "action": "CARVE_LEFT" - }, - { - "x": 42.68084555496039, - "y": -2381.011600879017, - "rotation": 1.3648474750595676, - "action": "CARVE_LEFT" - }, - { - "x": 46.0984274027228, - "y": -2382.066410091289, - "rotation": 1.308996938995749, - "action": "CARVE_LEFT" - }, - { - "x": 49.36476323962503, - "y": -2383.2542604807536, - "rotation": 1.2531464029319304, - "action": "CARVE_LEFT" - }, - { - "x": 52.48090316263484, - "y": -2384.5749439056335, - "rotation": 1.1972958668681117, - "action": "CARVE_LEFT" - }, - { - "x": 55.44781669017871, - "y": -2386.0283249234867, - "rotation": 1.1414453308042931, - "action": "CARVE_LEFT" - }, - { - "x": 58.26639302944745, - "y": -2387.6143405484772, - "rotation": 1.0855947947404745, - "action": "CARVE_LEFT" - }, - { - "x": 60.93744134286889, - "y": -2389.3330000094043, - "rotation": 1.0297442586766559, - "action": "CARVE_LEFT" - }, - { - "x": 63.46169101375014, - "y": -2391.184384508491, - "rotation": 0.9738937226128374, - "action": "CARVE_LEFT" - }, - { - "x": 65.83979191109195, - "y": -2393.168646980924, - "rotation": 0.9180431865490188, - "action": "CARVE_LEFT" - }, - { - "x": 68.07231465357758, - "y": -2395.2860118551516, - "rotation": 0.8621926504852003, - "action": "CARVE_LEFT" - }, - { - "x": 70.15975087273868, - "y": -2397.5367748139233, - "rotation": 0.8063421144213818, - "action": "CARVE_LEFT" - }, - { - "x": 72.10251347530075, - "y": -2399.921302556086, - "rotation": 0.7504915783575633, - "action": "CARVE_LEFT" - }, - { - "x": 73.90093690471042, - "y": -2402.4400325591214, - "rotation": 0.6946410422937448, - "action": "CARVE_LEFT" - }, - { - "x": 75.55527740184718, - "y": -2405.0934728424263, - "rotation": 0.6387905062299263, - "action": "CARVE_LEFT" - }, - { - "x": 77.06571326492195, - "y": -2407.882201731337, - "rotation": 0.5829399701661078, - "action": "CARVE_LEFT" - }, - { - "x": 78.43234510856495, - "y": -2410.80686762189, - "rotation": 0.5270894341022893, - "action": "CARVE_LEFT" - }, - { - "x": 79.65519612210518, - "y": -2413.868188746322, - "rotation": 0.4712388980384707, - "action": "CARVE_LEFT" - }, - { - "x": 80.73421232704413, - "y": -2417.0669529393017, - "rotation": 0.4153883619746521, - "action": "CARVE_LEFT" - }, - { - "x": 81.669262833726, - "y": -2420.404017404896, - "rotation": 0.35953782591083355, - "action": "CARVE_LEFT" - }, - { - "x": 82.46014009720676, - "y": -2423.8803084842652, - "rotation": 0.303687289847015, - "action": "CARVE_LEFT" - }, - { - "x": 83.10656017232476, - "y": -2427.496821424088, - "rotation": 0.24783675378319645, - "action": "CARVE_LEFT" - }, - { - "x": 83.60816296797492, - "y": -2431.2546201457094, - "rotation": 0.1919862177193779, - "action": "CARVE_LEFT" - }, - { - "x": 83.96451250058911, - "y": -2435.154837015015, - "rotation": 0.13613568165555937, - "action": "CARVE_LEFT" - }, - { - "x": 84.17509714682504, - "y": -2439.1986726130235, - "rotation": 0.08028514559174083, - "action": "CARVE_LEFT" - }, - { - "x": 84.23932989546601, - "y": -2443.387395507203, - "rotation": 0.02443460952792228, - "action": "CARVE_LEFT" - }, - { - "x": 84.15656492813397, - "y": -2447.568218445478, - "rotation": 6.25176938064369, - "action": "CARVE_LEFT" - }, - { - "x": 83.9262037978181, - "y": -2451.6208679602946, - "rotation": 6.195918844579872, - "action": "CARVE_LEFT" - }, - { - "x": 83.54772770153437, - "y": -2455.5440957876262, - "rotation": 6.140068308516053, - "action": "CARVE_LEFT" - }, - { - "x": 83.02069721486967, - "y": -2459.336729081851, - "rotation": 6.084217772452234, - "action": "CARVE_LEFT" - }, - { - "x": 82.34475202735553, - "y": -2462.997670165927, - "rotation": 6.028367236388416, - "action": "CARVE_LEFT" - }, - { - "x": 81.51961067866871, - "y": -2466.525896282347, - "rotation": 5.972516700324597, - "action": "CARVE_LEFT" - }, - { - "x": 80.54507029565652, - "y": -2469.920459344867, - "rotation": 5.9166661642607785, - "action": "CARVE_LEFT" - }, - { - "x": 79.421006330184, - "y": -2473.180485691011, - "rotation": 5.86081562819696, - "action": "CARVE_LEFT" - }, - { - "x": 78.14737229780086, - "y": -2476.3051758353413, - "rotation": 5.804965092133141, - "action": "CARVE_LEFT" - }, - { - "x": 76.72419951722541, - "y": -2479.293804223502, - "rotation": 5.749114556069323, - "action": "CARVE_LEFT" - }, - { - "x": 75.15159685064334, - "y": -2482.1457189870275, - "rotation": 5.693264020005504, - "action": "CARVE_LEFT" - }, - { - "x": 73.42975044481857, - "y": -2484.8603416989135, - "rotation": 5.637413483941685, - "action": "CARVE_LEFT" - }, - { - "x": 71.55892347301395, - "y": -2487.437167129951, - "rotation": 5.581562947877867, - "action": "CARVE_LEFT" - }, - { - "x": 69.53945587771943, - "y": -2489.8757630058185, - "rotation": 5.525712411814048, - "action": "CARVE_LEFT" - }, - { - "x": 67.37176411418504, - "y": -2492.1757697649336, - "rotation": 5.4698618757502295, - "action": "NOTHING" - }, - { - "x": 64.9738858305249, - "y": -2494.262046368693, - "rotation": 5.473352534254218, - "action": "NOTHING" - }, - { - "x": 62.586646117625435, - "y": -2496.35762716525, - "rotation": 5.476843192758206, - "action": "CARVE_RIGHT" - }, - { - "x": 60.58717673115386, - "y": -2498.8117562571724, - "rotation": 5.532693728822025, - "action": "CARVE_RIGHT" - }, - { - "x": 58.73639777442794, - "y": -2501.4038112821795, - "rotation": 5.588544264885844, - "action": "CARVE_RIGHT" - }, - { - "x": 57.03403160470261, - "y": -2504.134281206299, - "rotation": 5.644394800949662, - "action": "CARVE_RIGHT" - }, - { - "x": 55.47987860171534, - "y": -2507.003725373491, - "rotation": 5.700245337013481, - "action": "CARVE_RIGHT" - }, - { - "x": 54.07381690833301, - "y": -2510.01277327017, - "rotation": 5.7560958730772995, - "action": "CARVE_RIGHT" - }, - { - "x": 52.81580217200785, - "y": -2513.1621242904625, - "rotation": 5.811946409141118, - "action": "CARVE_RIGHT" - }, - { - "x": 51.70586728704017, - "y": -2516.4525475022015, - "rotation": 5.867796945204937, - "action": "CARVE_RIGHT" - }, - { - "x": 50.74412213764528, - "y": -2519.8848814136522, - "rotation": 5.923647481268755, - "action": "CARVE_RIGHT" - }, - { - "x": 49.930753341822346, - "y": -2523.460033740971, - "rotation": 5.979498017332574, - "action": "CARVE_RIGHT" - }, - { - "x": 49.266023996022696, - "y": -2527.1789811763915, - "rotation": 6.035348553396393, - "action": "CARVE_RIGHT" - }, - { - "x": 48.75027342061519, - "y": -2531.042769157138, - "rotation": 6.091199089460211, - "action": "CARVE_RIGHT" - }, - { - "x": 48.38391690614627, - "y": -2535.0525116350623, - "rotation": 6.14704962552403, - "action": "CARVE_RIGHT" - }, - { - "x": 48.167445460392344, - "y": -2539.2093908470038, - "rotation": 6.2029001615878485, - "action": "CARVE_RIGHT" - }, - { - "x": 48.10142555620205, - "y": -2543.5146570858683, - "rotation": 6.258750697651667, - "action": "CARVE_RIGHT" - }, - { - "x": 48.186482550526115, - "y": -2547.8112603999743, - "rotation": 0.03141592653589953, - "action": "CARVE_RIGHT" - }, - { - "x": 48.42319450563235, - "y": -2551.9756373879545, - "rotation": 0.08726646259971807, - "action": "CARVE_RIGHT" - }, - { - "x": 48.81205991619065, - "y": -2556.0065593266686, - "rotation": 0.1431169986635366, - "action": "CARVE_RIGHT" - }, - { - "x": 49.35349797447402, - "y": -2559.9028728390067, - "rotation": 0.19896753472735515, - "action": "CARVE_RIGHT" - }, - { - "x": 50.04784883473102, - "y": -2563.6634996443054, - "rotation": 0.2548180707911737, - "action": "CARVE_RIGHT" - }, - { - "x": 50.89537387673193, - "y": -2567.28743630954, - "rotation": 0.31066860685499226, - "action": "CARVE_RIGHT" - }, - { - "x": 51.89625596849115, - "y": -2570.773754001294, - "rotation": 0.3665191429188108, - "action": "CARVE_RIGHT" - }, - { - "x": 53.050599728168365, - "y": -2574.121598238497, - "rotation": 0.4223696789826294, - "action": "CARVE_RIGHT" - }, - { - "x": 54.35843178515092, - "y": -2577.330188645936, - "rotation": 0.47822021504644796, - "action": "CARVE_RIGHT" - }, - { - "x": 55.819701040319785, - "y": -2580.3988187085333, - "rotation": 0.5340707511102665, - "action": "CARVE_RIGHT" - }, - { - "x": 57.43427892550168, - "y": -2583.32685552639, - "rotation": 0.589921287174085, - "action": "CARVE_RIGHT" - }, - { - "x": 59.20195966210969, - "y": -2586.113739570592, - "rotation": 0.6457718232379035, - "action": "CARVE_RIGHT" - }, - { - "x": 61.1224605189749, - "y": -2588.758984439777, - "rotation": 0.701622359301722, - "action": "CARVE_RIGHT" - }, - { - "x": 63.19542206937142, - "y": -2591.262176617462, - "rotation": 0.7574728953655405, - "action": "CARVE_RIGHT" - }, - { - "x": 65.42040844723724, - "y": -2593.6229752301238, - "rotation": 0.813323431429359, - "action": "CARVE_RIGHT" - }, - { - "x": 67.79690760259332, - "y": -2595.841111806036, - "rotation": 0.8691739674931775, - "action": "NOTHING" - }, - { - "x": 70.4258934596892, - "y": -2597.823844568631, - "rotation": 0.8656833089891889, - "action": "NOTHING" - }, - { - "x": 73.04334839659215, - "y": -2599.8156849951993, - "rotation": 0.8621926504852002, - "action": "NOTHING" - }, - { - "x": 75.64930981306149, - "y": -2601.8166490457857, - "rotation": 0.8587019919812116, - "action": "NOTHING" - }, - { - "x": 78.24381467024605, - "y": -2603.826752960082, - "rotation": 0.8552113334772229, - "action": "NOTHING" - }, - { - "x": 80.8268994920834, - "y": -2605.8460132564487, - "rotation": 0.8517206749732342, - "action": "NOTHING" - }, - { - "x": 83.39860036669491, - "y": -2607.8744467309366, - "rotation": 0.8482300164692456, - "action": "NOTHING" - }, - { - "x": 85.95895294777658, - "y": -2609.912070456315, - "rotation": 0.8447393579652569, - "action": "NOTHING" - }, - { - "x": 88.50799245598559, - "y": -2611.9589017811027, - "rotation": 0.8412486994612682, - "action": "NOTHING" - }, - { - "x": 91.04575368032268, - "y": -2614.014958328598, - "rotation": 0.8377580409572796, - "action": "NOTHING" - }, - { - "x": 93.57227097951026, - "y": -2616.0802579959177, - "rotation": 0.8342673824532909, - "action": "NOTHING" - }, - { - "x": 96.08757828336645, - "y": -2618.1548189530354, - "rotation": 0.8307767239493022, - "action": "NOTHING" - }, - { - "x": 98.59170909417479, - "y": -2620.2386596418232, - "rotation": 0.8272860654453136, - "action": "NOTHING" - }, - { - "x": 101.08469648804984, - "y": -2622.331798775099, - "rotation": 0.8237954069413249, - "action": "NOTHING" - }, - { - "x": 103.56657311629873, - "y": -2624.4342553356723, - "rotation": 0.8203047484373363, - "action": "NOTHING" - }, - { - "x": 106.03737120677836, - "y": -2626.5460485753983, - "rotation": 0.8168140899333476, - "action": "NOTHING" - }, - { - "x": 108.49712256524866, - "y": -2628.667198014232, - "rotation": 0.8133234314293589, - "action": "NOTHING" - }, - { - "x": 110.9458585767216, - "y": -2630.7977234392843, - "rotation": 0.8098327729253703, - "action": "NOTHING" - }, - { - "x": 113.3836102068062, - "y": -2632.9376449038846, - "rotation": 0.8063421144213816, - "action": "NOTHING" - }, - { - "x": 115.8104080030493, - "y": -2635.0869827266442, - "rotation": 0.8028514559173929, - "action": "NOTHING" - }, - { - "x": 118.22628209627244, - "y": -2637.2457574905225, - "rotation": 0.7993607974134043, - "action": "NOTHING" - }, - { - "x": 120.63126220190449, - "y": -2639.4139900418963, - "rotation": 0.7958701389094156, - "action": "NOTHING" - }, - { - "x": 123.02537762131031, - "y": -2641.5917014896345, - "rotation": 0.7923794804054269, - "action": "NOTHING" - }, - { - "x": 125.40865724311539, - "y": -2643.778913204172, - "rotation": 0.7888888219014383, - "action": "CARVE_LEFT" - }, - { - "x": 127.4015339763006, - "y": -2646.3271241945763, - "rotation": 0.7330382858376198, - "action": "CARVE_LEFT" - }, - { - "x": 129.24268268913076, - "y": -2649.0160870913214, - "rotation": 0.6771877497738013, - "action": "CARVE_LEFT" - }, - { - "x": 130.9323720287481, - "y": -2651.8462991562237, - "rotation": 0.6213372137099827, - "action": "CARVE_LEFT" - }, - { - "x": 132.47079264345518, - "y": -2654.818328007224, - "rotation": 0.5654866776461642, - "action": "CARVE_LEFT" - }, - { - "x": 133.8580574420062, - "y": -2657.9328113829665, - "rotation": 0.5096361415823457, - "action": "CARVE_LEFT" - }, - { - "x": 135.09420185208913, - "y": -2661.190456908114, - "rotation": 0.45378560551852715, - "action": "CARVE_LEFT" - }, - { - "x": 136.17918407800127, - "y": -2664.592041859398, - "rotation": 0.3979350694547086, - "action": "CARVE_LEFT" - }, - { - "x": 137.11288535752092, - "y": -2668.1384129324033, - "rotation": 0.34208453339089, - "action": "CARVE_LEFT" - }, - { - "x": 137.89511021797716, - "y": -2671.8304860090825, - "rotation": 0.28623399732707144, - "action": "CARVE_LEFT" - }, - { - "x": 138.5255867315203, - "y": -2675.6692459259975, - "rotation": 0.2303834612632529, - "action": "CARVE_LEFT" - }, - { - "x": 139.00396676959548, - "y": -2679.6557462432907, - "rotation": 0.17453292519943436, - "action": "CARVE_LEFT" - }, - { - "x": 139.32982625662189, - "y": -2683.7911090143775, - "rotation": 0.11868238913561582, - "action": "CARVE_LEFT" - }, - { - "x": 139.50266542287952, - "y": -2688.0765245563616, - "rotation": 0.06283185307179728, - "action": "CARVE_LEFT" - }, - { - "x": 139.5219090566064, - "y": -2692.5132512211717, - "rotation": 0.0069813170079787365, - "action": "CARVE_LEFT" - }, - { - "x": 139.38694626890842, - "y": -2696.85134082575, - "rotation": 6.234316088123746, - "action": "CARVE_LEFT" - }, - { - "x": 139.09723859020397, - "y": -2701.0538904859686, - "rotation": 6.178465552059928, - "action": "CARVE_LEFT" - }, - { - "x": 138.65232698042553, - "y": -2705.1197091421564, - "rotation": 6.122615015996109, - "action": "CARVE_LEFT" - }, - { - "x": 138.05183156426145, - "y": -2709.047680950398, - "rotation": 6.06676447993229, - "action": "CARVE_LEFT" - }, - { - "x": 137.2954513672252, - "y": -2712.8367650333666, - "rotation": 6.010913943868472, - "action": "CARVE_LEFT" - }, - { - "x": 136.38296405254954, - "y": -2716.4859952319316, - "rotation": 5.955063407804653, - "action": "CARVE_LEFT" - }, - { - "x": 135.31422565890287, - "y": -2719.9944798575393, - "rotation": 5.8992128717408345, - "action": "CARVE_LEFT" - }, - { - "x": 134.08917033892575, - "y": -2723.361401445366, - "rotation": 5.843362335677016, - "action": "CARVE_LEFT" - }, - { - "x": 132.70781009858482, - "y": -2726.586016508238, - "rotation": 5.787511799613197, - "action": "CARVE_LEFT" - }, - { - "x": 131.17023453734163, - "y": -2729.6676552913204, - "rotation": 5.731661263549379, - "action": "CARVE_LEFT" - }, - { - "x": 129.4766105891342, - "y": -2732.6057215275678, - "rotation": 5.67581072748556, - "action": "CARVE_LEFT" - }, - { - "x": 127.6271822641686, - "y": -2735.399692193939, - "rotation": 5.619960191421741, - "action": "CARVE_LEFT" - }, - { - "x": 125.62227039151828, - "y": -2738.0491172683687, - "rotation": 5.564109655357923, - "action": "CARVE_LEFT" - }, - { - "x": 123.46227236252874, - "y": -2740.553619487501, - "rotation": 5.508259119294104, - "action": "CARVE_LEFT" - }, - { - "x": 121.14766187502485, - "y": -2742.9128941051713, - "rotation": 5.4524085832302855, - "action": "CARVE_LEFT" - }, - { - "x": 118.67898867831887, - "y": -2745.1267086516486, - "rotation": 5.396558047166467, - "action": "CARVE_LEFT" - }, - { - "x": 116.05687831901636, - "y": -2747.1949026936227, - "rotation": 5.340707511102648, - "action": "CARVE_LEFT" - }, - { - "x": 113.28203188761778, - "y": -2749.117387594941, - "rotation": 5.28485697503883, - "action": "CARVE_LEFT" - }, - { - "x": 110.35522576591335, - "y": -2750.894146278095, - "rotation": 5.229006438975011, - "action": "CARVE_LEFT" - }, - { - "x": 107.27731137516881, - "y": -2752.5252329864443, - "rotation": 5.173155902911192, - "action": "CARVE_LEFT" - }, - { - "x": 104.0492149250996, - "y": -2754.010773047188, - "rotation": 5.117305366847374, - "action": "CARVE_LEFT" - }, - { - "x": 100.67193716363131, - "y": -2755.3509626350724, - "rotation": 5.061454830783555, - "action": "CARVE_LEFT" - }, - { - "x": 97.14655312744374, - "y": -2756.546068536836, - "rotation": 5.005604294719737, - "action": "NOTHING" - }, - { - "x": 93.24645337214487, - "y": -2757.38703373014, - "rotation": 5.009094953223725, - "action": "NOTHING" - }, - { - "x": 89.36325631003128, - "y": -2758.2365324769394, - "rotation": 5.012585611727713, - "action": "NOTHING" - }, - { - "x": 85.49687162206048, - "y": -2759.094545607879, - "rotation": 5.016076270231702, - "action": "NOTHING" - }, - { - "x": 81.64720959330342, - "y": -2759.9610543518183, - "rotation": 5.01956692873569, - "action": "NOTHING" - }, - { - "x": 77.81418111104831, - "y": -2760.8360403344814, - "rotation": 5.023057587239679, - "action": "NOTHING" - }, - { - "x": 73.99769766291034, - "y": -2761.719485577106, - "rotation": 5.026548245743667, - "action": "NOTHING" - }, - { "x": 70.19767133494693, "y": -2762.6113724951, "rotation": 5.030038904247656, "action": "NOTHING" }, - { - "x": 66.41401480977876, - "y": -2763.5116838967024, - "rotation": 5.033529562751644, - "action": "NOTHING" - }, - { - "x": 62.6466413647164, - "y": -2764.420402981646, - "rotation": 5.0370202212556325, - "action": "NOTHING" - }, - { - "x": 58.895464869892606, - "y": -2765.337513339827, - "rotation": 5.040510879759621, - "action": "NOTHING" - }, - { - "x": 55.16039978640021, - "y": -2766.262998949978, - "rotation": 5.044001538263609, - "action": "NOTHING" - }, - { - "x": 51.44136116443566, - "y": -2767.196844178343, - "rotation": 5.047492196767598, - "action": "NOTHING" - }, - { - "x": 47.73826464144808, - "y": -2768.1390337773614, - "rotation": 5.050982855271586, - "action": "NOTHING" - }, - { - "x": 44.051026440293974, - "y": -2769.0895528843507, - "rotation": 5.054473513775575, - "action": "NOTHING" - }, - { - "x": 40.379563367397445, - "y": -2770.0483870201974, - "rotation": 5.057964172279563, - "action": "CARVE_RIGHT" - }, - { - "x": 37.23037815945696, - "y": -2771.484582595958, - "rotation": 5.113814708343382, - "action": "CARVE_RIGHT" - }, - { - "x": 34.23536873497434, - "y": -2773.058066590592, - "rotation": 5.1696652444072, - "action": "CARVE_RIGHT" - }, - { - "x": 31.39365959591982, - "y": -2774.768788691783, - "rotation": 5.225515780471019, - "action": "CARVE_RIGHT" - }, - { - "x": 28.704455254059177, - "y": -2776.616770769523, - "rotation": 5.281366316534838, - "action": "CARVE_RIGHT" - }, - { - "x": 26.167039965400555, - "y": -2778.602106634983, - "rotation": 5.337216852598656, - "action": "CARVE_RIGHT" - }, - { - "x": 23.780777465469086, - "y": -2780.7249618001365, - "rotation": 5.393067388662475, - "action": "CARVE_RIGHT" - }, - { - "x": 21.545110705406685, - "y": -2782.985573238135, - "rotation": 5.4489179247262935, - "action": "CARVE_RIGHT" - }, - { - "x": 19.45956158889463, - "y": -2785.3842491444375, - "rotation": 5.504768460790112, - "action": "CARVE_RIGHT" - }, - { - "x": 17.523730709896423, - "y": -2787.92136869868, - "rotation": 5.560618996853931, - "action": "CARVE_RIGHT" - }, - { - "x": 15.737297091218473, - "y": -2790.5973818272987, - "rotation": 5.616469532917749, - "action": "CARVE_RIGHT" - }, - { - "x": 14.100017923886169, - "y": -2793.412808966891, - "rotation": 5.672320068981568, - "action": "CARVE_RIGHT" - }, - { - "x": 12.6117283073329, - "y": -2796.3682408283207, - "rotation": 5.728170605045387, - "action": "CARVE_RIGHT" - }, - { - "x": 11.27234099039957, - "y": -2799.4643381615583, - "rotation": 5.784021141109205, - "action": "CARVE_RIGHT" - }, - { - "x": 10.08184611314218, - "y": -2802.701831521262, - "rotation": 5.839871677173024, - "action": "CARVE_RIGHT" - }, - { - "x": 9.040310949445082, - "y": -2806.081521033092, - "rotation": 5.8957222132368425, - "action": "CARVE_RIGHT" - }, - { - "x": 8.147879650437456, - "y": -2809.6042761607537, - "rotation": 5.951572749300661, - "action": "CARVE_RIGHT" - }, - { - "x": 7.404772988710632, - "y": -2813.271035473775, - "rotation": 6.00742328536448, - "action": "CARVE_RIGHT" - }, - { - "x": 6.81128810333382, - "y": -2817.08280641601, - "rotation": 6.063273821428298, - "action": "CARVE_RIGHT" - }, - { - "x": 6.367798245665907, - "y": -2821.040665074867, - "rotation": 6.119124357492117, - "action": "CARVE_RIGHT" - }, - { - "x": 6.074752525960885, - "y": -2825.1457559512605, - "rotation": 6.174974893555936, - "action": "CARVE_RIGHT" - }, - { - "x": 5.932675660764547, - "y": -2829.3992917302867, - "rotation": 6.230825429619754, - "action": "CARVE_RIGHT" - }, - { - "x": 5.942167519500098, - "y": -2833.784882016437, - "rotation": 0.0034906585039866656, - "action": "CARVE_RIGHT" - }, - { - "x": 6.103841998808286, - "y": -2838.03808318778, - "rotation": 0.05934119456780521, - "action": "CARVE_RIGHT" - }, - { - "x": 6.418233309998131, - "y": -2842.1576326357504, - "rotation": 0.11519173063162376, - "action": "CARVE_RIGHT" - }, - { - "x": 6.885796244612729, - "y": -2846.142343208524, - "rotation": 0.1710422666954423, - "action": "CARVE_RIGHT" - }, - { - "x": 7.506906439165261, - "y": -2849.991102961093, - "rotation": 0.22689280275926085, - "action": "CARVE_RIGHT" - }, - { - "x": 8.281860639047697, - "y": -2853.7028749061174, - "rotation": 0.2827433388230794, - "action": "CARVE_RIGHT" - }, - { - "x": 9.21087696161467, - "y": -2857.276696765553, - "rotation": 0.33859387488689796, - "action": "CARVE_RIGHT" - }, - { - "x": 10.294095158445009, - "y": -2860.711680723053, - "rotation": 0.39444441095071653, - "action": "CARVE_RIGHT" - }, - { - "x": 11.531576876783381, - "y": -2864.0070131771413, - "rotation": 0.4502949470145351, - "action": "CARVE_RIGHT" - }, - { - "x": 12.923305920164516, - "y": -2867.161954495151, - "rotation": 0.5061454830783536, - "action": "CARVE_RIGHT" - }, - { - "x": 14.46918850822246, - "y": -2870.1758387679347, - "rotation": 0.5619960191421721, - "action": "CARVE_RIGHT" - }, - { - "x": 16.169053535687308, - "y": -2873.0480735653355, - "rotation": 0.6178465552059906, - "action": "CARVE_RIGHT" - }, - { - "x": 18.02265283057185, - "y": -2875.77813969242, - "rotation": 0.6736970912698091, - "action": "CARVE_RIGHT" - }, - { - "x": 20.029661411550567, - "y": -2878.365590946473, - "rotation": 0.7295476273336277, - "action": "CARVE_RIGHT" - }, - { - "x": 22.18967774453339, - "y": -2880.810053874746, - "rotation": 0.7853981633974462, - "action": "CARVE_RIGHT" - }, - { - "x": 24.502223998436676, - "y": -2883.1112275329638, - "rotation": 0.8412486994612647, - "action": "CARVE_RIGHT" - }, - { - "x": 26.966746300153737, - "y": -2885.268883244584, - "rotation": 0.8970992355250832, - "action": "CARVE_RIGHT" - }, - { - "x": 29.582614988727414, - "y": -2887.2828643608036, - "rotation": 0.9529497715889017, - "action": "CARVE_RIGHT" - }, - { - "x": 32.349124868727046, - "y": -2889.1530860213184, - "rotation": 1.0088003076527203, - "action": "CARVE_RIGHT" - }, - { - "x": 35.26549546283219, - "y": -2890.879534915825, - "rotation": 1.064650843716539, - "action": "CARVE_RIGHT" - }, - { - "x": 38.330871263625575, - "y": -2892.462269046268, - "rotation": 1.1205013797803576, - "action": "CARVE_RIGHT" - }, - { - "x": 41.544321984597545, - "y": -2893.901417489829, - "rotation": 1.1763519158441762, - "action": "CARVE_RIGHT" - }, - { - "x": 44.90484281036446, - "y": -2895.1971801626537, - "rotation": 1.2322024519079948, - "action": "CARVE_RIGHT" - }, - { - "x": 48.41135464610332, - "y": -2896.3498275843185, - "rotation": 1.2880529879718134, - "action": "CARVE_RIGHT" - }, - { - "x": 52.06270436620512, - "y": -2897.3597006430286, - "rotation": 1.343903524035632, - "action": "CARVE_RIGHT" - }, - { - "x": 55.85766506214907, - "y": -2898.227210361553, - "rotation": 1.3997540600994507, - "action": "CARVE_RIGHT" - }, - { - "x": 59.7949362896002, - "y": -2898.9528376638855, - "rotation": 1.4556045961632693, - "action": "CARVE_RIGHT" - }, - { - "x": 63.87314431473264, - "y": -2899.537133142638, - "rotation": 1.511455132227088, - "action": "CARVE_RIGHT" - }, - { - "x": 68.0908423597808, - "y": -2899.980716827158, - "rotation": 1.5673056682909066, - "action": "CARVE_RIGHT" - }, - { - "x": 72.30668581272288, - "y": -2900.414445577461, - "rotation": 1.5707963267948966, - "action": "NOTHING" - }, - { - "x": 76.96891246145144, - "y": -2900.424060001796, - "rotation": 1.567305668290908, - "action": "NOTHING" - }, - { - "x": 81.60922627622163, - "y": -2900.4432411931602, - "rotation": 1.5638150097869192, - "action": "NOTHING" - }, - { - "x": 86.2277575497267, - "y": -2900.4719419840717, - "rotation": 1.5603243512829306, - "action": "NOTHING" - }, - { - "x": 90.82463584903164, - "y": -2900.5101156952433, - "rotation": 1.556833692778942, - "action": "NOTHING" - }, - { - "x": 95.39999001782697, - "y": -2900.5577161339534, - "rotation": 1.5533430342749532, - "action": "NOTHING" - }, - { - "x": 99.95394817867587, - "y": -2900.6146975924225, - "rotation": 1.5498523757709646, - "action": "CARVE_LEFT" - }, - { - "x": 103.89523941387701, - "y": -2901.2286058845098, - "rotation": 1.494001839707146, - "action": "CARVE_LEFT" - }, - { - "x": 107.6806629566644, - "y": -2901.9772513172798, - "rotation": 1.4381513036433273, - "action": "CARVE_LEFT" - }, - { - "x": 111.31154047311793, - "y": -2902.860180754502, - "rotation": 1.3823007675795087, - "action": "CARVE_LEFT" - }, - { - "x": 114.78911214920811, - "y": -2903.87701457792, - "rotation": 1.32645023151569, - "action": "CARVE_LEFT" - }, - { - "x": 118.11453696091226, - "y": -2905.027446441961, - "rotation": 1.2705996954518715, - "action": "CARVE_LEFT" - }, - { - "x": 121.28889294348936, - "y": -2906.31124302921, - "rotation": 1.2147491593880528, - "action": "CARVE_LEFT" - }, - { - "x": 124.31317745991596, - "y": -2907.7282438066522, - "rotation": 1.1588986233242342, - "action": "CARVE_LEFT" - }, - { - "x": 127.18830746848593, - "y": -2909.2783607826746, - "rotation": 1.1030480872604156, - "action": "CARVE_LEFT" - }, - { - "x": 129.91511978957632, - "y": -2910.9615782648293, - "rotation": 1.047197551196597, - "action": "CARVE_LEFT" - }, - { - "x": 132.494371371582, - "y": -2912.7779526183544, - "rotation": 0.9913470151327785, - "action": "CARVE_LEFT" - }, - { - "x": 134.92673955602132, - "y": -2914.7276120254505, - "rotation": 0.9354964790689599, - "action": "CARVE_LEFT" - }, - { - "x": 137.21282234181578, - "y": -2916.81075624531, - "rotation": 0.8796459430051414, - "action": "CARVE_LEFT" - }, - { - "x": 139.35313864874544, - "y": -2919.0276563748985, - "rotation": 0.8237954069413229, - "action": "CARVE_LEFT" - }, - { - "x": 141.34812858008323, - "y": -2921.3786546104816, - "rotation": 0.7679448708775044, - "action": "CARVE_LEFT" - }, - { - "x": 143.19815368441016, - "y": -2923.864164009904, - "rotation": 0.7120943348136859, - "action": "CARVE_LEFT" - }, - { - "x": 144.90349721661423, - "y": -2926.4846682556076, - "rotation": 0.6562437987498674, - "action": "CARVE_LEFT" - }, - { - "x": 146.46436439807513, - "y": -2929.240721418394, - "rotation": 0.6003932626860489, - "action": "CARVE_LEFT" - }, - { - "x": 147.88088267603752, - "y": -2932.132947721926, - "rotation": 0.5445427266222304, - "action": "CARVE_LEFT" - }, - { - "x": 149.153101982175, - "y": -2935.1620413079677, - "rotation": 0.4886921905584118, - "action": "CARVE_LEFT" - }, - { - "x": 150.28099499034747, - "y": -2938.328766002359, - "rotation": 0.4328416544945932, - "action": "CARVE_LEFT" - }, - { - "x": 151.26445737355408, - "y": -2941.633955081723, - "rotation": 0.37699111843077465, - "action": "CARVE_LEFT" - }, - { - "x": 152.10330806008437, - "y": -2945.078511040905, - "rotation": 0.3211405823669561, - "action": "CARVE_LEFT" - }, - { - "x": 152.7972894888698, - "y": -2948.663405361142, - "rotation": 0.2652900463031375, - "action": "CARVE_LEFT" - }, - { - "x": 153.34606786403833, - "y": -2952.389678278953, - "rotation": 0.20943951023931898, - "action": "CARVE_LEFT" - }, - { - "x": 153.74923340867412, - "y": -2956.258438555761, - "rotation": 0.15358897417550044, - "action": "CARVE_LEFT" - }, - { - "x": 154.00630061778497, - "y": -2960.270863248232, - "rotation": 0.0977384381116819, - "action": "CARVE_LEFT" - }, - { - "x": 154.11670851047987, - "y": -2964.428197479336, - "rotation": 0.04188790204786335, - "action": "CARVE_LEFT" - }, - { - "x": 154.07982410695882, - "y": -2968.6630734391606, - "rotation": 6.269222673163631, - "action": "CARVE_LEFT" - }, - { - "x": 153.89502650439758, - "y": -2972.7696868294106, - "rotation": 6.213372137099812, - "action": "CARVE_LEFT" - }, - { - "x": 153.56177451779888, - "y": -2976.746768150959, - "rotation": 6.157521601035993, - "action": "CARVE_LEFT" - }, - { - "x": 153.0796064143079, - "y": -2980.593123392482, - "rotation": 6.101671064972175, - "action": "CARVE_LEFT" - }, - { - "x": 152.44813964835805, - "y": -2984.3076337804223, - "rotation": 6.045820528908356, - "action": "CARVE_LEFT" - }, - { - "x": 151.66707059764425, - "y": -2987.889255529727, - "rotation": 5.989969992844538, - "action": "CARVE_LEFT" - }, - { - "x": 150.7361742999216, - "y": -2991.3370195953667, - "rotation": 5.934119456780719, - "action": "CARVE_LEFT" - }, - { - "x": 149.65530419062674, - "y": -2994.6500314246227, - "rotation": 5.8782689207169, - "action": "CARVE_LEFT" - }, - { - "x": 148.42439184131936, - "y": -2997.8274707101523, - "rotation": 5.822418384653082, - "action": "CARVE_LEFT" - }, - { - "x": 147.04344669894172, - "y": -3000.868591143817, - "rotation": 5.766567848589263, - "action": "CARVE_LEFT" - }, - { - "x": 145.51255582589337, - "y": -3003.77272017128, - "rotation": 5.7107173125254445, - "action": "CARVE_LEFT" - }, - { - "x": 143.8318836409188, - "y": -3006.53925874737, - "rotation": 5.654866776461626, - "action": "CARVE_LEFT" - }, - { - "x": 142.00167166080556, - "y": -3009.1676810922036, - "rotation": 5.599016240397807, - "action": "CARVE_LEFT" - }, - { - "x": 140.02223824289052, - "y": -3011.6575344480716, - "rotation": 5.543165704333989, - "action": "CARVE_LEFT" - }, - { - "x": 137.8939783283716, - "y": -3014.0084388370788, - "rotation": 5.48731516827017, - "action": "CARVE_LEFT" - }, - { - "x": 135.6173631864226, - "y": -3016.2200868195428, - "rotation": 5.431464632206351, - "action": "CARVE_LEFT" - }, - { - "x": 133.1929401591092, - "y": -3018.292243253144, - "rotation": 5.375614096142533, - "action": "CARVE_LEFT" - }, - { - "x": 130.62133240710287, - "y": -3020.2247450528266, - "rotation": 5.319763560078714, - "action": "CARVE_LEFT" - }, - { - "x": 127.90323865619096, - "y": -3022.017500951449, - "rotation": 5.2639130240148955, - "action": "CARVE_LEFT" - }, - { - "x": 125.03943294458047, - "y": -3023.6704912611813, - "rotation": 5.208062487951077, - "action": "CARVE_LEFT" - }, - { - "x": 122.03076437099283, - "y": -3025.183767635642, - "rotation": 5.152211951887258, - "action": "CARVE_LEFT" - }, - { - "x": 118.8781568435476, - "y": -3026.557452832786, - "rotation": 5.09636141582344, - "action": "CARVE_LEFT" - }, - { - "x": 115.58260882943269, - "y": -3027.791740478522, - "rotation": 5.040510879759621, - "action": "CARVE_LEFT" - }, - { - "x": 112.14519310535847, - "y": -3028.8868948310746, - "rotation": 4.984660343695802, - "action": "CARVE_LEFT" - }, - { - "x": 108.56705650879384, - "y": -3029.8432505460787, - "rotation": 4.928809807631984, - "action": "CARVE_LEFT" - }, - { - "x": 104.84941968998152, - "y": -3030.661212442407, - "rotation": 4.872959271568165, - "action": "CARVE_LEFT" - }, - { - "x": 100.99357686473047, - "y": -3031.3412552687296, - "rotation": 4.8171087355043465, - "action": "CARVE_LEFT" - }, - { - "x": 97.00089556798301, - "y": -3031.883923470802, - "rotation": 4.761258199440528, - "action": "CARVE_LEFT" - }, - { - "x": 92.89099152514467, - "y": -3032.306753104839, - "rotation": 4.71238898038469, - "action": "CARVE_LEFT" - }, - { - "x": 88.79204264241343, - "y": -3032.728455664791, - "rotation": 4.71238898038469, - "action": "CARVE_LEFT" - }, - { - "x": 84.70402153188903, - "y": -3033.149033968343, - "rotation": 4.71238898038469, - "action": "CARVE_LEFT" - }, - { - "x": 80.62690087414093, - "y": -3033.568490826136, - "rotation": 4.71238898038469, - "action": "NOTHING" - }, - { - "x": 76.11808365431236, - "y": -3033.5777888901875, - "rotation": 4.715879638888678, - "action": "NOTHING" - }, - { - "x": 71.63045492993598, - "y": -3033.596338942785, - "rotation": 4.719370297392667, - "action": "NOTHING" - }, - { - "x": 67.16388707120215, - "y": -3033.6240953923175, - "rotation": 4.722860955896655, - "action": "NOTHING" - }, - { - "x": 62.7182531651422, - "y": -3033.6610131294547, - "rotation": 4.726351614400643, - "action": "NOTHING" - }, - { - "x": 58.293427013401875, - "y": -3033.70704752554, - "rotation": 4.729842272904632, - "action": "NOTHING" - }, - { - "x": 53.88928313002148, - "y": -3033.7621544309877, - "rotation": 4.73333293140862, - "action": "NOTHING" - }, - { - "x": 49.50569673922268, - "y": -3033.826290173684, - "rotation": 4.736823589912609, - "action": "NOTHING" - }, - { - "x": 45.14254377320182, - "y": -3033.8994115573946, - "rotation": 4.740314248416597, - "action": "NOTHING" - }, - { - "x": 40.799700869929964, - "y": -3033.9814758601774, - "rotation": 4.743804906920586, - "action": "CARVE_RIGHT" - }, - { - "x": 37.04193785093851, - "y": -3034.595489425372, - "rotation": 4.799655442984404, - "action": "CARVE_RIGHT" - }, - { - "x": 33.43361238590184, - "y": -3035.3388508699936, - "rotation": 4.855505979048223, - "action": "CARVE_RIGHT" - }, - { - "x": 29.973448023669043, - "y": -3036.2111475120605, - "rotation": 4.9113565151120415, - "action": "CARVE_RIGHT" - }, - { - "x": 26.660249631504257, - "y": -3037.2120400413764, - "rotation": 4.96720705117586, - "action": "CARVE_RIGHT" - }, - { - "x": 23.49290312549641, - "y": -3038.341262274718, - "rotation": 5.023057587239679, - "action": "CARVE_RIGHT" - }, - { - "x": 20.470375201808665, - "y": -3039.598620911786, - "rotation": 5.078908123303497, - "action": "CARVE_RIGHT" - }, - { - "x": 17.59171306876509, - "y": -3040.9839952919233, - "rotation": 5.134758659367316, - "action": "CARVE_RIGHT" - }, - { - "x": 14.856044179771978, - "y": -3042.49733715159, - "rotation": 5.190609195431135, - "action": "CARVE_RIGHT" - }, - { - "x": 12.262575967071413, - "y": -3044.138670382598, - "rotation": 5.246459731494953, - "action": "CARVE_RIGHT" - }, - { - "x": 9.810595576324491, - "y": -3045.9080907911043, - "rotation": 5.302310267558772, - "action": "CARVE_RIGHT" - }, - { - "x": 7.499469602021771, - "y": -3047.8057658573557, - "rotation": 5.3581608036225905, - "action": "CARVE_RIGHT" - }, - { - "x": 5.328643823718471, - "y": -3049.8319344961856, - "rotation": 5.414011339686409, - "action": "CARVE_RIGHT" - }, - { - "x": 3.297642943091936, - "y": -3051.986906818262, - "rotation": 5.469861875750228, - "action": "CARVE_RIGHT" - }, - { - "x": 1.406070321818898, - "y": -3054.271063892081, - "rotation": 5.525712411814046, - "action": "CARVE_RIGHT" - }, - { - "x": -0.3463922797299086, - "y": -3056.6848575067074, - "rotation": 5.581562947877865, - "action": "CARVE_RIGHT" - }, - { - "x": -1.9599849629802224, - "y": -3059.2288099352554, - "rotation": 5.637413483941684, - "action": "CARVE_RIGHT" - }, - { - "x": -3.4348699508322733, - "y": -3061.9035136991115, - "rotation": 5.693264020005502, - "action": "CARVE_RIGHT" - }, - { - "x": -4.771131846528785, - "y": -3064.709631332897, - "rotation": 5.749114556069321, - "action": "CARVE_RIGHT" - }, - { - "x": -5.968777891715361, - "y": -3067.6478951501635, - "rotation": 5.8049650921331395, - "action": "CARVE_RIGHT" - }, - { - "x": -7.027738223695703, - "y": -3070.7191070098247, - "rotation": 5.860815628196958, - "action": "CARVE_RIGHT" - }, - { - "x": -7.947866131884058, - "y": -3073.9241380833205, - "rotation": 5.916666164260777, - "action": "CARVE_RIGHT" - }, - { - "x": -8.728938313457313, - "y": -3077.263928622507, - "rotation": 5.972516700324595, - "action": "CARVE_RIGHT" - }, - { - "x": -9.370655128209116, - "y": -3080.7394877282786, - "rotation": 6.028367236388414, - "action": "CARVE_RIGHT" - }, - { - "x": -9.872640852608438, - "y": -3084.351893119911, - "rotation": 6.084217772452233, - "action": "CARVE_RIGHT" - }, - { - "x": -10.234443933064952, - "y": -3088.1022909051308, - "rotation": 6.140068308516051, - "action": "CARVE_RIGHT" - }, - { - "x": -10.455537238403593, - "y": -3091.991895350903, - "rotation": 6.19591884457987, - "action": "CARVE_RIGHT" - }, - { - "x": -10.5353183115507, - "y": -3096.021988654939, - "rotation": 6.2517693806436885, - "action": "CARVE_RIGHT" - }, - { - "x": -10.47311949883407, - "y": -3100.078075251407, - "rotation": 0.02443460952792087, - "action": "CARVE_RIGHT" - }, - { - "x": -10.268307709355314, - "y": -3104.0110552667597, - "rotation": 0.08028514559173941, - "action": "CARVE_RIGHT" - }, - { - "x": -9.920329621972824, - "y": -3107.819647343762, - "rotation": 0.13613568165555795, - "action": "CARVE_RIGHT" - }, - { - "x": -9.428711419433801, - "y": -3111.5026456624464, - "rotation": 0.1919862177193765, - "action": "CARVE_RIGHT" - }, - { - "x": -8.793058523337075, - "y": -3115.0589196899045, - "rotation": 0.24783675378319503, - "action": "CARVE_RIGHT" - }, - { - "x": -8.013055329924201, - "y": -3118.487413930853, - "rotation": 0.3036872898470136, - "action": "CARVE_RIGHT" - }, - { - "x": -7.08846494669636, - "y": -3121.7871476789783, - "rotation": 0.35953782591083217, - "action": "CARVE_RIGHT" - }, - { - "x": -6.019128929854585, - "y": -3124.9572147690556, - "rotation": 0.41538836197465073, - "action": "CARVE_RIGHT" - }, - { - "x": -4.804967022560841, - "y": -3127.9967833298388, - "rotation": 0.4712388980384693, - "action": "CARVE_RIGHT" - }, - { - "x": -3.445976894017493, - "y": -3130.905095537722, - "rotation": 0.5270894341022878, - "action": "CARVE_RIGHT" - }, - { - "x": -1.9422338793627099, - "y": -3133.6814673711665, - "rotation": 0.5829399701661063, - "action": "CARVE_RIGHT" - }, - { - "x": -0.2938907203793528, - "y": -3136.325288365893, - "rotation": 0.6387905062299248, - "action": "CARVE_RIGHT" - }, - { - "x": 1.4988226929850945, - "y": -3138.8360213708374, - "rotation": 0.6946410422937433, - "action": "CARVE_RIGHT" - }, - { - "x": 3.435599580289982, - "y": -3141.213202304868, - "rotation": 0.7504915783575619, - "action": "CARVE_RIGHT" - }, - { - "x": 5.516056527466775, - "y": -3143.4564399142578, - "rotation": 0.8063421144213804, - "action": "CARVE_RIGHT" - }, - { - "x": 7.739733742880569, - "y": -3145.5654155309157, - "rotation": 0.8621926504851989, - "action": "CARVE_RIGHT" - }, - { - "x": 10.106095312590258, - "y": -3147.5398828313705, - "rotation": 0.9180431865490174, - "action": "CARVE_RIGHT" - }, - { - "x": 12.614529454809766, - "y": -3149.3796675965054, - "rotation": 0.9738937226128359, - "action": "CARVE_RIGHT" - }, - { - "x": 15.264348773572735, - "y": -3151.0846674720433, - "rotation": 1.0297442586766545, - "action": "CARVE_RIGHT" - }, - { - "x": 18.054790511603056, - "y": -3152.6548517297774, - "rotation": 1.0855947947404732, - "action": "CARVE_RIGHT" - }, - { - "x": 20.985016802393652, - "y": -3154.0902610295475, - "rotation": 1.1414453308042918, - "action": "CARVE_RIGHT" - }, - { - "x": 24.05411492149586, - "y": -3155.3910071819582, - "rotation": 1.1972958668681104, - "action": "CARVE_RIGHT" - }, - { - "x": 27.2610975370218, - "y": -3156.5572729118385, - "rotation": 1.253146402931929, - "action": "CARVE_RIGHT" - }, - { - "x": 30.604902959362114, - "y": -3157.5893116224374, - "rotation": 1.3089969389957476, - "action": "CARVE_RIGHT" - }, - { - "x": 34.08439539012138, - "y": -3158.487447160357, - "rotation": 1.3648474750595663, - "action": "CARVE_RIGHT" - }, - { - "x": 37.69836517027362, - "y": -3159.252073581219, - "rotation": 1.420698011123385, - "action": "NOTHING" - }, - { - "x": 41.69600762927813, - "y": -3159.653223618156, - "rotation": 1.4172073526193962, - "action": "NOTHING" - }, - { - "x": 45.675875388162574, - "y": -3160.062675033679, - "rotation": 1.4137166941154076, - "action": "NOTHING" - }, - { - "x": 49.63807261876219, - "y": -3160.4803984307446, - "rotation": 1.410226035611419, - "action": "NOTHING" - }, - { - "x": 53.5827028479449, - "y": -3160.9063648418546, - "rotation": 1.4067353771074302, - "action": "NOTHING" - }, - { - "x": 57.5098689596251, - "y": -3161.3405457276126, - "rotation": 1.4032447186034416, - "action": "NOTHING" - }, - { - "x": 61.41967319677137, - "y": -3161.782912975281, - "rotation": 1.399754060099453, - "action": "NOTHING" - }, - { - "x": 65.31221716340818, - "y": -3162.2334388973454, - "rotation": 1.3962634015954642, - "action": "NOTHING" - }, - { - "x": 69.1876018266116, - "y": -3162.6920962300833, - "rotation": 1.3927727430914756, - "action": "NOTHING" - }, - { - "x": 73.045927518499, - "y": -3163.1588581321357, - "rotation": 1.389282084587487, - "action": "NOTHING" - }, - { - "x": 76.88729393821282, - "y": -3163.6336981830846, - "rotation": 1.3857914260834983, - "action": "NOTHING" - }, - { - "x": 80.71180015389835, - "y": -3164.1165903820347, - "rotation": 1.3823007675795096, - "action": "NOTHING" - }, - { - "x": 84.51954460467562, - "y": -3164.6075091461994, - "rotation": 1.378810109075521, - "action": "NOTHING" - }, - { - "x": 88.3106251026053, - "y": -3165.1064293094914, - "rotation": 1.3753194505715323, - "action": "CARVE_LEFT" - }, - { - "x": 91.5780285927865, - "y": -3166.08287264136, - "rotation": 1.3194689145077136, - "action": "CARVE_LEFT" - }, - { - "x": 94.70197027879014, - "y": -3167.185553101429, - "rotation": 1.263618378443895, - "action": "CARVE_LEFT" - }, - { - "x": 97.68347656205331, - "y": -3168.4142834793524, - "rotation": 1.2077678423800764, - "action": "CARVE_LEFT" - }, - { - "x": 100.52349335949017, - "y": -3169.768949179589, - "rotation": 1.1519173063162578, - "action": "CARVE_LEFT" - }, - { - "x": 103.22288637047559, - "y": -3171.249507978962, - "rotation": 1.0960667702524391, - "action": "CARVE_LEFT" - }, - { - "x": 105.78244134299683, - "y": -3172.8559897849814, - "rotation": 1.0402162341886205, - "action": "CARVE_LEFT" - }, - { - "x": 108.2028643389759, - "y": -3174.5884963949215, - "rotation": 0.984365698124802, - "action": "CARVE_LEFT" - }, - { - "x": 110.48478199876493, - "y": -3176.447201255652, - "rotation": 0.9285151620609835, - "action": "CARVE_LEFT" - }, - { - "x": 112.62874180481714, - "y": -3178.432349224219, - "rotation": 0.872664625997165, - "action": "CARVE_LEFT" - }, - { - "x": 114.63521234453584, - "y": -3180.5442563291776, - "rotation": 0.8168140899333465, - "action": "CARVE_LEFT" - }, - { - "x": 116.50458357230393, - "y": -3182.7833095326714, - "rotation": 0.760963553869528, - "action": "CARVE_LEFT" - }, - { - "x": 118.23716707069627, - "y": -3185.149966493255, - "rotation": 0.7051130178057095, - "action": "CARVE_LEFT" - }, - { - "x": 119.83319631087758, - "y": -3187.64475532946, - "rotation": 0.6492624817418909, - "action": "CARVE_LEFT" - }, - { - "x": 121.29282691218803, - "y": -3190.2682743841033, - "rotation": 0.5934119456780724, - "action": "CARVE_LEFT" - }, - { - "x": 122.61613690091924, - "y": -3193.021191989328, - "rotation": 0.5375614096142539, - "action": "CARVE_LEFT" - }, - { - "x": 123.80312696828284, - "y": -3195.904246232388, - "rotation": 0.48171087355043535, - "action": "CARVE_LEFT" - }, - { - "x": 124.85372072757424, - "y": -3198.9182447221583, - "rotation": 0.4258603374866168, - "action": "CARVE_LEFT" - }, - { - "x": 125.76776497053389, - "y": -3202.0640643563834, - "rotation": 0.3700098014227982, - "action": "CARVE_LEFT" - }, - { - "x": 126.54502992290844, - "y": -3205.3426510896506, - "rotation": 0.31415926535897964, - "action": "CARVE_LEFT" - }, - { - "x": 127.1852094992143, - "y": -3208.755019702092, - "rotation": 0.2583087292951611, - "action": "CARVE_LEFT" - }, - { - "x": 127.68792155670586, - "y": -3212.3022535688106, - "rotation": 0.20245819323134254, - "action": "CARVE_LEFT" - }, - { - "x": 128.05270814855083, - "y": -3215.985504430032, - "rotation": 0.146607657167524, - "action": "CARVE_LEFT" - }, - { - "x": 128.27903577621512, - "y": -3219.8059921619715, - "rotation": 0.09075712110370546, - "action": "CARVE_LEFT" - }, - { - "x": 128.3662956410594, - "y": -3223.7650045484247, - "rotation": 0.03490658503988691, - "action": "CARVE_LEFT" - }, - { - "x": 128.3138111527501, - "y": -3227.7661368362014, - "rotation": 6.262241356155655, - "action": "CARVE_LEFT" - }, - { - "x": 128.12093326795886, - "y": -3231.6464242490897, - "rotation": 6.206390820091836, - "action": "CARVE_LEFT" - }, - { - "x": 127.7870927708401, - "y": -3235.404570196187, - "rotation": 6.1505402840280174, - "action": "CARVE_LEFT" - }, - { - "x": 127.31180000697427, - "y": -3239.0393536784254, - "rotation": 6.094689747964199, - "action": "CARVE_LEFT" - }, - { - "x": 126.69464461814219, - "y": -3242.549629038185, - "rotation": 6.03883921190038, - "action": "CARVE_LEFT" - }, - { - "x": 125.93529527792847, - "y": -3245.93432570968, - "rotation": 5.982988675836562, - "action": "CARVE_LEFT" - }, - { - "x": 125.03349942815122, - "y": -3249.1924479701315, - "rotation": 5.927138139772743, - "action": "CARVE_LEFT" - }, - { - "x": 123.9890830161156, - "y": -3252.323074691707, - "rotation": 5.871287603708924, - "action": "CARVE_LEFT" - }, - { - "x": 122.801950232689, - "y": -3255.325359094237, - "rotation": 5.815437067645106, - "action": "CARVE_LEFT" - }, - { - "x": 121.47208325119492, - "y": -3258.1985284986995, - "rotation": 5.759586531581287, - "action": "CARVE_LEFT" - }, - { - "x": 119.9995419671236, - "y": -3260.941884081474, - "rotation": 5.7037359955174685, - "action": "CARVE_LEFT" - }, - { - "x": 118.38446373865658, - "y": -3263.55480062936, - "rotation": 5.64788545945365, - "action": "CARVE_LEFT" - }, - { - "x": 116.62706312800285, - "y": -3266.03672629536, - "rotation": 5.592034923389831, - "action": "CARVE_LEFT" - }, - { - "x": 114.72763164354426, - "y": -3268.3871823552213, - "rotation": 5.536184387326013, - "action": "CARVE_LEFT" - }, - { - "x": 112.68653748278766, - "y": -3270.6057629647394, - "rotation": 5.480333851262194, - "action": "CARVE_LEFT" - }, - { - "x": 110.50422527612132, - "y": -3272.6921349178156, - "rotation": 5.424483315198375, - "action": "CARVE_LEFT" - }, - { - "x": 108.1812158313733, - "y": -3274.64603740527, - "rotation": 5.368632779134557, - "action": "CARVE_LEFT" - }, - { - "x": 105.71810587916929, - "y": -3276.4672817744054, - "rotation": 5.312782243070738, - "action": "NOTHING" - }, - { - "x": 102.99261181622362, - "y": -3278.043396471857, - "rotation": 5.3162729015747265, - "action": "NOTHING" - }, - { - "x": 100.27836753086054, - "y": -3279.627798329255, - "rotation": 5.319763560078715, - "action": "NOTHING" - }, - { - "x": 97.57532848909003, - "y": -3281.220498101342, - "rotation": 5.323254218582703, - "action": "NOTHING" - }, - { - "x": 94.8834506167209, - "y": -3282.8215068386257, - "rotation": 5.326744877086692, - "action": "NOTHING" - }, - { - "x": 92.20269029790019, - "y": -3284.430835886351, - "rotation": 5.33023553559068, - "action": "NOTHING" - }, - { - "x": 89.53300437365682, - "y": -3286.0484968834753, - "rotation": 5.333726194094669, - "action": "NOTHING" - }, - { - "x": 86.87435014044992, - "y": -3287.6745017616495, - "rotation": 5.337216852598657, - "action": "NOTHING" - }, - { - "x": 84.22668534872133, - "y": -3289.308862744198, - "rotation": 5.340707511102646, - "action": "NOTHING" - }, - { - "x": 81.5899682014526, - "y": -3290.9515923451054, - "rotation": 5.344198169606634, - "action": "NOTHING" - }, - { - "x": 78.9641573527264, - "y": -3292.602703368005, - "rotation": 5.3476888281106225, - "action": "NOTHING" - }, - { - "x": 76.34921190629218, - "y": -3294.262208905172, - "rotation": 5.351179486614611, - "action": "NOTHING" - }, - { - "x": 73.7450914141363, - "y": -3295.9301223365164, - "rotation": 5.354670145118599, - "action": "NOTHING" - }, - { - "x": 71.15175587505638, - "y": -3297.606457328584, - "rotation": 5.358160803622588, - "action": "NOTHING" - }, - { - "x": 68.56916573324013, - "y": -3299.2912278335566, - "rotation": 5.361651462126576, - "action": "NOTHING" - }, - { - "x": 65.99728187684835, - "y": -3300.9844480882575, - "rotation": 5.365142120630565, - "action": "NOTHING" - }, - { - "x": 63.43606563660231, - "y": -3302.6861326131593, - "rotation": 5.368632779134553, - "action": "NOTHING" - }, - { - "x": 60.88547878437537, - "y": -3304.3962962113956, - "rotation": 5.372123437638542, - "action": "NOTHING" - }, - { - "x": 58.34548353178895, - "y": -3306.1149539677754, - "rotation": 5.37561409614253, - "action": "CARVE_RIGHT" - }, - { - "x": 56.20083007907238, - "y": -3308.1984060165587, - "rotation": 5.431464632206349, - "action": "CARVE_RIGHT" - }, - { - "x": 54.197062333947265, - "y": -3310.4117946888864, - "rotation": 5.487315168270167, - "action": "CARVE_RIGHT" - }, - { - "x": 52.333802329543715, - "y": -3312.7555179648657, - "rotation": 5.543165704333986, - "action": "CARVE_RIGHT" - }, - { - "x": 50.610750438018535, - "y": -3315.2300444908656, - "rotation": 5.5990162403978045, - "action": "CARVE_RIGHT" - }, - { - "x": 49.02768511024636, - "y": -3317.8359133431654, - "rotation": 5.654866776461623, - "action": "CARVE_RIGHT" - }, - { - "x": 47.584462616322746, - "y": -3320.573733792343, - "rotation": 5.710717312525442, - "action": "CARVE_RIGHT" - }, - { - "x": 46.281016786876755, - "y": -3323.4441850684, - "rotation": 5.76656784858926, - "action": "CARVE_RIGHT" - }, - { - "x": 45.11735875519058, - "y": -3326.4480161266247, - "rotation": 5.822418384653079, - "action": "CARVE_RIGHT" - }, - { - "x": 44.093576700123855, - "y": -3329.5860454141853, - "rotation": 5.878268920716898, - "action": "CARVE_RIGHT" - }, - { - "x": 43.20983558984018, - "y": -3332.859160637458, - "rotation": 5.934119456780716, - "action": "CARVE_RIGHT" - }, - { - "x": 42.46637692633349, - "y": -3336.268318530081, - "rotation": 5.989969992844535, - "action": "CARVE_RIGHT" - }, - { - "x": 41.86351849075184, - "y": -3339.8145446217377, - "rotation": 6.0458205289083535, - "action": "CARVE_RIGHT" - }, - { - "x": 41.40165408951624, - "y": -3343.498933007663, - "rotation": 6.101671064972172, - "action": "CARVE_RIGHT" - }, - { - "x": 41.081253301232195, - "y": -3347.3226461188715, - "rotation": 6.157521601035991, - "action": "CARVE_RIGHT" - }, - { - "x": 40.90286122439145, - "y": -3351.28691449311, - "rotation": 6.213372137099809, - "action": "CARVE_RIGHT" - }, - { - "x": 40.86709822586172, - "y": -3355.393036546523, - "rotation": 6.269222673163628, - "action": "CARVE_RIGHT" - }, - { - "x": 40.974630659761914, - "y": -3359.4420973291853, - "rotation": 0.041887902047860415, - "action": "CARVE_RIGHT" - }, - { - "x": 41.22606111646464, - "y": -3363.366540965551, - "rotation": 0.09773843811167895, - "action": "CARVE_RIGHT" - }, - { - "x": 41.62191252054617, - "y": -3367.165115045121, - "rotation": 0.1535889741754975, - "action": "CARVE_RIGHT" - }, - { - "x": 42.162628396325246, - "y": -3370.8366425967074, - "rotation": 0.20943951023931603, - "action": "CARVE_RIGHT" - }, - { - "x": 42.84857313257211, - "y": -3374.3800218385286, - "rotation": 0.2652900463031346, - "action": "CARVE_RIGHT" - }, - { - "x": 43.68003224639021, - "y": -3377.794225929086, - "rotation": 0.32114058236695314, - "action": "CARVE_RIGHT" - }, - { - "x": 44.65721264627308, - "y": -3381.078302718816, - "rotation": 0.3769911184307717, - "action": "CARVE_RIGHT" - }, - { - "x": 45.78024289433893, - "y": -3384.2313745025135, - "rotation": 0.4328416544945903, - "action": "CARVE_RIGHT" - }, - { - "x": 47.049173467745355, - "y": -3387.252637772529, - "rotation": 0.48869219055840885, - "action": "CARVE_RIGHT" - }, - { - "x": 48.463977019286595, - "y": -3390.1413629727317, - "rotation": 0.5445427266222274, - "action": "CARVE_RIGHT" - }, - { - "x": 50.0245486371759, - "y": -3392.8968942532424, - "rotation": 0.6003932626860459, - "action": "CARVE_RIGHT" - }, - { - "x": 51.73070610401532, - "y": -3395.518649225927, - "rotation": 0.6562437987498644, - "action": "NOTHING" - }, - { - "x": 53.61714710463958, - "y": -3397.975244507984, - "rotation": 0.6527531402458757, - "action": "NOTHING" - }, - { - "x": 55.494308950772314, - "y": -3400.4422433499744, - "rotation": 0.649262481741887, - "action": "NOTHING" - }, - { - "x": 57.36220165496973, - "y": -3402.9196786183043, - "rotation": 0.6457718232378984, - "action": "NOTHING" - }, - { - "x": 59.220834879879966, - "y": -3405.407583398025, - "rotation": 0.6422811647339097, - "action": "NOTHING" - }, - { - "x": 61.07021793937006, - "y": -3407.905990992054, - "rotation": 0.6387905062299211, - "action": "NOTHING" - }, - { - "x": 62.910359799649456, - "y": -3410.414934920396, - "rotation": 0.6352998477259324, - "action": "NOTHING" - }, - { - "x": 64.74126908039008, - "y": -3412.9344489193686, - "rotation": 0.6318091892219437, - "action": "NOTHING" - }, - { - "x": 66.56295405584301, - "y": -3415.464566940831, - "rotation": 0.6283185307179551, - "action": "NOTHING" - }, - { - "x": 68.37542265595167, - "y": -3418.0053231514116, - "rotation": 0.6248278722139664, - "action": "CARVE_LEFT" - }, - { - "x": 69.86159239948267, - "y": -3420.8503538465375, - "rotation": 0.5689773361501479, - "action": "CARVE_LEFT" - }, - { - "x": 71.20279719906985, - "y": -3423.832498557134, - "rotation": 0.5131268000863294, - "action": "CARVE_LEFT" - }, - { - "x": 72.39904672476003, - "y": -3426.952487778082, - "rotation": 0.4572762640225108, - "action": "CARVE_LEFT" - }, - { - "x": 73.45027352136869, - "y": -3430.2111215678915, - "rotation": 0.40142572795869225, - "action": "CARVE_LEFT" - }, - { - "x": 74.35633326502169, - "y": -3433.6092693157857, - "rotation": 0.3455751918948737, - "action": "CARVE_LEFT" - }, - { - "x": 75.11700501889635, - "y": -3437.1478695095134, - "rotation": 0.2897246558310551, - "action": "CARVE_LEFT" - }, - { - "x": 75.73199148816416, - "y": -3440.8279295038883, - "rotation": 0.23387411976723657, - "action": "CARVE_LEFT" - }, - { - "x": 76.20091927413769, - "y": -3444.650525290056, - "rotation": 0.17802358370341803, - "action": "CARVE_LEFT" - }, - { - "x": 76.52333912762398, - "y": -3448.6168012654825, - "rotation": 0.12217304763959949, - "action": "CARVE_LEFT" - }, - { - "x": 76.6987262014868, - "y": -3452.7279700046647, - "rotation": 0.06632251157578095, - "action": "CARVE_LEFT" - }, - { - "x": 76.7264803024202, - "y": -3456.9853120305593, - "rotation": 0.010471975511962404, - "action": "CARVE_LEFT" - }, - { - "x": 76.60596021233559, - "y": -3461.165745354719, - "rotation": 6.23780674662773, - "action": "CARVE_LEFT" - }, - { - "x": 76.33659301575693, - "y": -3465.216573885643, - "rotation": 6.181956210563912, - "action": "CARVE_LEFT" - }, - { - "x": 75.91788535381127, - "y": -3469.136573601389, - "rotation": 6.126105674500093, - "action": "CARVE_LEFT" - }, - { - "x": 75.34942315905042, - "y": -3472.924595816022, - "rotation": 6.070255138436274, - "action": "CARVE_LEFT" - }, - { - "x": 74.63087139110134, - "y": -3476.5795669300483, - "rotation": 6.014404602372456, - "action": "CARVE_LEFT" - }, - { - "x": 73.76197377314269, - "y": -3480.100488181633, - "rotation": 5.958554066308637, - "action": "CARVE_LEFT" - }, - { - "x": 72.74255252920506, - "y": -3483.486435398585, - "rotation": 5.9027035302448185, - "action": "CARVE_LEFT" - }, - { "x": 71.57250812229246, "y": -3486.73655875112, "rotation": 5.846852994181, "action": "NOTHING" }, - { - "x": 70.2815558103723, - "y": -3489.8791099285836, - "rotation": 5.850343652684988, - "action": "NOTHING" - }, - { - "x": 68.99971100570886, - "y": -3493.0345092896564, - "rotation": 5.853834311188977, - "action": "NOTHING" - }, - { - "x": 67.72698446977783, - "y": -3496.202802427068, - "rotation": 5.857324969692965, - "action": "NOTHING" - }, - { - "x": 66.46338724644558, - "y": -3499.3840351059503, - "rotation": 5.860815628196954, - "action": "NOTHING" - }, - { - "x": 65.20893066104995, - "y": -3502.5782532632074, - "rotation": 5.864306286700942, - "action": "NOTHING" - }, - { - "x": 63.96362631948391, - "y": -3505.785503006892, - "rotation": 5.867796945204931, - "action": "NOTHING" - }, - { - "x": 62.72748610728197, - "y": -3509.005830615579, - "rotation": 5.871287603708919, - "action": "NOTHING" - }, - { - "x": 61.500522188709446, - "y": -3512.239282537743, - "rotation": 5.874778262212907, - "action": "NOTHING" - }, - { - "x": 60.28274700585452, - "y": -3515.4859053911396, - "rotation": 5.878268920716896, - "action": "NOTHING" - }, - { - "x": 59.074173277723084, - "y": -3518.7457459621864, - "rotation": 5.881759579220884, - "action": "NOTHING" - }, - { - "x": 57.874813999336425, - "y": -3522.018851205347, - "rotation": 5.885250237724873, - "action": "NOTHING" - }, - { - "x": 56.684682440831615, - "y": -3525.305268242516, - "rotation": 5.888740896228861, - "action": "NOTHING" - }, - { - "x": 55.503792146564734, - "y": -3528.6050443624085, - "rotation": 5.89223155473285, - "action": "NOTHING" - }, - { - "x": 54.33215693421683, - "y": -3531.918227019949, - "rotation": 5.895722213236838, - "action": "NOTHING" - }, - { - "x": 53.16979089390266, - "y": -3535.2448638356627, - "rotation": 5.8992128717408265, - "action": "NOTHING" - }, - { - "x": 52.016708387282115, - "y": -3538.5850025950713, - "rotation": 5.902703530244815, - "action": "NOTHING" - }, - { - "x": 50.87292404667449, - "y": -3541.9386912480873, - "rotation": 5.906194188748803, - "action": "NOTHING" - }, - { - "x": 49.738452774175386, - "y": -3545.3059779084124, - "rotation": 5.909684847252792, - "action": "NOTHING" - }, - { - "x": 48.61330974077639, - "y": -3548.6869108529377, - "rotation": 5.91317550575678, - "action": "NOTHING" - }, - { - "x": 47.497510385487445, - "y": -3552.0815385211445, - "rotation": 5.916666164260769, - "action": "CARVE_RIGHT" - }, - { - "x": 46.64533883088032, - "y": -3555.725343233416, - "rotation": 5.972516700324587, - "action": "CARVE_RIGHT" - }, - { - "x": 45.94545034651173, - "y": -3559.515961990714, - "rotation": 6.028367236388406, - "action": "CARVE_RIGHT" - }, - { - "x": 45.39815646176669, - "y": -3563.454415384834, - "rotation": 6.084217772452225, - "action": "CARVE_RIGHT" - }, - { - "x": 45.00384477626212, - "y": -3567.541792612625, - "rotation": 6.140068308516043, - "action": "CARVE_RIGHT" - }, - { - "x": 44.762978706572596, - "y": -3571.7792512460514, - "rotation": 6.195918844579862, - "action": "CARVE_RIGHT" - }, - { - "x": 44.67609723374707, - "y": -3576.1680170029776, - "rotation": 6.2517693806436805, - "action": "CARVE_RIGHT" - }, - { - "x": 44.743804773214165, - "y": -3580.583336706323, - "rotation": 0.024434609527912876, - "action": "CARVE_RIGHT" - }, - { - "x": 44.96667141461762, - "y": -3584.8630222115344, - "rotation": 0.08028514559173142, - "action": "CARVE_RIGHT" - }, - { - "x": 45.34518771404363, - "y": -3589.0058525542554, - "rotation": 0.13613568165554996, - "action": "CARVE_RIGHT" - }, - { - "x": 45.87976495910158, - "y": -3593.01068208373, - "rotation": 0.1919862177193685, - "action": "CARVE_RIGHT" - }, - { - "x": 46.57073543317643, - "y": -3596.876440213335, - "rotation": 0.24783675378318704, - "action": "CARVE_RIGHT" - }, - { - "x": 47.41835267885532, - "y": -3600.6021311718855, - "rotation": 0.3036872898470056, - "action": "CARVE_RIGHT" - }, - { - "x": 48.422791760530764, - "y": -3604.186833755715, - "rotation": 0.35953782591082417, - "action": "CARVE_RIGHT" - }, - { - "x": 49.584149526183, - "y": -3607.629701081528, - "rotation": 0.41538836197464274, - "action": "CARVE_RIGHT" - }, - { - "x": 50.90244486834387, - "y": -3610.929960340024, - "rotation": 0.4712388980384613, - "action": "CARVE_RIGHT" - }, - { - "x": 52.37761898424481, - "y": -3614.0869125502854, - "rotation": 0.5270894341022798, - "action": "CARVE_RIGHT" - }, - { - "x": 54.009535635151224, - "y": -3617.099932314933, - "rotation": 0.5829399701660983, - "action": "CARVE_RIGHT" - }, - { - "x": 55.79798140488586, - "y": -3619.9684675760436, - "rotation": 0.6387905062299168, - "action": "CARVE_RIGHT" - }, - { - "x": 57.74266595754351, - "y": -3622.692039371828, - "rotation": 0.6946410422937354, - "action": "CARVE_RIGHT" - }, - { - "x": 59.843222294399496, - "y": -3625.270241594067, - "rotation": 0.7504915783575539, - "action": "CARVE_RIGHT" - }, - { - "x": 62.099207010014375, - "y": -3627.7027407463056, - "rotation": 0.8063421144213724, - "action": "CARVE_RIGHT" - }, - { - "x": 64.51010054753725, - "y": -3629.9892757027956, - "rotation": 0.8621926504851909, - "action": "CARVE_RIGHT" - }, - { - "x": 67.0753074532101, - "y": -3632.1296574681965, - "rotation": 0.9180431865490094, - "action": "CARVE_RIGHT" - }, - { - "x": 69.79415663007558, - "y": -3634.12376893802, - "rotation": 0.9738937226128279, - "action": "NOTHING" - }, - { - "x": 72.80210250790067, - "y": -3635.846946032964, - "rotation": 0.9704030641088393, - "action": "NOTHING" - }, - { - "x": 75.79710277370339, - "y": -3637.578912358622, - "rotation": 0.9669124056048506, - "action": "NOTHING" - }, - { - "x": 78.7792089822021, - "y": -3639.3196748394284, - "rotation": 0.9634217471008619, - "action": "NOTHING" - }, - { - "x": 81.7484722043717, - "y": -3641.0692407110773, - "rotation": 0.9599310885968733, - "action": "NOTHING" - }, - { - "x": 84.70494302897998, - "y": -3642.8276175194414, - "rotation": 0.9564404300928846, - "action": "NOTHING" - }, - { - "x": 87.64867156411965, - "y": -3644.594813119495, - "rotation": 0.9529497715888959, - "action": "NOTHING" - }, - { - "x": 90.57970743873538, - "y": -3646.370835674239, - "rotation": 0.9494591130849073, - "action": "NOTHING" - }, - { - "x": 93.49809980414645, - "y": -3648.1556936536317, - "rotation": 0.9459684545809186, - "action": "NOTHING" - }, - { - "x": 96.40389733556466, - "y": -3649.9493958335197, - "rotation": 0.9424777960769299, - "action": "NOTHING" - }, - { - "x": 99.29714823360771, - "y": -3651.751951294575, - "rotation": 0.9389871375729413, - "action": "NOTHING" - }, - { - "x": 102.17790022580789, - "y": -3653.563369421235, - "rotation": 0.9354964790689526, - "action": "NOTHING" - }, - { - "x": 105.04620056811629, - "y": -3655.3836599006445, - "rotation": 0.932005820564964, - "action": "NOTHING" - }, - { - "x": 107.90209604640243, - "y": -3657.212832721602, - "rotation": 0.9285151620609753, - "action": "NOTHING" - }, - { - "x": 110.7456329779493, - "y": -3659.05089817351, - "rotation": 0.9250245035569866, - "action": "NOTHING" - }, - { - "x": 113.57685721294382, - "y": -3660.897866845329, - "rotation": 0.921533845052998, - "action": "NOTHING" - }, - { - "x": 116.39581413596295, - "y": -3662.7537496245313, - "rotation": 0.9180431865490093, - "action": "NOTHING" - }, - { - "x": 119.2025486674551, - "y": -3664.618557696063, - "rotation": 0.9145525280450206, - "action": "NOTHING" - }, - { - "x": 121.99710526521714, - "y": -3666.492302541306, - "rotation": 0.911061869541032, - "action": "NOTHING" - }, - { - "x": 124.77952792586689, - "y": -3668.374995937045, - "rotation": 0.9075712110370433, - "action": "NOTHING" - }, - { - "x": 127.54986018631116, - "y": -3670.2666499544366, - "rotation": 0.9040805525330546, - "action": "NOTHING" - }, - { - "x": 130.3081451252094, - "y": -3672.167276957984, - "rotation": 0.900589894029066, - "action": "NOTHING" - }, - { - "x": 133.05442536443263, - "y": -3674.0768896045115, - "rotation": 0.8970992355250773, - "action": "NOTHING" - }, - { - "x": 135.78874307051842, - "y": -3675.995500842144, - "rotation": 0.8936085770210886, - "action": "NOTHING" - }, - { - "x": 138.51113995612096, - "y": -3677.9231239092915, - "rotation": 0.8901179185171, - "action": "NOTHING" - }, - { - "x": 141.22165728145697, - "y": -3679.8597723336347, - "rotation": 0.8866272600131113, - "action": "NOTHING" - }, - { - "x": 143.92033585574728, - "y": -3681.805459931114, - "rotation": 0.8831366015091227, - "action": "CARVE_LEFT" - }, - { - "x": 146.19458801056462, - "y": -3684.142263793893, - "rotation": 0.8272860654453041, - "action": "CARVE_LEFT" - }, - { - "x": 148.31476959976922, - "y": -3686.6206057722243, - "rotation": 0.7714355293814856, - "action": "CARVE_LEFT" - }, - { - "x": 150.2812898886492, - "y": -3689.240856382972, - "rotation": 0.7155849933176671, - "action": "CARVE_LEFT" - }, - { - "x": 152.09447967293127, - "y": -3692.0034569263375, - "rotation": 0.6597344572538486, - "action": "CARVE_LEFT" - }, - { - "x": 153.75459153954657, - "y": -3694.908919249091, - "rotation": 0.6038839211900301, - "action": "CARVE_LEFT" - }, - { - "x": 155.2618001265833, - "y": -3697.9578255085485, - "rotation": 0.5480333851262116, - "action": "CARVE_LEFT" - }, - { - "x": 156.61620238242818, - "y": -3701.150827937287, - "rotation": 0.492182849062393, - "action": "CARVE_LEFT" - }, - { - "x": 157.81781782409954, - "y": -3704.4886486085966, - "rotation": 0.43633231299857445, - "action": "CARVE_LEFT" - }, - { - "x": 158.86658879477412, - "y": -3707.972079202665, - "rotation": 0.3804817769347559, - "action": "CARVE_LEFT" - }, - { - "x": 159.76238072051038, - "y": -3711.6019807735, - "rotation": 0.3246312408709373, - "action": "CARVE_LEFT" - }, - { - "x": 160.50498236617045, - "y": -3715.3792835165764, - "rotation": 0.26878070480711874, - "action": "CARVE_LEFT" - }, - { - "x": 161.0941060905432, - "y": -3719.3049865372145, - "rotation": 0.2129301687433002, - "action": "CARVE_LEFT" - }, - { - "x": 161.52938810067076, - "y": -3723.3801576196847, - "rotation": 0.15707963267948166, - "action": "CARVE_LEFT" - }, - { - "x": 161.8103887053811, - "y": -3727.605932997034, - "rotation": 0.10122909661566312, - "action": "CARVE_LEFT" - }, - { - "x": 161.93659256802871, - "y": -3731.983517121635, - "rotation": 0.045378560551844575, - "action": "CARVE_LEFT" - }, - { - "x": 161.90741077284616, - "y": -3736.4598603950067, - "rotation": 6.272713331667612, - "action": "CARVE_LEFT" - }, - { - "x": 161.72225805858042, - "y": -3740.7999410754064, - "rotation": 6.216862795603793, - "action": "CARVE_LEFT" - }, - { - "x": 161.38062874611714, - "y": -3745.002523887454, - "rotation": 6.161012259539975, - "action": "CARVE_LEFT" - }, - { - "x": 160.88209647325178, - "y": -3749.066448914987, - "rotation": 6.105161723476156, - "action": "CARVE_LEFT" - }, - { - "x": 160.22631393028956, - "y": -3752.9906313514525, - "rotation": 6.0493111874123375, - "action": "CARVE_LEFT" - }, - { - "x": 159.41301259647167, - "y": -3756.774061251074, - "rotation": 5.993460651348519, - "action": "CARVE_LEFT" - }, - { - "x": 158.44200247722526, - "y": -3760.415803280795, - "rotation": 5.9376101152847, - "action": "CARVE_LEFT" - }, - { - "x": 157.31317184223482, - "y": -3763.9149964729954, - "rotation": 5.881759579220882, - "action": "CARVE_LEFT" - }, - { - "x": 156.02648696433232, - "y": -3767.270853978975, - "rotation": 5.825909043157063, - "action": "CARVE_LEFT" - }, - { - "x": 154.58199185920378, - "y": -3770.4826628232076, - "rotation": 5.770058507093244, - "action": "CARVE_LEFT" - }, - { - "x": 152.97980802590982, - "y": -3773.549783658359, - "rotation": 5.714207971029426, - "action": "CARVE_LEFT" - }, - { - "x": 151.22013418821768, - "y": -3776.4716505210695, - "rotation": 5.658357434965607, - "action": "CARVE_LEFT" - }, - { - "x": 149.3032460367423, - "y": -3779.2477705884958, - "rotation": 5.6025068989017885, - "action": "CARVE_LEFT" - }, - { - "x": 147.2294959718941, - "y": -3781.877723935613, - "rotation": 5.54665636283797, - "action": "CARVE_LEFT" - }, - { - "x": 144.99931284763088, - "y": -3784.361163293273, - "rotation": 5.490805826774151, - "action": "CARVE_LEFT" - }, - { - "x": 142.61320171601162, - "y": -3786.697813807014, - "rotation": 5.434955290710333, - "action": "CARVE_LEFT" - }, - { - "x": 140.07174357254962, - "y": -3788.8874727966263, - "rotation": 5.379104754646514, - "action": "CARVE_LEFT" - }, - { - "x": 137.37559510236267, - "y": -3790.930009516465, - "rotation": 5.323254218582695, - "action": "CARVE_LEFT" - }, - { - "x": 134.52548842711778, - "y": -3792.82536491651, - "rotation": 5.267403682518877, - "action": "CARVE_LEFT" - }, - { - "x": 131.52223085276822, - "y": -3794.5735514041726, - "rotation": 5.211553146455058, - "action": "CARVE_LEFT" - }, - { - "x": 128.36670461808018, - "y": -3796.1746526068437, - "rotation": 5.15570261039124, - "action": "CARVE_LEFT" - }, - { - "x": 125.05986664394723, - "y": -3797.6288231351823, - "rotation": 5.099852074327421, - "action": "CARVE_LEFT" - }, - { - "x": 121.60274828348955, - "y": -3798.9362883471445, - "rotation": 5.044001538263602, - "action": "CARVE_LEFT" - }, - { - "x": 117.9964550729361, - "y": -3800.097344112746, - "rotation": 4.988151002199784, - "action": "CARVE_LEFT" - }, - { - "x": 114.24216648328711, - "y": -3801.112356579562, - "rotation": 4.932300466135965, - "action": "CARVE_LEFT" - }, - { - "x": 110.34113567275463, - "y": -3801.9817619389537, - "rotation": 4.876449930072146, - "action": "CARVE_LEFT" - }, - { - "x": 106.29468923997877, - "y": -3802.7060661930304, - "rotation": 4.820599394008328, - "action": "CARVE_LEFT" - }, - { - "x": 102.1042269780173, - "y": -3803.2858449223354, - "rotation": 4.764748857944509, - "action": "NOTHING" - }, - { - "x": 97.46969709130197, - "y": -3803.444047000735, - "rotation": 4.768239516448498, - "action": "NOTHING" - }, - { - "x": 92.85658104099466, - "y": -3803.611746455134, - "rotation": 4.771730174952486, - "action": "CARVE_RIGHT" - }, - { - "x": 88.86743137026825, - "y": -3804.3469347992814, - "rotation": 4.827580711016305, - "action": "CARVE_RIGHT" - }, - { - "x": 85.03955851290905, - "y": -3805.2219680792264, - "rotation": 4.883431247080123, - "action": "CARVE_RIGHT" - }, - { - "x": 81.37166618657967, - "y": -3806.2364164138294, - "rotation": 4.939281783143942, - "action": "CARVE_RIGHT" - }, - { - "x": 77.86253951703031, - "y": -3807.389923373859, - "rotation": 4.995132319207761, - "action": "CARVE_RIGHT" - }, - { - "x": 74.51104476818412, - "y": -3808.682205736886, - "rotation": 5.050982855271579, - "action": "CARVE_RIGHT" - }, - { - "x": 71.31612907306325, - "y": -3810.1130532429434, - "rotation": 5.106833391335398, - "action": "CARVE_RIGHT" - }, - { - "x": 68.27682016555326, - "y": -3811.6823283509516, - "rotation": 5.162683927399216, - "action": "CARVE_RIGHT" - }, - { - "x": 65.3922261130032, - "y": -3813.389965995904, - "rotation": 5.218534463463035, - "action": "CARVE_RIGHT" - }, - { - "x": 62.661535049658944, - "y": -3815.2359733468124, - "rotation": 5.274384999526854, - "action": "CARVE_RIGHT" - }, - { - "x": 60.08401491092728, - "y": -3817.220429565413, - "rotation": 5.330235535590672, - "action": "CARVE_RIGHT" - }, - { - "x": 57.65901316846829, - "y": -3819.34348556562, - "rotation": 5.386086071654491, - "action": "CARVE_RIGHT" - }, - { - "x": 55.385956566113485, - "y": -3821.605363773742, - "rotation": 5.44193660771831, - "action": "CARVE_RIGHT" - }, - { - "x": 53.26435085660723, - "y": -3824.0063578894383, - "rotation": 5.497787143782128, - "action": "CARVE_RIGHT" - }, - { - "x": 51.29378053916905, - "y": -3826.546832647433, - "rotation": 5.553637679845947, - "action": "CARVE_RIGHT" - }, - { - "x": 49.47390859787429, - "y": -3829.2272235799674, - "rotation": 5.609488215909765, - "action": "CARVE_RIGHT" - }, - { - "x": 47.80447624085072, - "y": -3832.048036780002, - "rotation": 5.665338751973584, - "action": "CARVE_RIGHT" - }, - { - "x": 46.285302640288606, - "y": -3835.009848665156, - "rotation": 5.721189288037403, - "action": "CARVE_RIGHT" - }, - { - "x": 44.916284673261885, - "y": -3838.1133057423876, - "rotation": 5.777039824101221, - "action": "CARVE_RIGHT" - }, - { - "x": 43.69739666335787, - "y": -3841.3591243734127, - "rotation": 5.83289036016504, - "action": "CARVE_RIGHT" - }, - { - "x": 42.62869012311325, - "y": -3844.7480905408547, - "rotation": 5.8887408962288585, - "action": "CARVE_RIGHT" - }, - { - "x": 41.71029349725379, - "y": -3848.2810596151326, - "rotation": 5.944591432292677, - "action": "CARVE_RIGHT" - }, - { - "x": 40.94241190673544, - "y": -3851.9589561220732, - "rotation": 6.000441968356496, - "action": "CARVE_RIGHT" - }, - { - "x": 40.325326893584396, - "y": -3855.782773511257, - "rotation": 6.056292504420314, - "action": "CARVE_RIGHT" - }, - { - "x": 39.85939616653378, - "y": -3859.7535739250857, - "rotation": 6.112143040484133, - "action": "CARVE_RIGHT" - }, - { - "x": 39.545053347454406, - "y": -3863.872487968578, - "rotation": 6.167993576547952, - "action": "CARVE_RIGHT" - }, - { - "x": 39.382807718577475, - "y": -3868.1407144798823, - "rotation": 6.22384411261177, - "action": "CARVE_RIGHT" - }, - { - "x": 39.373243970506586, - "y": -3872.5595203015137, - "rotation": 6.279694648675589, - "action": "CARVE_RIGHT" - }, - { - "x": 39.51697659101689, - "y": -3876.862626532841, - "rotation": 0.0523598775598213, - "action": "CARVE_RIGHT" - }, - { - "x": 39.81454380739891, - "y": -3881.031056176903, - "rotation": 0.10821041362363984, - "action": "SLIDE_RIGHT" - }, - { - "x": 40.14314856900183, - "y": -3885.1152107993894, - "rotation": 0.1815142422074017, - "action": "SLIDE_RIGHT" - }, - { - "x": 40.59853267458685, - "y": -3889.025599428018, - "rotation": 0.25481807079116353, - "action": "SLIDE_RIGHT" - }, - { - "x": 41.1771728255263, - "y": -3892.7646453206135, - "rotation": 0.32812189937492536, - "action": "SLIDE_RIGHT" - }, - { - "x": 41.875469951426744, - "y": -3896.3348439916826, - "rotation": 0.4014257279586872, - "action": "SLIDE_RIGHT" - }, - { - "x": 42.68974946283244, - "y": -3899.738762973185, - "rotation": 0.474729556542449, - "action": "SLIDE_RIGHT" - }, - { - "x": 43.616261503138816, - "y": -3902.9790415760494, - "rotation": 0.5480333851262109, - "action": "SLIDE_RIGHT" - }, - { - "x": 44.65118119971842, - "y": -3906.0583906524307, - "rotation": 0.6213372137099727, - "action": "SLIDE_RIGHT" - }, - { - "x": 45.79060891426165, - "y": -3908.979592358709, - "rotation": 0.6946410422937346, - "action": "SLIDE_RIGHT" - }, - { - "x": 47.03057049233457, - "y": -3911.745499919225, - "rotation": 0.7679448708774964, - "action": "SLIDE_RIGHT" - }, - { - "x": 48.36701751215632, - "y": -3914.3590373907527, - "rotation": 0.8412486994612582, - "action": "SLIDE_RIGHT" - }, - { - "x": 49.7958275325983, - "y": -3916.823199427704, - "rotation": 0.9145525280450201, - "action": "CARVE_RIGHT" - }, - { - "x": 52.06864019473416, - "y": -3918.503736368132, - "rotation": 0.9704030641088386, - "action": "CARVE_RIGHT" - }, - { - "x": 54.470431726859594, - "y": -3920.0619659461677, - "rotation": 1.0262536001726572, - "action": "CARVE_RIGHT" - }, - { - "x": 57.00050774904153, - "y": -3921.4977916457333, - "rotation": 1.0821041362364758, - "action": "CARVE_RIGHT" - }, - { - "x": 59.658098515832606, - "y": -3922.8111885822864, - "rotation": 1.1379546723002945, - "action": "CARVE_RIGHT" - }, - { - "x": 62.44235916841463, - "y": -3924.0022032647316, - "rotation": 1.193805208364113, - "action": "CARVE_RIGHT" - }, - { - "x": 65.35236998595236, - "y": -3925.0709533580753, - "rotation": 1.2496557444279317, - "action": "CARVE_RIGHT" - }, - { - "x": 68.38713663615995, - "y": -3926.017627446821, - "rotation": 1.3055062804917503, - "action": "CARVE_RIGHT" - }, - { - "x": 71.54559042508242, - "y": -3926.8424847991037, - "rotation": 1.361356816555569, - "action": "CARVE_RIGHT" - }, - { - "x": 74.82658854609465, - "y": -3927.545855131559, - "rotation": 1.4172073526193876, - "action": "CARVE_RIGHT" - }, - { - "x": 78.22891432812001, - "y": -3928.1281383749283, - "rotation": 1.4730578886832062, - "action": "CARVE_RIGHT" - }, - { - "x": 81.75127748307116, - "y": -3928.589804440392, - "rotation": 1.5289084247470248, - "action": "CARVE_RIGHT" - }, - { - "x": 85.36041617252027, - "y": -3928.96111500515, - "rotation": 1.5707963267948966, - "action": "CARVE_RIGHT" - }, - { - "x": 88.95985161524575, - "y": -3929.3314272934963, - "rotation": 1.5707963267948966, - "action": "CARVE_RIGHT" - }, - { - "x": 92.54960806936442, - "y": -3929.7007438011215, - "rotation": 1.5707963267948966, - "action": "NOTHING" - }, - { - "x": 96.51946365682007, - "y": -3929.7089304207443, - "rotation": 1.567305668290908, - "action": "NOTHING" - }, - { - "x": 100.4706755119875, - "y": -3929.7252631417064, - "rotation": 1.5638150097869192, - "action": "NOTHING" - }, - { - "x": 104.40336190937073, - "y": -3929.749701908779, - "rotation": 1.5603243512829306, - "action": "NOTHING" - }, - { - "x": 108.31764043750461, - "y": -3929.7822071282453, - "rotation": 1.556833692778942, - "action": "NOTHING" - }, - { - "x": 112.21362800108538, - "y": -3929.82273966636, - "rotation": 1.5533430342749532, - "action": "NOTHING" - }, - { - "x": 116.09144082309503, - "y": -3929.8712608478168, - "rotation": 1.5498523757709646, - "action": "NOTHING" - }, - { - "x": 119.95119444691912, - "y": -3929.927732454218, - "rotation": 1.546361717266976, - "action": "NOTHING" - }, - { - "x": 123.79300373845844, - "y": -3929.992116722553, - "rotation": 1.5428710587629872, - "action": "CARVE_LEFT" - }, - { - "x": 127.11752438703907, - "y": -3930.5268379188556, - "rotation": 1.4870205226991686, - "action": "CARVE_LEFT" - }, - { - "x": 130.31021447026268, - "y": -3931.1757586674785, - "rotation": 1.43116998663535, - "action": "CARVE_LEFT" - }, - { - "x": 133.37226984970204, - "y": -3931.938538020319, - "rotation": 1.3753194505715314, - "action": "CARVE_LEFT" - }, - { - "x": 136.304805369483, - "y": -3932.814908129601, - "rotation": 1.3194689145077128, - "action": "CARVE_LEFT" - }, - { - "x": 139.10885512487377, - "y": -3933.8046740039717, - "rotation": 1.2636183784438941, - "action": "CARVE_LEFT" - }, - { - "x": 141.7853727300373, - "y": -3934.907713265359, - "rotation": 1.2077678423800755, - "action": "CARVE_LEFT" - }, - { - "x": 144.33523158494972, - "y": -3936.1239759065907, - "rotation": 1.1519173063162569, - "action": "CARVE_LEFT" - }, - { - "x": 146.7592251414873, - "y": -3937.453484049773, - "rotation": 1.0960667702524383, - "action": "CARVE_LEFT" - }, - { - "x": 149.05806716868403, - "y": -3938.8963317054213, - "rotation": 1.0402162341886196, - "action": "CARVE_LEFT" - }, - { - "x": 151.2323920171629, - "y": -3940.4526845323467, - "rotation": 0.9843656981248011, - "action": "CARVE_LEFT" - }, - { - "x": 153.28275488274284, - "y": -3942.1227795982954, - "rotation": 0.9285151620609826, - "action": "CARVE_LEFT" - }, - { - "x": 155.20963206922403, - "y": -3943.9069251413334, - "rotation": 0.8726646259971641, - "action": "CARVE_LEFT" - }, - { - "x": 157.01342125035404, - "y": -3945.8055003319814, - "rotation": 0.8168140899333456, - "action": "CARVE_LEFT" - }, - { - "x": 158.69444173097725, - "y": -3947.8189550360917, - "rotation": 0.7609635538695271, - "action": "CARVE_LEFT" - }, - { - "x": 160.25293470736977, - "y": -3949.947809578469, - "rotation": 0.7051130178057086, - "action": "CARVE_LEFT" - }, - { - "x": 161.6890635267628, - "y": -3952.1926545072292, - "rotation": 0.64926248174189, - "action": "CARVE_LEFT" - }, - { - "x": 163.0029139460562, - "y": -3954.5541503589, - "rotation": 0.5934119456780715, - "action": "CARVE_LEFT" - }, - { - "x": 164.19449438972535, - "y": -3957.0330274242533, - "rotation": 0.537561409614253, - "action": "CARVE_LEFT" - }, - { - "x": 165.26373620692326, - "y": -3959.6300855148706, - "rotation": 0.48171087355043446, - "action": "CARVE_LEFT" - }, - { - "x": 166.21049392778048, - "y": -3962.3461937304446, - "rotation": 0.4258603374866159, - "action": "CARVE_LEFT" - }, - { - "x": 167.0345455189054, - "y": -3965.182290226804, - "rotation": 0.3700098014227973, - "action": "CARVE_LEFT" - }, - { - "x": 167.7355926380869, - "y": -3968.1393819846685, - "rotation": 0.31415926535897876, - "action": "CARVE_LEFT" - }, - { - "x": 168.31326088820225, - "y": -3971.2185445791274, - "rotation": 0.2583087292951602, - "action": "CARVE_LEFT" - }, - { - "x": 168.7671000703323, - "y": -3974.4209219498407, - "rotation": 0.20245819323134165, - "action": "CARVE_LEFT" - }, - { - "x": 169.09658443608643, - "y": -3977.7477261719614, - "rotation": 0.1466076571675231, - "action": "CARVE_LEFT" - }, - { - "x": 169.30111293913959, - "y": -3981.2002372277734, - "rotation": 0.09075712110370457, - "action": "CARVE_LEFT" - }, - { - "x": 169.38000948598403, - "y": -3984.7798027790486, - "rotation": 0.03490658503988602, - "action": "CARVE_LEFT" - }, - { - "x": 169.33253044349763, - "y": -3988.399347067363, - "rotation": 6.262241356155654, - "action": "CARVE_LEFT" - }, - { - "x": 169.15795997680365, - "y": -3991.9113286784627, - "rotation": 6.206390820091835, - "action": "CARVE_LEFT" - }, - { - "x": 168.8556623289111, - "y": -3995.3143869953815, - "rotation": 6.150540284028017, - "action": "CARVE_LEFT" - }, - { - "x": 168.42508155382345, - "y": -3998.6072372301055, - "rotation": 6.094689747964198, - "action": "CARVE_LEFT" - }, - { - "x": 167.86574125048094, - "y": -4001.788670172398, - "rotation": 6.038839211900379, - "action": "CARVE_LEFT" - }, - { - "x": 167.17724429753468, - "y": -4004.857551939406, - "rotation": 5.982988675836561, - "action": "CARVE_LEFT" - }, - { - "x": 166.3592725889496, - "y": -4007.8128237260516, - "rotation": 5.927138139772742, - "action": "CARVE_LEFT" - }, - { - "x": 165.41158677043384, - "y": -4010.6535015561913, - "rotation": 5.871287603708923, - "action": "CARVE_LEFT" - }, - { - "x": 164.33402597669226, - "y": -4013.3786760345592, - "rotation": 5.815437067645105, - "action": "CARVE_LEFT" - }, - { - "x": 163.1265075695013, - "y": -4015.987512099478, - "rotation": 5.759586531581286, - "action": "CARVE_LEFT" - }, - { - "x": 161.78902687660323, - "y": -4018.4792487763407, - "rotation": 5.703735995517468, - "action": "CARVE_LEFT" - }, - { - "x": 160.32165693141658, - "y": -4020.8531989318626, - "rotation": 5.647885459453649, - "action": "CARVE_LEFT" - }, - { - "x": 158.72454821356115, - "y": -4023.1087490290956, - "rotation": 5.59203492338983, - "action": "CARVE_LEFT" - }, - { - "x": 156.99792839019443, - "y": -4025.24535888321, - "rotation": 5.536184387326012, - "action": "CARVE_LEFT" - }, - { - "x": 155.1421020581575, - "y": -4027.262561418033, - "rotation": 5.480333851262193, - "action": "CARVE_LEFT" - }, - { - "x": 153.15745048692756, - "y": -4029.159962423349, - "rotation": 5.4244833151983745, - "action": "CARVE_LEFT" - }, - { - "x": 151.04443136237518, - "y": -4030.937240312957, - "rotation": 5.368632779134556, - "action": "CARVE_LEFT" - }, - { - "x": 148.80357853132327, - "y": -4032.594145883479, - "rotation": 5.312782243070737, - "action": "CARVE_LEFT" - }, - { - "x": 146.43550174690586, - "y": -4034.1305020739237, - "rotation": 5.256931707006919, - "action": "CARVE_LEFT" - }, - { - "x": 143.94088641472396, - "y": -4035.546203725998, - "rotation": 5.2010811709431, - "action": "CARVE_LEFT" - }, - { - "x": 141.32049333979634, - "y": -4036.8412173451684, - "rotation": 5.145230634879281, - "action": "CARVE_LEFT" - }, - { - "x": 138.57515847430253, - "y": -4038.015580862463, - "rotation": 5.089380098815463, - "action": "CARVE_LEFT" - }, - { - "x": 135.70579266611605, - "y": -4039.0694033970235, - "rotation": 5.033529562751644, - "action": "CARVE_LEFT" - }, - { - "x": 132.71338140812531, - "y": -4040.0028650193913, - "rotation": 4.9776790266878255, - "action": "CARVE_LEFT" - }, - { - "x": 129.59898458833962, - "y": -4040.816216515537, - "rotation": 4.921828490624007, - "action": "CARVE_LEFT" - }, - { - "x": 126.36373624077832, - "y": -4041.5097791516223, - "rotation": 4.865977954560188, - "action": "NOTHING" - }, - { - "x": 122.78479331168577, - "y": -4041.877983156673, - "rotation": 4.869468613064177, - "action": "NOTHING" - }, - { - "x": 119.22153113579687, - "y": -4042.2536479441933, - "rotation": 4.872959271568165, - "action": "NOTHING" - }, - { - "x": 115.6738536293389, - "y": -4042.6367488604774, - "rotation": 4.8764499300721535, - "action": "NOTHING" - }, - { - "x": 112.1416653267133, - "y": -4043.027261663421, - "rotation": 4.879940588576142, - "action": "NOTHING" - }, - { - "x": 108.62487137856533, - "y": -4043.4251625211364, - "rotation": 4.88343124708013, - "action": "NOTHING" - }, - { - "x": 105.1233775498595, - "y": -4043.83042801057, - "rotation": 4.886921905584119, - "action": "NOTHING" - }, - { - "x": 101.63709021796076, - "y": -4044.2430351161274, - "rotation": 4.890412564088107, - "action": "NOTHING" - }, - { - "x": 98.16591637072152, - "y": -4044.6629612283004, - "rotation": 4.893903222592096, - "action": "NOTHING" - }, - { - "x": 94.70976360457429, - "y": -4045.0901841422983, - "rotation": 4.897393881096084, - "action": "NOTHING" - }, - { - "x": 91.26854012263017, - "y": -4045.5246820566854, - "rotation": 4.900884539600073, - "action": "NOTHING" - }, - { - "x": 87.84215473278293, - "y": -4045.9664335720195, - "rotation": 4.904375198104061, - "action": "NOTHING" - }, - { - "x": 84.43051684581884, - "y": -4046.415417689499, - "rotation": 4.9078658566080495, - "action": "NOTHING" - }, - { - "x": 81.03353647353218, - "y": -4046.871613809611, - "rotation": 4.911356515112038, - "action": "NOTHING" - }, - { - "x": 77.65112422684635, - "y": -4047.335001730784, - "rotation": 4.914847173616026, - "action": "NOTHING" - }, - { - "x": 74.28319131394068, - "y": -4047.805561648046, - "rotation": 4.918337832120015, - "action": "NOTHING" - }, - { - "x": 70.9296495383828, - "y": -4048.283274151687, - "rotation": 4.921828490624003, - "action": "NOTHING" - }, - { - "x": 67.5904112972667, - "y": -4048.7681202259228, - "rotation": 4.925319149127992, - "action": "NOTHING" - }, - { - "x": 64.26538957935624, - "y": -4049.2600812475685, - "rotation": 4.92880980763198, - "action": "NOTHING" - }, - { - "x": 60.95449796323441, - "y": -4049.75913898471, - "rotation": 4.932300466135969, - "action": "NOTHING" - }, - { - "x": 57.657650615458, - "y": -4050.2652755953836, - "rotation": 4.935791124639957, - "action": "CARVE_RIGHT" - }, - { - "x": 54.81816538739448, - "y": -4051.1890320509597, - "rotation": 4.991641660703776, - "action": "CARVE_RIGHT" - }, - { - "x": 52.10537011222786, - "y": -4052.224991744866, - "rotation": 5.047492196767594, - "action": "CARVE_RIGHT" - }, - { - "x": 49.518357681736326, - "y": -4053.3730741844333, - "rotation": 5.103342732831413, - "action": "CARVE_RIGHT" - }, - { - "x": 47.056301045090976, - "y": -4054.6332711056516, - "rotation": 5.1591932688952316, - "action": "CARVE_RIGHT" - }, - { - "x": 44.71845294326227, - "y": -4056.0056462319976, - "rotation": 5.21504380495905, - "action": "CARVE_RIGHT" - }, - { - "x": 42.5041456442541, - "y": -4057.4903350340146, - "rotation": 5.270894341022869, - "action": "CARVE_RIGHT" - }, - { - "x": 40.41279067916301, - "y": -4059.0875444896465, - "rotation": 5.326744877086687, - "action": "CARVE_RIGHT" - }, - { - "x": 38.44387857906002, - "y": -4060.7975528453203, - "rotation": 5.382595413150506, - "action": "CARVE_RIGHT" - }, - { - "x": 36.59697861269273, - "y": -4062.6207093777766, - "rotation": 5.438445949214325, - "action": "CARVE_RIGHT" - }, - { - "x": 34.871738525005085, - "y": -4064.5574341566457, - "rotation": 5.494296485278143, - "action": "CARVE_RIGHT" - }, - { - "x": 33.26788427647247, - "y": -4066.6082178077677, - "rotation": 5.550147021341962, - "action": "CARVE_RIGHT" - }, - { - "x": 31.78521978324967, - "y": -4068.773621277251, - "rotation": 5.6059975574057805, - "action": "CARVE_RIGHT" - }, - { - "x": 30.423626658129184, - "y": -4071.0542755962733, - "rotation": 5.661848093469599, - "action": "CARVE_RIGHT" - }, - { - "x": 29.18306395230758, - "y": -4073.4508816466146, - "rotation": 5.717698629533418, - "action": "CARVE_RIGHT" - }, - { - "x": 28.063567897957398, - "y": -4075.964209926929, - "rotation": 5.773549165597236, - "action": "CARVE_RIGHT" - }, - { - "x": 27.065251651602193, - "y": -4078.5951003197456, - "rotation": 5.829399701661055, - "action": "CARVE_RIGHT" - }, - { - "x": 26.18830503829233, - "y": -4081.3444618592, - "rotation": 5.885250237724874, - "action": "CARVE_RIGHT" - }, - { - "x": 25.43299429657912, - "y": -4084.2132724994935, - "rotation": 5.941100773788692, - "action": "CARVE_RIGHT" - }, - { - "x": 24.799661824284915, - "y": -4087.20257888408, - "rotation": 5.996951309852511, - "action": "CARVE_RIGHT" - }, - { - "x": 24.288725925066753, - "y": -4090.313496115571, - "rotation": 6.0528018459163295, - "action": "CARVE_RIGHT" - }, - { - "x": 23.90068055577121, - "y": -4093.547207526367, - "rotation": 6.108652381980148, - "action": "CARVE_RIGHT" - }, - { - "x": 23.636095074578037, - "y": -4096.9049644500055, - "rotation": 6.164502918043967, - "action": "CARVE_RIGHT" - }, - { - "x": 23.495613989930284, - "y": -4100.388085993226, - "rotation": 6.220353454107785, - "action": "CARVE_RIGHT" - }, - { - "x": 23.479956710248484, - "y": -4103.99795880875, - "rotation": 6.276203990171604, - "action": "CARVE_RIGHT" - }, - { - "x": 23.58987778082658, - "y": -4107.531136077332, - "rotation": 0.04886921905583641, - "action": "CARVE_RIGHT" - }, - { - "x": 23.826058789187275, - "y": -4110.957218606021, - "rotation": 0.10471975511965495, - "action": "CARVE_RIGHT" - }, - { - "x": 24.189101356674964, - "y": -4114.274878139826, - "rotation": 0.1605702911834735, - "action": "CARVE_RIGHT" - }, - { - "x": 24.67952740500271, - "y": -4117.4828621477045, - "rotation": 0.21642082724729203, - "action": "CARVE_RIGHT" - }, - { - "x": 25.29777942196626, - "y": -4120.579993571715, - "rotation": 0.27227136331111057, - "action": "CARVE_RIGHT" - }, - { - "x": 26.04422072632764, - "y": -4123.565170576943, - "rotation": 0.32812189937492914, - "action": "CARVE_RIGHT" - }, - { - "x": 26.919135731870753, - "y": -4126.437366302212, - "rotation": 0.3839724354387477, - "action": "CARVE_RIGHT" - }, - { - "x": 27.92273021063154, - "y": -4129.195628611563, - "rotation": 0.4398229715025663, - "action": "CARVE_RIGHT" - }, - { - "x": 29.055131555305124, - "y": -4131.839079846521, - "rotation": 0.49567350756638484, - "action": "CARVE_RIGHT" - }, - { - "x": 30.31638904083245, - "y": -4134.366916579118, - "rotation": 0.5515240436302034, - "action": "CARVE_RIGHT" - }, - { - "x": 31.70647408516885, - "y": -4136.778409365696, - "rotation": 0.6073745796940219, - "action": "CARVE_RIGHT" - }, - { - "x": 33.22528050923699, - "y": -4139.072902501471, - "rotation": 0.6632251157578404, - "action": "CARVE_RIGHT" - }, - { - "x": 34.87262479606668, - "y": -4141.2498137758685, - "rotation": 0.7190756518216589, - "action": "CARVE_RIGHT" - }, - { - "x": 36.648246349123966, - "y": -4143.308634228612, - "rotation": 0.7749261878854774, - "action": "CARVE_RIGHT" - }, - { - "x": 38.551807749831916, - "y": -4145.248927906583, - "rotation": 0.8307767239492959, - "action": "CARVE_RIGHT" - }, - { - "x": 40.582895014285576, - "y": -4147.070331621426, - "rotation": 0.8866272600131144, - "action": "CARVE_RIGHT" - }, - { - "x": 42.741017849163455, - "y": -4148.772554707921, - "rotation": 0.9424777960769329, - "action": "CARVE_RIGHT" - }, - { - "x": 45.025609906838035, - "y": -4150.355378783103, - "rotation": 0.9983283321407515, - "action": "NOTHING" - }, - { - "x": 47.55411277753019, - "y": -4151.71081404517, - "rotation": 0.9948376736367628, - "action": "NOTHING" - }, - { - "x": 50.0727247589982, - "y": -4153.073912600607, - "rotation": 0.9913470151327741, - "action": "NOTHING" - }, - { - "x": 52.58148726134523, - "y": -4154.444686510737, - "rotation": 0.9878563566287855, - "action": "NOTHING" - }, - { - "x": 55.08044124648201, - "y": -4155.823148125864, - "rotation": 0.9843656981247968, - "action": "NOTHING" - }, - { - "x": 57.56962722954894, - "y": -4157.209310084274, - "rotation": 0.9808750396208081, - "action": "NOTHING" - }, - { - "x": 60.049085280333976, - "y": -4158.603185311236, - "rotation": 0.9773843811168195, - "action": "NOTHING" - }, - { - "x": 62.518855024686125, - "y": -4160.004787018007, - "rotation": 0.9738937226128308, - "action": "NOTHING" - }, - { - "x": 64.97897564592473, - "y": -4161.414128700838, - "rotation": 0.9704030641088421, - "action": "NOTHING" - }, - { - "x": 67.42948588624448, - "y": -4162.831224139985, - "rotation": 0.9669124056048535, - "action": "NOTHING" - }, - { - "x": 69.87042404811606, - "y": -4164.256087398727, - "rotation": 0.9634217471008648, - "action": "NOTHING" - }, - { - "x": 72.30182799568273, - "y": -4165.6887328223775, - "rotation": 0.9599310885968761, - "action": "NOTHING" - }, - { - "x": 74.72373515615249, - "y": -4167.129175037309, - "rotation": 0.9564404300928875, - "action": "NOTHING" - }, - { - "x": 77.13618252118614, - "y": -4168.577428949977, - "rotation": 0.9529497715888988, - "action": "NOTHING" - }, - { - "x": 79.53920664828114, - "y": -4170.033509745943, - "rotation": 0.9494591130849102, - "action": "NOTHING" - }, - { - "x": 81.93284366215111, - "y": -4171.497432888907, - "rotation": 0.9459684545809215, - "action": "NOTHING" - }, - { - "x": 84.31712925610142, - "y": -4172.96921411974, - "rotation": 0.9424777960769328, - "action": "NOTHING" - }, - { - "x": 86.69209869340031, - "y": -4174.448869455521, - "rotation": 0.9389871375729442, - "action": "CARVE_LEFT" - }, - { - "x": 88.70205087191323, - "y": -4176.265800315178, - "rotation": 0.8831366015091257, - "action": "CARVE_LEFT" - }, - { - "x": 90.58491448955826, - "y": -4178.200450774002, - "rotation": 0.8272860654453071, - "action": "CARVE_LEFT" - }, - { - "x": 92.34104281062662, - "y": -4180.2532402895795, - "rotation": 0.7714355293814886, - "action": "CARVE_LEFT" - }, - { - "x": 93.97071087023959, - "y": -4182.4246588875285, - "rotation": 0.7155849933176701, - "action": "CARVE_LEFT" - }, - { - "x": 95.47411573426244, - "y": -4184.715266925502, - "rotation": 0.6597344572538516, - "action": "CARVE_LEFT" - }, - { - "x": 96.85137675840775, - "y": -4187.125694857934, - "rotation": 0.6038839211900331, - "action": "CARVE_LEFT" - }, - { - "x": 98.1025358465305, - "y": -4189.656643001518, - "rotation": 0.5480333851262146, - "action": "CARVE_LEFT" - }, - { - "x": 99.22755770811742, - "y": -4192.308881301425, - "rotation": 0.492182849062396, - "action": "CARVE_LEFT" - }, - { - "x": 100.22633011497285, - "y": -4195.083249098246, - "rotation": 0.43633231299857744, - "action": "NOTHING" - }, - { - "x": 101.32897457189685, - "y": -4197.767404511606, - "rotation": 0.4328416544945888, - "action": "NOTHING" - }, - { - "x": 102.42449710640611, - "y": -4200.4641514913155, - "rotation": 0.4293509959906001, - "action": "NOTHING" - }, - { - "x": 103.51287820602484, - "y": -4203.173539778162, - "rotation": 0.42586033748661145, - "action": "NOTHING" - }, - { - "x": 104.59409810723166, - "y": -4205.895619266202, - "rotation": 0.4223696789826228, - "action": "NOTHING" - }, - { - "x": 105.66813679627676, - "y": -4208.630440002196, - "rotation": 0.4188790204786341, - "action": "CARVE_LEFT" - }, - { - "x": 106.50726253748829, - "y": -4211.588896141083, - "rotation": 0.36302848441481556, - "action": "CARVE_LEFT" - }, - { - "x": 107.21859496593778, - "y": -4214.672534193704, - "rotation": 0.307177948350997, - "action": "CARVE_LEFT" - }, - { - "x": 107.80177373622918, - "y": -4217.882417342942, - "rotation": 0.2513274122871784, - "action": "CARVE_LEFT" - }, - { - "x": 108.25636264471359, - "y": -4221.219677186975, - "rotation": 0.19547687622335988, - "action": "CARVE_LEFT" - }, - { - "x": 108.58184988200873, - "y": -4224.685513510025, - "rotation": 0.13962634015954134, - "action": "CARVE_LEFT" - }, - { - "x": 108.77764828472986, - "y": -4228.281194053824, - "rotation": 0.0837758040957228, - "action": "CARVE_LEFT" - }, - { - "x": 108.84309558643463, - "y": -4232.00805428979, - "rotation": 0.027925268031904253, - "action": "CARVE_LEFT" - }, - { - "x": 108.7774675701841, - "y": -4235.7452052151675, - "rotation": 6.255260039147672, - "action": "CARVE_LEFT" - }, - { - "x": 108.5800814403544, - "y": -4239.370043093212, - "rotation": 6.199409503083853, - "action": "CARVE_LEFT" - }, - { - "x": 108.25033435951255, - "y": -4242.881238861435, - "rotation": 6.143558967020034, - "action": "CARVE_LEFT" - }, - { - "x": 107.78770318191691, - "y": -4246.277539173149, - "rotation": 6.087708430956216, - "action": "CARVE_LEFT" - }, - { - "x": 107.1917441878505, - "y": -4249.557766146663, - "rotation": 6.031857894892397, - "action": "CARVE_LEFT" - }, - { - "x": 106.46209281878454, - "y": -4252.720817115257, - "rotation": 5.9760073588285785, - "action": "CARVE_LEFT" - }, - { - "x": 105.59846341336974, - "y": -4255.765664377937, - "rotation": 5.92015682276476, - "action": "CARVE_LEFT" - }, - { - "x": 104.6006489442529, - "y": -4258.691354950965, - "rotation": 5.864306286700941, - "action": "CARVE_LEFT" - }, - { - "x": 103.46852075571631, - "y": -4261.49701032016, - "rotation": 5.808455750637123, - "action": "CARVE_LEFT" - }, - { - "x": 102.2020283021375, - "y": -4264.181826193975, - "rotation": 5.752605214573304, - "action": "CARVE_LEFT" - }, - { - "x": 100.80119888726688, - "y": -4266.74507225734, - "rotation": 5.696754678509485, - "action": "CARVE_LEFT" - }, - { - "x": 99.26613740432072, - "y": -4269.186091926276, - "rotation": 5.640904142445667, - "action": "CARVE_LEFT" - }, - { - "x": 97.59702607688725, - "y": -4271.504302103267, - "rotation": 5.585053606381848, - "action": "CARVE_LEFT" - }, - { - "x": 95.79412420064317, - "y": -4273.6991929334, - "rotation": 5.5292030703180295, - "action": "CARVE_LEFT" - }, - { - "x": 93.85776788587833, - "y": -4275.770327561261, - "rotation": 5.473352534254211, - "action": "CARVE_LEFT" - }, - { - "x": 91.78836980082608, - "y": -4277.717341888595, - "rotation": 5.417501998190392, - "action": "CARVE_LEFT" - }, - { - "x": 89.58641891579678, - "y": -4279.539944332713, - "rotation": 5.361651462126574, - "action": "CARVE_LEFT" - }, - { - "x": 87.25248024811239, - "y": -4281.237915585658, - "rotation": 5.305800926062755, - "action": "CARVE_LEFT" - }, - { - "x": 84.7871946078392, - "y": -4282.8111083741205, - "rotation": 5.249950389998936, - "action": "CARVE_LEFT" - }, - { - "x": 82.19127834431683, - "y": -4284.259447220103, - "rotation": 5.194099853935118, - "action": "CARVE_LEFT" - }, - { - "x": 79.46552309348077, - "y": -4285.582928202329, - "rotation": 5.138249317871299, - "action": "CARVE_LEFT" - }, - { - "x": 76.61079552597624, - "y": -4286.7816187184, - "rotation": 5.0823987818074805, - "action": "CARVE_LEFT" - }, - { - "x": 73.62803709606091, - "y": -4287.85565724769, - "rotation": 5.026548245743662, - "action": "NOTHING" - }, - { - "x": 70.32767060433018, - "y": -4288.630271275203, - "rotation": 5.03003890424765, - "action": "NOTHING" - }, - { - "x": 67.04103643520065, - "y": -4289.412317477251, - "rotation": 5.033529562751639, - "action": "NOTHING" - }, - { - "x": 63.76805793050989, - "y": -4290.201784748068, - "rotation": 5.037020221255627, - "action": "NOTHING" - }, - { - "x": 60.50865899107925, - "y": -4290.998662349781, - "rotation": 5.040510879759616, - "action": "NOTHING" - }, - { - "x": 57.2627640749581, - "y": -4291.8029399111565, - "rotation": 5.044001538263604, - "action": "NOTHING" - }, - { - "x": 54.03029819567325, - "y": -4292.614607426357, - "rotation": 5.0474921967675925, - "action": "NOTHING" - }, - { - "x": 50.81118692048374, - "y": -4293.433655253692, - "rotation": 5.050982855271581, - "action": "NOTHING" - }, - { - "x": 47.605356368640855, - "y": -4294.260074114384, - "rotation": 5.054473513775569, - "action": "NOTHING" - }, - { - "x": 44.412733209653325, - "y": -4295.093855091328, - "rotation": 5.057964172279558, - "action": "NOTHING" - }, - { - "x": 41.23324466155782, - "y": -4295.934989627861, - "rotation": 5.061454830783546, - "action": "NOTHING" - }, - { - "x": 38.066818489194624, - "y": -4296.7834695265365, - "rotation": 5.064945489287535, - "action": "NOTHING" - }, - { - "x": 34.91338300248851, - "y": -4297.639286947897, - "rotation": 5.068436147791523, - "action": "NOTHING" - }, - { - "x": 31.772867054734757, - "y": -4298.502434409255, - "rotation": 5.071926806295512, - "action": "NOTHING" - }, - { "x": 28.6452000408904, "y": -4299.372904783479, "rotation": 5.0754174647995, "action": "NOTHING" }, - { - "x": 25.530311895870568, - "y": -4300.250691297776, - "rotation": 5.0789081233034885, - "action": "NOTHING" - }, - { - "x": 22.428133092849972, - "y": -4301.135787532488, - "rotation": 5.082398781807477, - "action": "NOTHING" - }, - { - "x": 19.33859464156952, - "y": -4302.0281874198845, - "rotation": 5.085889440311465, - "action": "NOTHING" - }, - { - "x": 16.261628086648034, - "y": -4302.927885242961, - "rotation": 5.089380098815454, - "action": "NOTHING" - }, - { - "x": 13.197165505899038, - "y": -4303.834875634244, - "rotation": 5.092870757319442, - "action": "NOTHING" - }, - { - "x": 10.14513950865264, - "y": -4304.749153574596, - "rotation": 5.096361415823431, - "action": "NOTHING" - }, - { - "x": 7.105483234082454, - "y": -4305.670714392025, - "rotation": 5.099852074327419, - "action": "NOTHING" - }, - { - "x": 4.078130349537584, - "y": -4306.599553760502, - "rotation": 5.103342732831408, - "action": "NOTHING" - }, - { - "x": 1.0630150488796177, - "y": -4307.535667698777, - "rotation": 5.106833391335396, - "action": "NOTHING" - }, - { - "x": -1.9399279491753503, - "y": -4308.479052569197, - "rotation": 5.1103240498393845, - "action": "NOTHING" - }, - { - "x": -4.930763402709705, - "y": -4309.429705076539, - "rotation": 5.113814708343373, - "action": "NOTHING" - }, - { - "x": -7.909555548252313, - "y": -4310.387622266833, - "rotation": 5.117305366847361, - "action": "NOTHING" - }, - { - "x": -10.876368102421548, - "y": -4311.352801526197, - "rotation": 5.12079602535135, - "action": "CARVE_RIGHT" - }, - { - "x": -13.415620737282273, - "y": -4312.7100956966015, - "rotation": 5.176646561415168, - "action": "CARVE_RIGHT" - }, - { - "x": -15.824747147338254, - "y": -4314.184859310484, - "rotation": 5.232497097478987, - "action": "CARVE_RIGHT" - }, - { - "x": -18.10442021544055, - "y": -4315.77722353934, - "rotation": 5.288347633542806, - "action": "CARVE_RIGHT" - }, - { - "x": -20.25523353225886, - "y": -4317.487391087822, - "rotation": 5.344198169606624, - "action": "CARVE_RIGHT" - }, - { - "x": -22.277701659512932, - "y": -4319.315635954722, - "rotation": 5.400048705670443, - "action": "CARVE_RIGHT" - }, - { - "x": -24.172260392383357, - "y": -4321.2623031947005, - "rotation": 5.4558992417342616, - "action": "CARVE_RIGHT" - }, - { - "x": -25.939267021104257, - "y": -4323.327808680762, - "rotation": 5.51174977779808, - "action": "CARVE_RIGHT" - }, - { - "x": -27.5790005917403, - "y": -4325.512638867473, - "rotation": 5.567600313861899, - "action": "CARVE_RIGHT" - }, - { - "x": -29.09166216615048, - "y": -4327.817350554919, - "rotation": 5.623450849925717, - "action": "CARVE_RIGHT" - }, - { - "x": -30.477375081141112, - "y": -4330.2425706534095, - "rotation": 5.679301385989536, - "action": "CARVE_RIGHT" - }, - { - "x": -31.73618520681045, - "y": -4332.7889959489075, - "rotation": 5.735151922053355, - "action": "CARVE_RIGHT" - }, - { - "x": -32.86806120408738, - "y": -4335.457392869202, - "rotation": 5.791002458117173, - "action": "CARVE_RIGHT" - }, - { - "x": -33.87289478146659, - "y": -4338.24859725081, - "rotation": 5.846852994180992, - "action": "CARVE_RIGHT" - }, - { - "x": -34.75050095094258, - "y": -4341.163514106613, - "rotation": 5.9027035302448105, - "action": "CARVE_RIGHT" - }, - { - "x": -35.500618283145, - "y": -4344.2031173942105, - "rotation": 5.958554066308629, - "action": "CARVE_RIGHT" - }, - { - "x": -36.12290916167767, - "y": -4347.368449785015, - "rotation": 6.014404602372448, - "action": "CARVE_RIGHT" - }, - { - "x": -36.6169600366636, - "y": -4350.660622434057, - "rotation": 6.070255138436266, - "action": "CARVE_RIGHT" - }, - { - "x": -36.98228167749854, - "y": -4354.080814750515, - "rotation": 6.126105674500085, - "action": "CARVE_RIGHT" - }, - { - "x": -37.21830942481528, - "y": -4357.630274168975, - "rotation": 6.181956210563904, - "action": "CARVE_RIGHT" - }, - { - "x": -37.324403441661154, - "y": -4361.3103159213915, - "rotation": 6.237806746627722, - "action": "CARVE_RIGHT" - }, - { - "x": -37.29985077829109, - "y": -4365.076573234644, - "rotation": 0.010471975511954668, - "action": "CARVE_RIGHT" - }, - { - "x": -37.14394260425056, - "y": -4368.731145930234, - "rotation": 0.06632251157577321, - "action": "CARVE_RIGHT" - }, - { - "x": -36.856050134451074, - "y": -4372.272680280942, - "rotation": 0.12217304763959175, - "action": "CARVE_RIGHT" - }, - { - "x": -36.43562436239751, - "y": -4375.699898357414, - "rotation": 0.1780235837034103, - "action": "CARVE_RIGHT" - }, - { - "x": -35.88219579424907, - "y": -4379.011597777097, - "rotation": 0.23387411976722883, - "action": "CARVE_RIGHT" - }, - { - "x": -35.19537418371131, - "y": -4382.206651453964, - "rotation": 0.2897246558310474, - "action": "CARVE_RIGHT" - }, - { - "x": -34.374848267756725, - "y": -4385.284007349005, - "rotation": 0.34557519189486596, - "action": "CARVE_RIGHT" - }, - { - "x": -33.42038550317147, - "y": -4388.242688221512, - "rotation": 0.40142572795868453, - "action": "CARVE_RIGHT" - }, - { - "x": -32.33183180392566, - "y": -4391.081791381123, - "rotation": 0.4572762640225031, - "action": "CARVE_RIGHT" - }, - { - "x": -31.109111279364885, - "y": -4393.800488440647, - "rotation": 0.5131268000863216, - "action": "CARVE_RIGHT" - }, - { - "x": -29.75222597322034, - "y": -4396.398025069656, - "rotation": 0.5689773361501401, - "action": "CARVE_RIGHT" - }, - { - "x": -28.261255603435224, - "y": -4398.873720748846, - "rotation": 0.6248278722139586, - "action": "CARVE_RIGHT" - }, - { - "x": -26.6363573028049, - "y": -4401.226968525162, - "rotation": 0.6806784082777771, - "action": "CARVE_RIGHT" - }, - { - "x": -24.877765360428405, - "y": -4403.4572347676885, - "rotation": 0.7365289443415957, - "action": "CARVE_RIGHT" - }, - { - "x": -22.98579096396885, - "y": -4405.564058924294, - "rotation": 0.7923794804054142, - "action": "CARVE_RIGHT" - }, - { - "x": -20.960821942720287, - "y": -4407.547053279045, - "rotation": 0.8482300164692327, - "action": "CARVE_RIGHT" - }, - { - "x": -18.803322511478644, - "y": -4409.405902710367, - "rotation": 0.9040805525330512, - "action": "CARVE_RIGHT" - }, - { - "x": -16.513833015214267, - "y": -4411.1403644499605, - "rotation": 0.9599310885968697, - "action": "CARVE_RIGHT" - }, - { - "x": -14.092969674543715, - "y": -4412.750267842477, - "rotation": 1.0157816246606883, - "action": "CARVE_RIGHT" - }, - { - "x": -11.54142433199837, - "y": -4414.235514105932, - "rotation": 1.071632160724507, - "action": "CARVE_RIGHT" - }, - { - "x": -8.859964199087484, - "y": -4415.596076092876, - "rotation": 1.1274826967883256, - "action": "CARVE_RIGHT" - }, - { - "x": -6.049431604153279, - "y": -4416.8319980523, - "rotation": 1.1833332328521442, - "action": "CARVE_RIGHT" - }, - { - "x": -3.110743741015699, - "y": -4417.943395392297, - "rotation": 1.2391837689159628, - "action": "CARVE_RIGHT" - }, - { - "x": -0.04489241840448033, - "y": -4418.930454443453, - "rotation": 1.2950343049797814, - "action": "CARVE_RIGHT" - }, - { "x": 3.147056189823864, "y": -4419.793432222977, "rotation": 1.3508848410436, "action": "NOTHING" }, - { - "x": 6.678424623724526, - "y": -4420.335572838429, - "rotation": 1.3473941825396114, - "action": "NOTHING" - }, - { - "x": 10.194641685211897, - "y": -4420.885246020239, - "rotation": 1.3439035240356227, - "action": "NOTHING" - }, - { - "x": 13.695796533295333, - "y": -4421.442432121641, - "rotation": 1.340412865531634, - "action": "NOTHING" - }, - { - "x": 17.18197772948522, - "y": -4422.0071118918395, - "rotation": 1.3369222070276454, - "action": "NOTHING" - }, - { - "x": 20.65327323966322, - "y": -4422.579266474669, - "rotation": 1.3334315485236568, - "action": "NOTHING" - }, - { - "x": 24.109770435946924, - "y": -4423.1588774072625, - "rotation": 1.329940890019668, - "action": "NOTHING" - }, - { - "x": 27.55155609854886, - "y": -4423.74592661872, - "rotation": 1.3264502315156794, - "action": "NOTHING" - }, - { - "x": 30.97871641762996, - "y": -4424.340396428782, - "rotation": 1.3229595730116908, - "action": "NOTHING" - }, - { - "x": 34.39133699514744, - "y": -4424.94226954651, - "rotation": 1.319468914507702, - "action": "NOTHING" - }, - { - "x": 37.78950284669712, - "y": -4425.551529068966, - "rotation": 1.3159782560037134, - "action": "NOTHING" - }, - { - "x": 41.17329840335023, - "y": -4426.168158479901, - "rotation": 1.3124875974997248, - "action": "NOTHING" - }, - { - "x": 44.54280751348468, - "y": -4426.792141648444, - "rotation": 1.308996938995736, - "action": "NOTHING" - }, - { - "x": 47.89811344461084, - "y": -4427.423462827801, - "rotation": 1.3055062804917474, - "action": "NOTHING" - }, - { - "x": 51.239298885191815, - "y": -4428.062106653947, - "rotation": 1.3020156219877588, - "action": "NOTHING" - }, - { - "x": 54.56644594645825, - "y": -4428.708058144336, - "rotation": 1.2985249634837701, - "action": "NOTHING" - }, - { - "x": 57.87963616421772, - "y": -4429.361302696605, - "rotation": 1.2950343049797814, - "action": "NOTHING" - }, - { - "x": 61.17895050065863, - "y": -4430.021826087283, - "rotation": 1.2915436464757928, - "action": "NOTHING" - }, - { - "x": 64.4644693461487, - "y": -4430.689614470513, - "rotation": 1.2880529879718041, - "action": "NOTHING" - }, - { - "x": 67.7362725210281, - "y": -4431.364654376764, - "rotation": 1.2845623294678155, - "action": "CARVE_LEFT" - }, - { - "x": 70.54877178102181, - "y": -4432.459587800793, - "rotation": 1.2287117934039968, - "action": "CARVE_LEFT" - }, - { - "x": 73.23007153079992, - "y": -4433.671374504286, - "rotation": 1.1728612573401782, - "action": "CARVE_LEFT" - }, - { - "x": 75.78101573308912, - "y": -4434.999991276311, - "rotation": 1.1170107212763596, - "action": "CARVE_LEFT" - }, - { - "x": 78.20236849198342, - "y": -4436.445486953527, - "rotation": 1.061160185212541, - "action": "CARVE_LEFT" - }, - { - "x": 80.49481431793853, - "y": -4438.007982179551, - "rotation": 1.0053096491487223, - "action": "CARVE_LEFT" - }, - { - "x": 82.65895839194042, - "y": -4439.687669165091, - "rotation": 0.9494591130849038, - "action": "CARVE_LEFT" - }, - { - "x": 84.69532682885041, - "y": -4441.484811448823, - "rotation": 0.8936085770210853, - "action": "CARVE_LEFT" - }, - { - "x": 86.60436693992952, - "y": -4443.399743659011, - "rotation": 0.8377580409572668, - "action": "CARVE_LEFT" - }, - { - "x": 88.38644749454417, - "y": -4445.4328712758825, - "rotation": 0.7819075048934483, - "action": "CARVE_LEFT" - }, - { - "x": 90.041858981056, - "y": -4447.584670394745, - "rotation": 0.7260569688296298, - "action": "CARVE_LEFT" - }, - { - "x": 91.57081386689804, - "y": -4449.855687489842, - "rotation": 0.6702064327658113, - "action": "CARVE_LEFT" - }, - { - "x": 92.97344685783985, - "y": -4452.246539178947, - "rotation": 0.6143558967019928, - "action": "CARVE_LEFT" - }, - { - "x": 94.24981515644389, - "y": -4454.7579119887005, - "rotation": 0.5585053606381742, - "action": "CARVE_LEFT" - }, - { - "x": 95.39989871971567, - "y": -4457.390562120676, - "rotation": 0.5026548245743557, - "action": "CARVE_LEFT" - }, - { - "x": 96.42360051594997, - "y": -4460.145315218181, - "rotation": 0.44680428851053716, - "action": "CARVE_LEFT" - }, - { - "x": 97.32074678077572, - "y": -4463.023066133793, - "rotation": 0.3909537524467186, - "action": "CARVE_LEFT" - }, - { - "x": 98.09108727240174, - "y": -4466.024778697613, - "rotation": 0.3351032163829, - "action": "CARVE_LEFT" - }, - { - "x": 98.73429552606586, - "y": -4469.151485486259, - "rotation": 0.27925268031908146, - "action": "CARVE_LEFT" - }, - { - "x": 99.24996910768982, - "y": -4472.404287592568, - "rotation": 0.22340214425526292, - "action": "CARVE_LEFT" - }, - { - "x": 99.63762986674224, - "y": -4475.784354396034, - "rotation": 0.16755160819144438, - "action": "CARVE_LEFT" - }, - { - "x": 99.89672418831209, - "y": -4479.29292333396, - "rotation": 0.11170107212762584, - "action": "CARVE_LEFT" - }, - { - "x": 100.02662324439504, - "y": -4482.9312996733215, - "rotation": 0.05585053606380729, - "action": "CARVE_LEFT" - }, - { - "x": 100.02662324439501, - "y": -4486.700856283355, - "rotation": 6.283185307179575, - "action": "CARVE_LEFT" - }, - { - "x": 99.89599729444332, - "y": -4490.359592381538, - "rotation": 6.227334771115756, - "action": "CARVE_LEFT" - }, - { - "x": 99.63409860748973, - "y": -4493.906137100701, - "rotation": 6.171484235051937, - "action": "CARVE_LEFT" - }, - { - "x": 99.24036023633543, - "y": -4497.339195429438, - "rotation": 6.115633698988119, - "action": "CARVE_LEFT" - }, - { - "x": 98.71429480750022, - "y": -4500.657547960864, - "rotation": 6.0597831629243, - "action": "CARVE_LEFT" - }, - { - "x": 98.05549425592133, - "y": -4503.86005064215, - "rotation": 6.003932626860482, - "action": "CARVE_LEFT" - }, - { - "x": 97.2636295604814, - "y": -4506.945634524844, - "rotation": 5.948082090796663, - "action": "CARVE_LEFT" - }, - { - "x": 96.33845048036318, - "y": -4509.913305515964, - "rotation": 5.892231554732844, - "action": "CARVE_LEFT" - }, - { - "x": 95.27978529222841, - "y": -4512.762144129868, - "rotation": 5.836381018669026, - "action": "CARVE_LEFT" - }, - { - "x": 94.08754052821843, - "y": -4515.491305240899, - "rotation": 5.780530482605207, - "action": "CARVE_LEFT" - }, - { - "x": 92.76170071477404, - "y": -4518.100017836797, - "rotation": 5.7246799465413885, - "action": "CARVE_LEFT" - }, - { - "x": 91.30232811227218, - "y": -4520.587584772879, - "rotation": 5.66882941047757, - "action": "CARVE_LEFT" - }, - { - "x": 89.70956245547698, - "y": -4522.953382526993, - "rotation": 5.612978874413751, - "action": "CARVE_LEFT" - }, - { - "x": 87.98362069480268, - "y": -4525.19686095522, - "rotation": 5.557128338349933, - "action": "CARVE_LEFT" - }, - { - "x": 86.12479673838601, - "y": -4527.317543048353, - "rotation": 5.501277802286114, - "action": "CARVE_LEFT" - }, - { - "x": 84.1334611949657, - "y": -4529.31502468913, - "rotation": 5.445427266222295, - "action": "CARVE_LEFT" - }, - { - "x": 82.0100611175665, - "y": -4531.1889744102145, - "rotation": 5.389576730158477, - "action": "CARVE_LEFT" - }, - { - "x": 79.75511974798543, - "y": -4532.939133152945, - "rotation": 5.333726194094658, - "action": "CARVE_LEFT" - }, - { - "x": 77.3692362620779, - "y": -4534.565314026828, - "rotation": 5.2778756580308395, - "action": "NOTHING" - }, - { "x": 74.7288243786029, "y": -4535.95383879456, "rotation": 5.281366316534828, "action": "NOTHING" }, - { - "x": 72.0989373181389, - "y": -4537.350178725654, - "rotation": 5.284856975038816, - "action": "NOTHING" - }, - { - "x": 69.47953059610512, - "y": -4538.754344122455, - "rotation": 5.288347633542805, - "action": "NOTHING" - }, - { - "x": 66.87056018640355, - "y": -4540.166345583105, - "rotation": 5.291838292046793, - "action": "NOTHING" - }, - { - "x": 64.27198251996452, - "y": -4541.586194000509, - "rotation": 5.295328950550782, - "action": "NOTHING" - }, - { "x": 61.6837544832968, "y": -4543.013900561318, "rotation": 5.29881960905477, "action": "NOTHING" }, - { - "x": 59.10583341704194, - "y": -4544.449476744912, - "rotation": 5.302310267558759, - "action": "NOTHING" - }, - { - "x": 56.538177114533106, - "y": -4545.892934322381, - "rotation": 5.305800926062747, - "action": "NOTHING" - }, - { - "x": 53.98074382035823, - "y": -4547.344285355514, - "rotation": 5.3092915845667354, - "action": "NOTHING" - }, - { - "x": 51.433492228927534, - "y": -4548.803542195796, - "rotation": 5.312782243070724, - "action": "NOTHING" - }, - { - "x": 48.89638148304539, - "y": -4550.270717483393, - "rotation": 5.316272901574712, - "action": "NOTHING" - }, - { - "x": 46.369371172486495, - "y": -4551.745824146159, - "rotation": 5.319763560078701, - "action": "NOTHING" - }, - { - "x": 43.8524213325764, - "y": -4553.228875398631, - "rotation": 5.323254218582689, - "action": "NOTHING" - }, - { - "x": 41.34549244277629, - "y": -4554.719884741037, - "rotation": 5.326744877086678, - "action": "NOTHING" - }, - { - "x": 38.84854542527213, - "y": -4556.218865958302, - "rotation": 5.330235535590666, - "action": "NOTHING" - }, - { - "x": 36.36154164356799, - "y": -4557.725833119056, - "rotation": 5.3337261940946545, - "action": "NOTHING" - }, - { - "x": 33.88444290108374, - "y": -4559.240800574655, - "rotation": 5.337216852598643, - "action": "NOTHING" - }, - { - "x": 31.417211439756905, - "y": -4560.76378295819, - "rotation": 5.340707511102631, - "action": "NOTHING" - }, - { - "x": 28.959809938648846, - "y": -4562.294795183512, - "rotation": 5.34419816960662, - "action": "NOTHING" - }, - { - "x": 26.5122015125551, - "y": -4563.833852444253, - "rotation": 5.347688828110608, - "action": "NOTHING" - }, - { - "x": 24.07434971061998, - "y": -4565.380970212856, - "rotation": 5.351179486614597, - "action": "NOTHING" - }, - { - "x": 21.646218514955354, - "y": -4566.936164239597, - "rotation": 5.354670145118585, - "action": "NOTHING" - }, - { - "x": 19.22777233926363, - "y": -4568.499450551627, - "rotation": 5.358160803622574, - "action": "NOTHING" - }, - { - "x": 16.818976027464917, - "y": -4570.070845452001, - "rotation": 5.361651462126562, - "action": "NOTHING" - }, - { - "x": 14.419794852328348, - "y": -4571.650365518719, - "rotation": 5.3651421206305505, - "action": "NOTHING" - }, - { - "x": 12.030194514107562, - "y": -4573.238027603768, - "rotation": 5.368632779134539, - "action": "NOTHING" - }, - { - "x": 9.650141139180324, - "y": -4574.833848832168, - "rotation": 5.372123437638527, - "action": "NOTHING" - }, - { - "x": 7.27960127869228, - "y": -4576.437846601017, - "rotation": 5.375614096142516, - "action": "NOTHING" - }, - { - "x": 4.918541907204829, - "y": -4578.050038578544, - "rotation": 5.379104754646504, - "action": "NOTHING" - }, - { - "x": 2.5669304213470947, - "y": -4579.670442703166, - "rotation": 5.382595413150493, - "action": "NOTHING" - }, - { - "x": 0.22473463847200081, - "y": -4581.29907718254, - "rotation": 5.386086071654481, - "action": "CARVE_RIGHT" - }, - { - "x": -1.751776645826617, - "y": -4583.265868417492, - "rotation": 5.4419366077183, - "action": "CARVE_RIGHT" - }, - { - "x": -3.597216837402434, - "y": -4585.354329539646, - "rotation": 5.497787143782118, - "action": "CARVE_RIGHT" - }, - { - "x": -5.311901391443535, - "y": -4587.5649143581195, - "rotation": 5.553637679845937, - "action": "CARVE_RIGHT" - }, - { - "x": -6.8960676511363985, - "y": -4589.898147143217, - "rotation": 5.609488215909756, - "action": "CARVE_RIGHT" - }, - { - "x": -8.349875107230302, - "y": -4592.35462239075, - "rotation": 5.665338751973574, - "action": "CARVE_RIGHT" - }, - { - "x": -9.673405656792118, - "y": -4594.935004587101, - "rotation": 5.721189288037393, - "action": "CARVE_RIGHT" - }, - { - "x": -10.866663861153906, - "y": -4597.640027975021, - "rotation": 5.7770398241012115, - "action": "CARVE_RIGHT" - }, - { - "x": -11.929577203055732, - "y": -4600.470496320166, - "rotation": 5.83289036016503, - "action": "CARVE_RIGHT" - }, - { - "x": -12.861996342986119, - "y": -4603.427282678352, - "rotation": 5.888740896228849, - "action": "CARVE_RIGHT" - }, - { - "x": -13.663695374722533, - "y": -4606.5113291635535, - "rotation": 5.944591432292667, - "action": "CARVE_RIGHT" - }, - { - "x": -14.334372080074324, - "y": -4609.723646716621, - "rotation": 6.000441968356486, - "action": "CARVE_RIGHT" - }, - { - "x": -14.873648182830467, - "y": -4613.065314874725, - "rotation": 6.056292504420305, - "action": "CARVE_RIGHT" - }, - { - "x": -15.28106960191453, - "y": -4616.537481541522, - "rotation": 6.112143040484123, - "action": "CARVE_RIGHT" - }, - { - "x": -15.55610670374923, - "y": -4620.141362758042, - "rotation": 6.167993576547942, - "action": "CARVE_RIGHT" - }, - { - "x": -15.698154553832946, - "y": -4623.878242474296, - "rotation": 6.2238441126117605, - "action": "CARVE_RIGHT" - }, - { - "x": -15.706533167530548, - "y": -4627.749472321593, - "rotation": 6.279694648675579, - "action": "CARVE_RIGHT" - }, - { - "x": -15.5805331200809, - "y": -4631.521695964378, - "rotation": 0.05235987755981153, - "action": "CARVE_RIGHT" - }, - { - "x": -15.319521603063407, - "y": -4635.178040094641, - "rotation": 0.10821041362363007, - "action": "CARVE_RIGHT" - }, - { - "x": -14.922945593406201, - "y": -4638.717223159549, - "rotation": 0.1640609496874486, - "action": "CARVE_RIGHT" - }, - { - "x": -14.390331587438464, - "y": -4642.138039159077, - "rotation": 0.21991148575126715, - "action": "CARVE_RIGHT" - }, - { - "x": -13.721285335773809, - "y": -4645.439357395726, - "rotation": 0.2757620218150857, - "action": "CARVE_RIGHT" - }, - { - "x": -12.915491579022257, - "y": -4648.620122225008, - "rotation": 0.33161255787890426, - "action": "CARVE_RIGHT" - }, - { - "x": -11.972713784328315, - "y": -4651.679352806723, - "rotation": 0.3874630939427228, - "action": "CARVE_RIGHT" - }, - { - "x": -10.892793882732676, - "y": -4654.616142856994, - "rotation": 0.4433136300065414, - "action": "CARVE_RIGHT" - }, - { - "x": -9.675652007355064, - "y": -4657.429660401088, - "rotation": 0.49916416607035996, - "action": "CARVE_RIGHT" - }, - { - "x": -8.321286232395774, - "y": -4660.119147526997, - "rotation": 0.5550147021341785, - "action": "NOTHING" - }, - { - "x": -6.824471076129814, - "y": -4662.680504920514, - "rotation": 0.5515240436301898, - "action": "NOTHING" - }, - { - "x": -5.3356956756176555, - "y": -4665.253111622272, - "rotation": 0.5480333851262011, - "action": "NOTHING" - }, - { - "x": -3.8549643848552533, - "y": -4667.837008817691, - "rotation": 0.5445427266222125, - "action": "NOTHING" - }, - { - "x": -2.3822818599001137, - "y": -4670.432237878992, - "rotation": 0.5410520681182238, - "action": "NOTHING" - }, - { - "x": -0.9176530578937676, - "y": -4673.038840364526, - "rotation": 0.5375614096142352, - "action": "NOTHING" - }, - { - "x": 0.5389167639127483, - "y": -4675.656858018099, - "rotation": 0.5340707511102465, - "action": "NOTHING" - }, - { - "x": 1.9874220491304206, - "y": -4678.286332768312, - "rotation": 0.5305800926062578, - "action": "NOTHING" - }, - { - "x": 3.4278569432008075, - "y": -4680.927306727884, - "rotation": 0.5270894341022692, - "action": "NOTHING" - }, - { - "x": 4.860215294361613, - "y": -4683.579822192996, - "rotation": 0.5235987755982805, - "action": "NOTHING" - }, - { - "x": 6.2844906546092965, - "y": -4686.243921642627, - "rotation": 0.5201081170942918, - "action": "NOTHING" - }, - { - "x": 7.70067628065873, - "y": -4688.919647737891, - "rotation": 0.5166174585903032, - "action": "NOTHING" - }, - { - "x": 9.108765134899901, - "y": -4691.607043321383, - "rotation": 0.5131268000863145, - "action": "NOTHING" - }, - { - "x": 10.50874988635169, - "y": -4694.306151416521, - "rotation": 0.5096361415823258, - "action": "NOTHING" - }, - { - "x": 11.900622911612706, - "y": -4697.017015226896, - "rotation": 0.5061454830783372, - "action": "NOTHING" - }, - { - "x": 13.284376295809203, - "y": -4699.739678135616, - "rotation": 0.5026548245743485, - "action": "NOTHING" - }, - { - "x": 14.660001833540097, - "y": -4702.474183704661, - "rotation": 0.49916416607035985, - "action": "NOTHING" - }, - { - "x": 16.027491029819064, - "y": -4705.220575674236, - "rotation": 0.4956735075663712, - "action": "NOTHING" - }, - { - "x": 17.386835101013755, - "y": -4707.978897962122, - "rotation": 0.4921828490623825, - "action": "NOTHING" - }, - { - "x": 18.738024975782114, - "y": -4710.749194663036, - "rotation": 0.48869219055839386, - "action": "NOTHING" - }, - { - "x": 20.081051296005825, - "y": -4713.531510047992, - "rotation": 0.4852015320544052, - "action": "NOTHING" - }, - { - "x": 21.415904417720895, - "y": -4716.32588856366, - "rotation": 0.48171087355041653, - "action": "NOTHING" - }, - { - "x": 22.742574412045368, - "y": -4719.132374831729, - "rotation": 0.47822021504642787, - "action": "NOTHING" - }, - { - "x": 24.061051066104184, - "y": -4721.951013648277, - "rotation": 0.4747295565424392, - "action": "NOTHING" - }, - { - "x": 25.37132388395121, - "y": -4724.781849983132, - "rotation": 0.47123889803845054, - "action": "CARVE_LEFT" - }, - { - "x": 26.411998761554447, - "y": -4727.866950577334, - "rotation": 0.41538836197463197, - "action": "CARVE_LEFT" - }, - { - "x": 27.313946042826295, - "y": -4731.085874261845, - "rotation": 0.3595378259108134, - "action": "CARVE_LEFT" - }, - { - "x": 28.076932231946426, - "y": -4734.439570474134, - "rotation": 0.30368728984699483, - "action": "CARVE_LEFT" - }, - { - "x": 28.70064752989309, - "y": -4737.929057469689, - "rotation": 0.2478367537831763, - "action": "CARVE_LEFT" - }, - { - "x": 29.18470608839447, - "y": -4741.555422091459, - "rotation": 0.19198621771935775, - "action": "CARVE_LEFT" - }, - { - "x": 29.528646263087182, - "y": -4745.319819540019, - "rotation": 0.13613568165553921, - "action": "CARVE_LEFT" - }, - { - "x": 29.73193086588428, - "y": -4749.223473144457, - "rotation": 0.08028514559172067, - "action": "CARVE_LEFT" - }, - { - "x": 29.79394741655515, - "y": -4753.267674133976, - "rotation": 0.024434609527902128, - "action": "CARVE_LEFT" - }, - { - "x": 29.714024723119653, - "y": -4757.304921302371, - "rotation": 6.25176938064367, - "action": "CARVE_LEFT" - }, - { - "x": 29.49153906005888, - "y": -4761.219020930292, - "rotation": 6.195918844579851, - "action": "CARVE_LEFT" - }, - { - "x": 29.125946440657792, - "y": -4765.008700521644, - "rotation": 6.140068308516033, - "action": "CARVE_LEFT" - }, - { - "x": 28.616782351233486, - "y": -4768.672763088488, - "rotation": 6.084217772452214, - "action": "CARVE_LEFT" - }, - { - "x": 27.963661486193946, - "y": -4772.210086900916, - "rotation": 6.028367236388395, - "action": "NOTHING" - }, - { - "x": 27.246653773232914, - "y": -4775.695541061144, - "rotation": 6.031857894892384, - "action": "NOTHING" - }, - { - "x": 26.53835831591093, - "y": -4779.19637541593, - "rotation": 6.035348553396372, - "action": "NOTHING" - }, - { - "x": 25.838805449608007, - "y": -4782.7126464370285, - "rotation": 6.038839211900361, - "action": "NOTHING" - }, - { - "x": 25.148025725815657, - "y": -4786.244410725339, - "rotation": 6.042329870404349, - "action": "NOTHING" - }, - { - "x": 24.46604991142674, - "y": -4789.791725010422, - "rotation": 6.0458205289083375, - "action": "NOTHING" - }, - { - "x": 23.792908988027513, - "y": -4793.354646150028, - "rotation": 6.049311187412326, - "action": "NOTHING" - }, - { - "x": 23.128634151191868, - "y": -4796.933231129614, - "rotation": 6.052801845916314, - "action": "NOTHING" - }, - { - "x": 22.47325680977776, - "y": -4800.52753706187, - "rotation": 6.056292504420303, - "action": "NOTHING" - }, - { - "x": 21.826808585225805, - "y": -4804.137621186248, - "rotation": 6.059783162924291, - "action": "NOTHING" - }, - { - "x": 21.189321310860084, - "y": -4807.763540868486, - "rotation": 6.06327382142828, - "action": "NOTHING" - }, - { - "x": 20.560827031191067, - "y": -4811.40535360014, - "rotation": 6.066764479932268, - "action": "NOTHING" - }, - { - "x": 19.941358001220735, - "y": -4815.0631169981125, - "rotation": 6.070255138436257, - "action": "NOTHING" - }, - { - "x": 19.33094668574984, - "y": -4818.7368888041865, - "rotation": 6.073745796940245, - "action": "NOTHING" - }, - { - "x": 18.729625758687323, - "y": -4822.426726884561, - "rotation": 6.0772364554442335, - "action": "NOTHING" - }, - { - "x": 18.137428102361866, - "y": -4826.132689229381, - "rotation": 6.080727113948222, - "action": "NOTHING" - }, - { - "x": 17.554386806835577, - "y": -4829.854833952282, - "rotation": 6.08421777245221, - "action": "NOTHING" - }, - { - "x": 16.980535169219813, - "y": -4833.5932192899245, - "rotation": 6.087708430956199, - "action": "NOTHING" - }, - { - "x": 16.415906692993115, - "y": -4837.347903601532, - "rotation": 6.091199089460187, - "action": "NOTHING" - }, - { - "x": 15.860535087321276, - "y": -4841.118945368439, - "rotation": 6.094689747964176, - "action": "NOTHING" - }, - { - "x": 15.314454266379496, - "y": -4844.906403193629, - "rotation": 6.098180406468164, - "action": "NOTHING" - }, - { - "x": 14.777698348676662, - "y": -4848.71033580128, - "rotation": 6.101671064972153, - "action": "NOTHING" - }, - { - "x": 14.250301656381708, - "y": -4852.530802036314, - "rotation": 6.105161723476141, - "action": "CARVE_RIGHT" - }, - { - "x": 13.923959803092025, - "y": -4856.545324834718, - "rotation": 6.16101225953996, - "action": "CARVE_RIGHT" - }, - { - "x": 13.746448966335635, - "y": -4860.706275735292, - "rotation": 6.216862795603778, - "action": "CARVE_RIGHT" - }, - { - "x": 13.718360372746451, - "y": -4865.014927282759, - "rotation": 6.272713331667597, - "action": "CARVE_RIGHT" - }, - { - "x": 13.840326307335367, - "y": -4869.24551205091, - "rotation": 0.04537856055182932, - "action": "CARVE_RIGHT" - }, - { - "x": 14.112910785983203, - "y": -4873.344723080386, - "rotation": 0.10122909661564786, - "action": "CARVE_RIGHT" - }, - { - "x": 14.536598301338573, - "y": -4877.311344880524, - "rotation": 0.1570796326794664, - "action": "CARVE_RIGHT" - }, - { - "x": 15.111794087884949, - "y": -4881.14423726507, - "rotation": 0.21293016874328494, - "action": "CARVE_RIGHT" - }, - { - "x": 15.838824386179404, - "y": -4884.842335102715, - "rotation": 0.2687807048071035, - "action": "CARVE_RIGHT" - }, - { - "x": 16.717936706265533, - "y": -4888.4046480684165, - "rotation": 0.32463124087092204, - "action": "CARVE_RIGHT" - }, - { - "x": 17.749300090263013, - "y": -4891.83026039549, - "rotation": 0.3804817769347406, - "action": "CARVE_RIGHT" - }, - { - "x": 18.933005374136286, - "y": -4895.118330628471, - "rotation": 0.4363323129985592, - "action": "CARVE_RIGHT" - }, - { - "x": 20.26906544864482, - "y": -4898.2680913767545, - "rotation": 0.49218284906237775, - "action": "CARVE_RIGHT" - }, - { - "x": 21.75741551947742, - "y": -4901.278849068991, - "rotation": 0.5480333851261963, - "action": "CARVE_RIGHT" - }, - { - "x": 23.397913366572997, - "y": -4904.149983708256, - "rotation": 0.6038839211900148, - "action": "CARVE_RIGHT" - }, - { - "x": 25.190339602630292, - "y": -4906.880948627979, - "rotation": 0.6597344572538333, - "action": "CARVE_RIGHT" - }, - { - "x": 27.134397930808955, - "y": -4909.471270248632, - "rotation": 0.7155849933176518, - "action": "CARVE_RIGHT" - }, - { - "x": 29.229715401624404, - "y": -4911.920547835181, - "rotation": 0.7714355293814703, - "action": "CARVE_RIGHT" - }, - { - "x": 31.4758426690389, - "y": -4914.228453255287, - "rotation": 0.8272860654452888, - "action": "CARVE_RIGHT" - }, - { - "x": 33.87225424575126, - "y": -4916.394730738261, - "rotation": 0.8831366015091073, - "action": "CARVE_RIGHT" - }, - { - "x": 36.41834875768757, - "y": -4918.419196634783, - "rotation": 0.9389871375729258, - "action": "CARVE_RIGHT" - }, - { - "x": 39.11344919769536, - "y": -4920.301739177348, - "rotation": 0.9948376736367444, - "action": "CARVE_RIGHT" - }, - { - "x": 41.95680317844357, - "y": -4922.042318241483, - "rotation": 1.050688209700563, - "action": "CARVE_RIGHT" - }, - { - "x": 44.94758318453075, - "y": -4923.640965107688, - "rotation": 1.1065387457643816, - "action": "CARVE_RIGHT" - }, - { - "x": 48.08488682380382, - "y": -4925.097782224134, - "rotation": 1.1623892818282002, - "action": "NOTHING" - }, - { - "x": 51.55601075942098, - "y": -4926.240108820527, - "rotation": 1.1588986233242116, - "action": "NOTHING" - }, - { - "x": 55.01243939860338, - "y": -4927.390704680611, - "rotation": 1.155407964820223, - "action": "NOTHING" - }, - { - "x": 58.454245889548595, - "y": -4928.54956208497, - "rotation": 1.1519173063162342, - "action": "NOTHING" - }, - { - "x": 61.881502829918816, - "y": -4929.716673673917, - "rotation": 1.1484266478122456, - "action": "NOTHING" - }, - { - "x": 65.29428226857635, - "y": -4930.892032446264, - "rotation": 1.144935989308257, - "action": "NOTHING" - }, - { - "x": 68.69265570731389, - "y": -4932.075631758091, - "rotation": 1.1414453308042682, - "action": "NOTHING" - }, - { - "x": 72.07669410257954, - "y": -4933.267465321523, - "rotation": 1.1379546723002796, - "action": "NOTHING" - }, - { - "x": 75.44646786719666, - "y": -4934.467527203509, - "rotation": 1.134464013796291, - "action": "NOTHING" - }, - { - "x": 78.80204687207852, - "y": -4935.675811824609, - "rotation": 1.1309733552923023, - "action": "NOTHING" - }, - { - "x": 82.14350044793778, - "y": -4936.892313957776, - "rotation": 1.1274826967883136, - "action": "NOTHING" - }, - { - "x": 85.47089738699077, - "y": -4938.117028727154, - "rotation": 1.123992038284325, - "action": "NOTHING" - }, - { - "x": 88.78430594465667, - "y": -4939.349951606868, - "rotation": 1.1205013797803363, - "action": "NOTHING" - }, - { - "x": 92.08379384125155, - "y": -4940.591078419823, - "rotation": 1.1170107212763476, - "action": "CARVE_LEFT" - }, - { - "x": 94.90181759666119, - "y": -4942.273378176342, - "rotation": 1.061160185212529, - "action": "CARVE_LEFT" - }, - { - "x": 97.5691175143233, - "y": -4944.091368089357, - "rotation": 1.0053096491487103, - "action": "CARVE_LEFT" - }, - { - "x": 100.08640538055414, - "y": -4946.045145436514, - "rotation": 0.9494591130848918, - "action": "CARVE_LEFT" - }, - { - "x": 102.45431351887439, - "y": -4948.13487918127, - "rotation": 0.8936085770210733, - "action": "CARVE_LEFT" - }, - { - "x": 104.67339505385043, - "y": -4950.360809733329, - "rotation": 0.8377580409572548, - "action": "CARVE_LEFT" - }, - { - "x": 106.74412417411311, - "y": -4952.723248709819, - "rotation": 0.7819075048934363, - "action": "CARVE_LEFT" - }, - { - "x": 108.66689639455642, - "y": -4955.2225786972185, - "rotation": 0.7260569688296178, - "action": "CARVE_LEFT" - }, - { - "x": 110.44202881771845, - "y": -4957.8592530140295, - "rotation": 0.6702064327657993, - "action": "CARVE_LEFT" - }, - { - "x": 112.06976039434723, - "y": -4960.633795474192, - "rotation": 0.6143558967019808, - "action": "CARVE_LEFT" - }, - { - "x": 113.55025218315377, - "y": -4963.546800151242, - "rotation": 0.5585053606381623, - "action": "CARVE_LEFT" - }, - { - "x": 114.88358760975484, - "y": -4966.598931143204, - "rotation": 0.5026548245743437, - "action": "CARVE_LEFT" - }, - { - "x": 116.06977272480778, - "y": -4969.790922338225, - "rotation": 0.44680428851052517, - "action": "CARVE_LEFT" - }, - { - "x": 117.10873646133992, - "y": -4973.123577180937, - "rotation": 0.3909537524467066, - "action": "CARVE_LEFT" - }, - { - "x": 118.00033089127488, - "y": -4976.5977684395575, - "rotation": 0.33510321638288804, - "action": "CARVE_LEFT" - }, - { - "x": 118.74433148115831, - "y": -4980.214437973714, - "rotation": 0.27925268031906947, - "action": "CARVE_LEFT" - }, - { - "x": 119.34043734708528, - "y": -4983.974596502999, - "rotation": 0.22340214425525093, - "action": "CARVE_LEFT" - }, - { - "x": 119.78827150883188, - "y": -4987.879323376253, - "rotation": 0.1675516081914324, - "action": "CARVE_LEFT" - }, - { - "x": 120.08738114319335, - "y": -4991.929766341565, - "rotation": 0.11170107212761385, - "action": "CARVE_LEFT" - }, - { - "x": 120.23723783653111, - "y": -4996.127141316999, - "rotation": 0.0558505360637953, - "action": "CARVE_LEFT" - }, - { - "x": 120.23723783653105, - "y": -5000.472732162036, - "rotation": 6.283185307179563, - "action": "CARVE_LEFT" - }, - { - "x": 120.08675391277554, - "y": -5004.687675396853, - "rotation": 6.2273347711157445, - "action": "CARVE_LEFT" - }, - { - "x": 119.78523856808334, - "y": -5008.770695689559, - "rotation": 6.171484235051926, - "action": "CARVE_LEFT" - }, - { - "x": 119.33222377278767, - "y": -5012.720593210269, - "rotation": 6.115633698988107, - "action": "CARVE_LEFT" - }, - { - "x": 118.72732069984446, - "y": -5016.536243381033, - "rotation": 6.059783162924289, - "action": "CARVE_LEFT" - }, - { - "x": 117.97021946076839, - "y": -5020.216596626541, - "rotation": 6.00393262686047, - "action": "CARVE_LEFT" - }, - { - "x": 117.06068884239436, - "y": -5023.760678125606, - "rotation": 5.948082090796651, - "action": "CARVE_LEFT" - }, - { - "x": 115.99857604446159, - "y": -5027.167587563419, - "rotation": 5.892231554732833, - "action": "CARVE_LEFT" - }, - { - "x": 114.78380641801823, - "y": -5030.436498884577, - "rotation": 5.836381018669014, - "action": "CARVE_LEFT" - }, - { - "x": 113.41638320464384, - "y": -5033.566660046879, - "rotation": 5.7805304826051955, - "action": "CARVE_LEFT" - }, - { - "x": 111.89638727648723, - "y": -5036.5573927758915, - "rotation": 5.724679946541377, - "action": "CARVE_LEFT" - }, - { - "x": 110.2239768771174, - "y": -5039.408092320272, - "rotation": 5.668829410477558, - "action": "CARVE_LEFT" - }, - { - "x": 108.39938736318496, - "y": -5042.118227207864, - "rotation": 5.61297887441374, - "action": "CARVE_LEFT" - }, - { - "x": 106.42293094689173, - "y": -5044.687339002547, - "rotation": 5.557128338349921, - "action": "CARVE_LEFT" - }, - { - "x": 104.29499643926596, - "y": -5047.115042061841, - "rotation": 5.501277802286102, - "action": "CARVE_LEFT" - }, - { - "x": 102.01604899424092, - "y": -5049.401023295277, - "rotation": 5.445427266222284, - "action": "CARVE_LEFT" - }, - { - "x": 99.58662985353428, - "y": -5051.545041923505, - "rotation": 5.389576730158465, - "action": "CARVE_LEFT" - }, - { - "x": 97.00735609232598, - "y": -5053.546929238168, - "rotation": 5.3337261940946465, - "action": "CARVE_LEFT" - }, - { - "x": 94.27892036573216, - "y": -5055.406588362518, - "rotation": 5.277875658030828, - "action": "CARVE_LEFT" - }, - { - "x": 91.40209065607276, - "y": -5057.123994012778, - "rotation": 5.222025121967009, - "action": "CARVE_LEFT" - }, - { - "x": 88.3777100209304, - "y": -5058.699192260248, - "rotation": 5.166174585903191, - "action": "CARVE_LEFT" - }, - { - "x": 85.20669634199817, - "y": -5060.132300294157, - "rotation": 5.110324049839372, - "action": "CARVE_LEFT" - }, - { - "x": 81.89004207471399, - "y": -5061.4235061852505, - "rotation": 5.054473513775553, - "action": "CARVE_LEFT" - }, - { - "x": 78.42881399867912, - "y": -5062.573068650117, - "rotation": 4.998622977711735, - "action": "CARVE_LEFT" - }, - { - "x": 74.82415296885847, - "y": -5063.581316816251, - "rotation": 4.942772441647916, - "action": "CARVE_LEFT" - }, - { - "x": 71.07727366756046, - "y": -5064.448649987848, - "rotation": 4.886921905584098, - "action": "CARVE_LEFT" - }, - { - "x": 67.18946435719391, - "y": -5065.175537412329, - "rotation": 4.831071369520279, - "action": "NOTHING" - }, - { - "x": 62.88920705066983, - "y": -5065.511345100254, - "rotation": 4.834562028024267, - "action": "NOTHING" - }, - { - "x": 58.60836730004642, - "y": -5065.856018188067, - "rotation": 4.838052686528256, - "action": "NOTHING" - }, - { - "x": 54.34683251895233, - "y": -5066.209521880337, - "rotation": 4.841543345032244, - "action": "NOTHING" - }, - { - "x": 50.10449079274837, - "y": -5066.571821829985, - "rotation": 4.845034003536233, - "action": "NOTHING" - }, - { - "x": 45.88123087643247, - "y": -5066.942884136772, - "rotation": 4.848524662040221, - "action": "NOTHING" - }, - { - "x": 41.67694219255097, - "y": -5067.322675345794, - "rotation": 4.85201532054421, - "action": "NOTHING" - }, - { - "x": 37.49151482911617, - "y": -5067.711162445995, - "rotation": 4.855505979048198, - "action": "NOTHING" - }, - { - "x": 33.324839537530124, - "y": -5068.108312868668, - "rotation": 4.8589966375521865, - "action": "NOTHING" - }, - { - "x": 29.176807730514604, - "y": -5068.51409448597, - "rotation": 4.862487296056175, - "action": "NOTHING" - }, - { - "x": 25.047311480047327, - "y": -5068.928475609444, - "rotation": 4.865977954560163, - "action": "NOTHING" - }, - { - "x": 20.93624351530435, - "y": -5069.351424988533, - "rotation": 4.869468613064152, - "action": "NOTHING" - }, - { - "x": 16.84349722060862, - "y": -5069.782911809114, - "rotation": 4.87295927156814, - "action": "NOTHING" - }, - { - "x": 12.768966633384668, - "y": -5070.222905692028, - "rotation": 4.876449930072129, - "action": "NOTHING" - }, - { - "x": 8.712546442119487, - "y": -5070.671376691615, - "rotation": 4.879940588576117, - "action": "NOTHING" - }, - { - "x": 4.674131984329452, - "y": -5071.128295294256, - "rotation": 4.883431247080106, - "action": "CARVE_RIGHT" - }, - { - "x": 1.1913628234811022, - "y": -5072.091543138165, - "rotation": 4.939281783143924, - "action": "CARVE_RIGHT" - }, - { - "x": -2.14077768517905, - "y": -5073.186871871063, - "rotation": 4.995132319207743, - "action": "CARVE_RIGHT" - }, - { - "x": -5.323383749724693, - "y": -5074.4140334792055, - "rotation": 5.050982855271561, - "action": "CARVE_RIGHT" - }, - { - "x": -8.35746885591422, - "y": -5075.772852778879, - "rotation": 5.10683339133538, - "action": "CARVE_RIGHT" - }, - { - "x": -11.243966034939508, - "y": -5077.263227173264, - "rotation": 5.162683927399199, - "action": "CARVE_RIGHT" - }, - { - "x": -13.983728130340463, - "y": -5078.885126410068, - "rotation": 5.218534463463017, - "action": "CARVE_RIGHT" - }, - { - "x": -16.577528064087844, - "y": -5080.638592339905, - "rotation": 5.274384999526836, - "action": "CARVE_RIGHT" - }, - { - "x": -19.026059101836815, - "y": -5082.523738675439, - "rotation": 5.3302355355906545, - "action": "CARVE_RIGHT" - }, - { - "x": -21.329935117353784, - "y": -5084.54075075128, - "rotation": 5.386086071654473, - "action": "CARVE_RIGHT" - }, - { - "x": -23.489690856118926, - "y": -5086.689885284629, - "rotation": 5.441936607718292, - "action": "CARVE_RIGHT" - }, - { - "x": -25.505782198106907, - "y": -5088.971470136673, - "rotation": 5.49778714378211, - "action": "CARVE_RIGHT" - }, - { - "x": -27.37858641974824, - "y": -5091.3859040747275, - "rotation": 5.553637679845929, - "action": "CARVE_RIGHT" - }, - { - "x": -29.108402455073772, - "y": -5093.933656535123, - "rotation": 5.609488215909748, - "action": "CARVE_RIGHT" - }, - { - "x": -30.6954511560447, - "y": -5096.615267386836, - "rotation": 5.665338751973566, - "action": "CARVE_RIGHT" - }, - { - "x": -32.13987555207058, - "y": -5099.431346695858, - "rotation": 5.721189288037385, - "action": "CARVE_RIGHT" - }, - { - "x": -33.44174110871774, - "y": -5102.382574490301, - "rotation": 5.7770398241012035, - "action": "CARVE_RIGHT" - }, - { - "x": -34.601035985610615, - "y": -5105.4697005262415, - "rotation": 5.832890360165022, - "action": "CARVE_RIGHT" - }, - { - "x": -35.61767129352824, - "y": -5108.693544054298, - "rotation": 5.888740896228841, - "action": "CARVE_RIGHT" - }, - { - "x": -36.491481350698514, - "y": -5112.05499358694, - "rotation": 5.944591432292659, - "action": "CARVE_RIGHT" - }, - { - "x": -37.222223938292494, - "y": -5115.555006666523, - "rotation": 6.000441968356478, - "action": "CARVE_RIGHT" - }, - { - "x": -37.80958055512121, - "y": -5119.194609634051, - "rotation": 6.056292504420297, - "action": "CARVE_RIGHT" - }, - { - "x": -38.25315667153731, - "y": -5122.97489739867, - "rotation": 6.112143040484115, - "action": "CARVE_RIGHT" - }, - { - "x": -38.55248198254401, - "y": -5126.897033207875, - "rotation": 6.167993576547934, - "action": "CARVE_RIGHT" - }, - { - "x": -38.70701066011362, - "y": -5130.9622484184465, - "rotation": 6.2238441126117525, - "action": "CARVE_RIGHT" - }, - { - "x": -38.71612160471813, - "y": -5135.171842268094, - "rotation": 6.279694648675571, - "action": "CARVE_RIGHT" - }, - { - "x": -38.57916405607415, - "y": -5139.272114557746, - "rotation": 0.052359877559803536, - "action": "CARVE_RIGHT" - }, - { - "x": -38.2955636503445, - "y": -5143.244892045417, - "rotation": 0.10821041362362208, - "action": "CARVE_RIGHT" - }, - { - "x": -37.86482558987929, - "y": -5147.088949204416, - "rotation": 0.16406094968744062, - "action": "CARVE_RIGHT" - }, - { - "x": -37.28653437799874, - "y": -5150.803135853326, - "rotation": 0.21991148575125916, - "action": "CARVE_RIGHT" - }, - { - "x": -36.5603535546048, - "y": -5154.386376906407, - "rotation": 0.2757620218150777, - "action": "CARVE_RIGHT" - }, - { - "x": -35.68602543261912, - "y": -5157.837672124772, - "rotation": 0.33161255787889626, - "action": "CARVE_RIGHT" - }, - { - "x": -34.66337083524479, - "y": -5161.156095868338, - "rotation": 0.38746309394271483, - "action": "CARVE_RIGHT" - }, - { - "x": -33.492288834049525, - "y": -5164.34079684855, - "rotation": 0.4433136300065334, - "action": "CARVE_RIGHT" - }, - { - "x": -32.17275648786766, - "y": -5167.3909978818765, - "rotation": 0.49916416607035197, - "action": "CARVE_RIGHT" - }, - { - "x": -30.704828582518637, - "y": -5170.305995644071, - "rotation": 0.5550147021341705, - "action": "CARVE_RIGHT" - }, - { - "x": -29.088637371339455, - "y": -5173.085160425199, - "rotation": 0.610865238197989, - "action": "CARVE_RIGHT" - }, - { - "x": -27.324392316528673, - "y": -5175.727935885431, - "rotation": 0.6667157742618075, - "action": "CARVE_RIGHT" - }, - { - "x": -25.41237983129952, - "y": -5178.23383881159, - "rotation": 0.722566310325626, - "action": "CARVE_RIGHT" - }, - { - "x": -23.35296302283968, - "y": -5180.602458874468, - "rotation": 0.7784168463894445, - "action": "NOTHING" - }, - { - "x": -21.075009251819306, - "y": -5182.768681179242, - "rotation": 0.7749261878854559, - "action": "NOTHING" - }, - { - "x": -18.80731755761654, - "y": -5184.944403476764, - "rotation": 0.7714355293814672, - "action": "NOTHING" - }, - { - "x": -16.54986328841836, - "y": -5187.1296496127725, - "rotation": 0.7679448708774785, - "action": "NOTHING" - }, - { - "x": -14.30262218977284, - "y": -5189.324443684255, - "rotation": 0.7644542123734899, - "action": "NOTHING" - }, - { - "x": -12.065570403316395, - "y": -5191.5288100385615, - "rotation": 0.7609635538695012, - "action": "NOTHING" - }, - { - "x": -9.838684465504944, - "y": -5193.742773272518, - "rotation": 0.7574728953655125, - "action": "NOTHING" - }, - { - "x": -7.621941306348931, - "y": -5195.966358231548, - "rotation": 0.7539822368615239, - "action": "NOTHING" - }, - { - "x": -5.415318248152188, - "y": -5198.199590008793, - "rotation": 0.7504915783575352, - "action": "NOTHING" - }, - { - "x": -3.218793004254664, - "y": -5200.442493944237, - "rotation": 0.7470009198535466, - "action": "NOTHING" - }, - { - "x": -1.0323436777789774, - "y": -5202.695095623835, - "rotation": 0.7435102613495579, - "action": "NOTHING" - }, - { - "x": 1.1440512396192073, - "y": -5204.9574208786435, - "rotation": 0.7400196028455692, - "action": "NOTHING" - }, - { - "x": 3.3104128689969876, - "y": -5207.22949578395, - "rotation": 0.7365289443415806, - "action": "NOTHING" - }, - { - "x": 5.4667619453662315, - "y": -5209.511346658415, - "rotation": 0.7330382858375919, - "action": "NOTHING" - }, - { - "x": 7.613118818931799, - "y": -5211.803000063206, - "rotation": 0.7295476273336032, - "action": "NOTHING" - }, - { - "x": 9.749503456325979, - "y": -5214.10448280114, - "rotation": 0.7260569688296146, - "action": "NOTHING" - }, - { - "x": 11.87593544183917, - "y": -5216.415821915828, - "rotation": 0.7225663103256259, - "action": "NOTHING" - }, - { - "x": 13.992433978646794, - "y": -5218.737044690824, - "rotation": 0.7190756518216372, - "action": "NOTHING" - }, - { - "x": 16.099017890032467, - "y": -5221.068178648772, - "rotation": 0.7155849933176486, - "action": "NOTHING" - }, - { - "x": 18.195705620607445, - "y": -5223.409251550558, - "rotation": 0.7120943348136599, - "action": "NOTHING" - }, - { - "x": 20.282515237526336, - "y": -5225.760291394469, - "rotation": 0.7086036763096712, - "action": "NOTHING" - }, - { - "x": 22.359464431699102, - "y": -5228.1213264153475, - "rotation": 0.7051130178056826, - "action": "NOTHING" - }, - { - "x": 24.426570518999373, - "y": -5230.492385083755, - "rotation": 0.7016223593016939, - "action": "NOTHING" - }, - { - "x": 26.483850441469045, - "y": -5232.873496105132, - "rotation": 0.6981317007977053, - "action": "NOTHING" - }, - { - "x": 28.531320768519222, - "y": -5235.264688418968, - "rotation": 0.6946410422937166, - "action": "NOTHING" - }, - { - "x": 30.56899769812749, - "y": -5237.665991197968, - "rotation": 0.6911503837897279, - "action": "NOTHING" - }, - { - "x": 32.596897058031516, - "y": -5240.077433847224, - "rotation": 0.6876597252857393, - "action": "NOTHING" - }, - { - "x": 34.61503430691901, - "y": -5242.4990460033905, - "rotation": 0.6841690667817506, - "action": "NOTHING" - }, - { - "x": 36.62342453561405, - "y": -5244.930857533862, - "rotation": 0.6806784082777619, - "action": "CARVE_LEFT" - }, - { - "x": 38.28313480854822, - "y": -5247.686738961608, - "rotation": 0.6248278722139434, - "action": "CARVE_LEFT" - }, - { - "x": 39.79518176870044, - "y": -5250.581307386803, - "rotation": 0.5689773361501249, - "action": "CARVE_LEFT" - }, - { - "x": 41.15966534722141, - "y": -5253.615212043001, - "rotation": 0.5131268000863064, - "action": "CARVE_LEFT" - }, - { - "x": 42.3766080446138, - "y": -5256.789172004394, - "rotation": 0.45727626402248783, - "action": "CARVE_LEFT" - }, - { - "x": 43.44595518823688, - "y": -5260.103975952018, - "rotation": 0.40142572795866927, - "action": "CARVE_LEFT" - }, - { - "x": 44.36757518900764, - "y": -5263.560481940693, - "rotation": 0.3455751918948507, - "action": "CARVE_LEFT" - }, - { - "x": 45.141259797300684, - "y": -5267.159617166688, - "rotation": 0.28972465583103213, - "action": "CARVE_LEFT" - }, - { - "x": 45.76672435804941, - "y": -5270.902377736122, - "rotation": 0.2338741197672136, - "action": "CARVE_LEFT" - }, - { - "x": 46.24360806505072, - "y": -5274.789828434082, - "rotation": 0.17802358370339505, - "action": "CARVE_LEFT" - }, - { - "x": 46.57147421447586, - "y": -5278.823102494472, - "rotation": 0.12217304763957651, - "action": "CARVE_LEFT" - }, - { - "x": 46.74981045758955, - "y": -5283.003401370579, - "rotation": 0.06632251157575797, - "action": "CARVE_LEFT" - }, - { - "x": 46.77802905267989, - "y": -5287.331994506362, - "rotation": 0.010471975511939423, - "action": "CARVE_LEFT" - }, - { - "x": 46.6555011866015, - "y": -5291.582070772754, - "rotation": 6.237806746627707, - "action": "CARVE_LEFT" - }, - { - "x": 46.38166630232598, - "y": -5295.700085794904, - "rotation": 6.1819562105638886, - "action": "CARVE_LEFT" - }, - { - "x": 45.9560433530875, - "y": -5299.684827397857, - "rotation": 6.12610567450007, - "action": "CARVE_LEFT" - }, - { - "x": 45.378230537358895, - "y": -5303.53515869878, - "rotation": 6.070255138436251, - "action": "CARVE_LEFT" - }, - { - "x": 44.64790503465605, - "y": -5307.250017857549, - "rotation": 6.014404602372433, - "action": "CARVE_LEFT" - }, - { - "x": 43.76482274216792, - "y": -5310.828417828105, - "rotation": 5.958554066308614, - "action": "CARVE_LEFT" - }, - { - "x": 42.72881801220984, - "y": -5314.269446110585, - "rotation": 5.902703530244795, - "action": "CARVE_LEFT" - }, - { - "x": 41.53980339049749, - "y": -5317.57226450423, - "rotation": 5.846852994180977, - "action": "CARVE_LEFT" - }, - { - "x": 40.19776935523919, - "y": -5320.736108861057, - "rotation": 5.791002458117158, - "action": "CARVE_LEFT" - }, - { - "x": 38.70278405704406, - "y": -5323.760288840303, - "rotation": 5.73515192205334, - "action": "CARVE_LEFT" - }, - { - "x": 37.054993059643515, - "y": -5326.644187663627, - "rotation": 5.679301385989521, - "action": "CARVE_LEFT" - }, - { - "x": 35.254619081423684, - "y": -5329.387261871086, - "rotation": 5.623450849925702, - "action": "CARVE_LEFT" - }, - { - "x": 33.3019617377664, - "y": -5331.989041077855, - "rotation": 5.567600313861884, - "action": "CARVE_LEFT" - }, - { - "x": 31.197397284196214, - "y": -5334.449127731727, - "rotation": 5.511749777798065, - "action": "CARVE_LEFT" - }, - { - "x": 28.94137836033109, - "y": -5336.767196871344, - "rotation": 5.4558992417342465, - "action": "NOTHING" - }, - { - "x": 26.44585123784872, - "y": -5338.86246838818, - "rotation": 5.459389900238235, - "action": "NOTHING" - }, - { - "x": 23.961451964972035, - "y": -5340.9670619408535, - "rotation": 5.462880558742223, - "action": "NOTHING" - }, - { - "x": 21.488148244297516, - "y": -5343.080996744849, - "rotation": 5.466371217246212, - "action": "NOTHING" - }, - { "x": 19.02590820075961, "y": -5345.204292283903, "rotation": 5.4698618757502, "action": "NOTHING" }, - { - "x": 16.574700380280884, - "y": -5347.336968309064, - "rotation": 5.473352534254189, - "action": "NOTHING" - }, - { - "x": 14.13449374842632, - "y": -5349.479044837748, - "rotation": 5.476843192758177, - "action": "NOTHING" - }, - { - "x": 11.705257689061671, - "y": -5351.630542152805, - "rotation": 5.4803338512621655, - "action": "NOTHING" - }, - { - "x": 9.286962003015939, - "y": -5353.791480801584, - "rotation": 5.483824509766154, - "action": "NOTHING" - }, - { - "x": 6.8795769067479, - "y": -5355.9618815950025, - "rotation": 5.487315168270142, - "action": "NOTHING" - }, - { - "x": 4.483073031016702, - "y": -5358.14176560662, - "rotation": 5.490805826774131, - "action": "NOTHING" - }, - { - "x": 2.0974214195565137, - "y": -5360.331154171709, - "rotation": 5.494296485278119, - "action": "NOTHING" - }, - { - "x": -0.27740647224479753, - "y": -5362.53006888634, - "rotation": 5.497787143782108, - "action": "NOTHING" - }, - { - "x": -2.6414387786629536, - "y": -5364.738531606456, - "rotation": 5.501277802286096, - "action": "NOTHING" - }, - { - "x": -4.9947032249505465, - "y": -5366.95656444696, - "rotation": 5.504768460790085, - "action": "NOTHING" - }, - { - "x": -7.337227128646318, - "y": -5369.184189780805, - "rotation": 5.508259119294073, - "action": "NOTHING" - }, - { - "x": -9.669037400880434, - "y": -5371.421430238077, - "rotation": 5.5117497777980615, - "action": "NOTHING" - }, - { - "x": -11.990160547675805, - "y": -5373.668308705092, - "rotation": 5.51524043630205, - "action": "NOTHING" - }, - { - "x": -14.300622671245424, - "y": -5375.924848323495, - "rotation": 5.518731094806038, - "action": "NOTHING" - }, - { - "x": -16.60044947128575, - "y": -5378.191072489351, - "rotation": 5.522221753310027, - "action": "NOTHING" - }, - { - "x": -18.88966624626616, - "y": -5380.467004852257, - "rotation": 5.525712411814015, - "action": "NOTHING" - }, - { - "x": -21.168297894714453, - "y": -5382.752669314435, - "rotation": 5.529203070318004, - "action": "NOTHING" - }, - { - "x": -23.43636891649844, - "y": -5385.048090029849, - "rotation": 5.532693728821992, - "action": "NOTHING" - }, - { - "x": -25.693903414103648, - "y": -5387.353291403312, - "rotation": 5.536184387325981, - "action": "CARVE_RIGHT" - }, - { - "x": -27.57380605889695, - "y": -5390.008223122016, - "rotation": 5.592034923389799, - "action": "CARVE_RIGHT" - }, - { - "x": -29.30211883735857, - "y": -5392.80433353894, - "rotation": 5.647885459453618, - "action": "CARVE_RIGHT" - }, - { - "x": -30.87905222111664, - "y": -5395.7421723953385, - "rotation": 5.7037359955174365, - "action": "CARVE_RIGHT" - }, - { - "x": -32.30473887620582, - "y": -5398.822359613124, - "rotation": 5.759586531581255, - "action": "CARVE_RIGHT" - }, - { - "x": -33.57923392175579, - "y": -5402.045585059996, - "rotation": 5.815437067645074, - "action": "CARVE_RIGHT" - }, - { - "x": -34.702515187872656, - "y": -5405.412608315305, - "rotation": 5.871287603708892, - "action": "CARVE_RIGHT" - }, - { - "x": -35.67448347271556, - "y": -5408.92425843665, - "rotation": 5.927138139772711, - "action": "CARVE_RIGHT" - }, - { - "x": -36.49496279877095, - "y": -5412.581433727207, - "rotation": 5.98298867583653, - "action": "CARVE_RIGHT" - }, - { - "x": -37.16370066832698, - "y": -5416.385101503782, - "rotation": 6.038839211900348, - "action": "CARVE_RIGHT" - }, - { - "x": -37.68036831815037, - "y": -5420.336297865599, - "rotation": 6.094689747964167, - "action": "CARVE_RIGHT" - }, - { - "x": -38.04456097336809, - "y": -5424.436127463809, - "rotation": 6.1505402840279855, - "action": "CARVE_RIGHT" - }, - { - "x": -38.25579810055636, - "y": -5428.685763271719, - "rotation": 6.206390820091804, - "action": "CARVE_RIGHT" - }, - { - "x": -38.31352366003924, - "y": -5433.086446355746, - "rotation": 6.262241356155623, - "action": "CARVE_RIGHT" - }, - { - "x": -38.217126517399194, - "y": -5437.460020419974, - "rotation": 0.03490658503985511, - "action": "CARVE_RIGHT" - }, - { - "x": -37.9660486207621, - "y": -5441.698301153807, - "rotation": 0.09075712110367365, - "action": "CARVE_RIGHT" - }, - { - "x": -37.55981141290009, - "y": -5445.800078958058, - "rotation": 0.1466076571674922, - "action": "CARVE_RIGHT" - }, - { - "x": -36.99801556627013, - "y": -5449.764219510588, - "rotation": 0.20245819323131073, - "action": "CARVE_RIGHT" - }, - { - "x": -36.28034071888062, - "y": -5453.589663516944, - "rotation": 0.25830872929512927, - "action": "CARVE_RIGHT" - }, - { - "x": -35.406545210983396, - "y": -5457.275426461778, - "rotation": 0.31415926535894784, - "action": "CARVE_RIGHT" - }, - { - "x": -34.37646582258879, - "y": -5460.82059836104, - "rotation": 0.3700098014227664, - "action": "CARVE_RIGHT" - }, - { - "x": -33.190017511801216, - "y": -5464.2243435149385, - "rotation": 0.42586033748658497, - "action": "CARVE_RIGHT" - }, - { - "x": -31.847193153972814, - "y": -5467.485900261677, - "rotation": 0.48171087355040354, - "action": "CARVE_RIGHT" - }, - { - "x": -30.34806328167273, - "y": -5470.604580731951, - "rotation": 0.537561409614222, - "action": "CARVE_RIGHT" - }, - { - "x": -28.69277582546956, - "y": -5473.579770604211, - "rotation": 0.5934119456780406, - "action": "CARVE_RIGHT" - }, - { - "x": -26.88155585552452, - "y": -5476.410928860697, - "rotation": 0.6492624817418591, - "action": "CARVE_RIGHT" - }, - { - "x": -24.914705323992926, - "y": -5479.0975875442155, - "rotation": 0.7051130178056776, - "action": "CARVE_RIGHT" - }, - { - "x": -22.792602808231518, - "y": -5481.639351515693, - "rotation": 0.7609635538694961, - "action": "CARVE_RIGHT" - }, - { - "x": -20.515703254809267, - "y": -5484.0358982124735, - "rotation": 0.8168140899333146, - "action": "CARVE_RIGHT" - }, - { - "x": -18.084537724319205, - "y": -5486.2869774073715, - "rotation": 0.8726646259971331, - "action": "CARVE_RIGHT" - }, - { - "x": -15.499713136988873, - "y": -5488.39241096848, - "rotation": 0.9285151620609516, - "action": "CARVE_RIGHT" - }, - { - "x": -12.761912019087044, - "y": -5490.352092619723, - "rotation": 0.9843656981247701, - "action": "CARVE_RIGHT" - }, - { - "x": -9.871892250124242, - "y": -5492.1659877021575, - "rotation": 1.0402162341885888, - "action": "CARVE_RIGHT" - }, - { - "x": -6.830486810844761, - "y": -5493.8341329360155, - "rotation": 1.0960667702524074, - "action": "CARVE_RIGHT" - }, - { - "x": -3.63860353200774, - "y": -5495.356636183496, - "rotation": 1.151917306316226, - "action": "CARVE_RIGHT" - }, - { - "x": -0.29722484395496185, - "y": -5496.733676212291, - "rotation": 1.2077678423800446, - "action": "CARVE_RIGHT" - }, - { - "x": 3.192592473037002, - "y": -5497.965502459849, - "rotation": 1.2636183784438633, - "action": "CARVE_RIGHT" - }, - { - "x": 6.829717537622656, - "y": -5499.052434798374, - "rotation": 1.319468914507682, - "action": "CARVE_RIGHT" - }, - { - "x": 10.6129456154738, - "y": -5499.994863300564, - "rotation": 1.3753194505715005, - "action": "CARVE_RIGHT" - }, - { - "x": 14.540998366588452, - "y": -5500.793248006075, - "rotation": 1.4311699866353191, - "action": "CARVE_RIGHT" - }, - { - "x": 18.61252409182481, - "y": -5501.448118688712, - "rotation": 1.4870205226991378, - "action": "CARVE_RIGHT" - }, - { - "x": 22.826097978662567, - "y": -5501.960074624351, - "rotation": 1.5428710587629564, - "action": "NOTHING" - }, - { - "x": 27.48602118661534, - "y": -5502.048130618455, - "rotation": 1.5393804002589677, - "action": "NOTHING" - }, - { - "x": 32.12424708405405, - "y": -5502.14573638229, - "rotation": 1.535889741754979, - "action": "NOTHING" - }, - { - "x": 36.74090319581122, - "y": -5502.252846854806, - "rotation": 1.5323990832509904, - "action": "NOTHING" - }, - { - "x": 41.336116329103405, - "y": -5502.369417456868, - "rotation": 1.5289084247470017, - "action": "NOTHING" - }, - { - "x": 45.910012575762224, - "y": -5502.495404089647, - "rotation": 1.525417766243013, - "action": "NOTHING" - }, - { - "x": 50.46271731445876, - "y": -5502.630763133016, - "rotation": 1.5219271077390244, - "action": "CARVE_LEFT" - }, - { - "x": 54.40055438484688, - "y": -5503.3252670255015, - "rotation": 1.4660765716752058, - "action": "CARVE_LEFT" - }, - { - "x": 58.18017147308428, - "y": -5504.156865944806, - "rotation": 1.4102260356113872, - "action": "CARVE_LEFT" - }, - { - "x": 61.80286412144002, - "y": -5505.125130493812, - "rotation": 1.3543754995475685, - "action": "CARVE_LEFT" - }, - { - "x": 65.2698464728827, - "y": -5506.22970471968, - "rotation": 1.29852496348375, - "action": "CARVE_LEFT" - }, - { - "x": 68.58225154095585, - "y": -5507.470305868771, - "rotation": 1.2426744274199313, - "action": "CARVE_LEFT" - }, - { - "x": 71.74113147881262, - "y": -5508.846724142347, - "rotation": 1.1868238913561127, - "action": "CARVE_LEFT" - }, - { - "x": 74.7474578474124, - "y": -5510.358822453029, - "rotation": 1.130973355292294, - "action": "CARVE_LEFT" - }, - { - "x": 77.60212188288187, - "y": -5512.006536182015, - "rotation": 1.0751228192284754, - "action": "CARVE_LEFT" - }, - { - "x": 80.30593476304288, - "y": -5513.789872937068, - "rotation": 1.0192722831646568, - "action": "CARVE_LEFT" - }, - { - "x": 82.85962787310976, - "y": -5515.708912311246, - "rotation": 0.9634217471008383, - "action": "CARVE_LEFT" - }, - { - "x": 85.26385307055847, - "y": -5517.763805642399, - "rotation": 0.9075712110370198, - "action": "CARVE_LEFT" - }, - { - "x": 87.51918294917016, - "y": -5519.954775773413, - "rotation": 0.8517206749732013, - "action": "CARVE_LEFT" - }, - { - "x": 89.62611110225153, - "y": -5522.282116813204, - "rotation": 0.7958701389093827, - "action": "CARVE_LEFT" - }, - { - "x": 91.5850523850345, - "y": -5524.746193898466, - "rotation": 0.7400196028455642, - "action": "CARVE_LEFT" - }, - { - "x": 93.3963431762576, - "y": -5527.347442956157, - "rotation": 0.6841690667817457, - "action": "CARVE_LEFT" - }, - { - "x": 95.06024163893161, - "y": -5530.086370466731, - "rotation": 0.6283185307179272, - "action": "CARVE_LEFT" - }, - { - "x": 96.57692798029184, - "y": -5532.963553228119, - "rotation": 0.5724679946541087, - "action": "CARVE_LEFT" - }, - { - "x": 97.94650471093945, - "y": -5535.979638120436, - "rotation": 0.5166174585902902, - "action": "CARVE_LEFT" - }, - { - "x": 99.16899690317437, - "y": -5539.135341871435, - "rotation": 0.4607669225264716, - "action": "CARVE_LEFT" - }, - { - "x": 100.24435244852212, - "y": -5542.431450822693, - "rotation": 0.40491638646265304, - "action": "CARVE_LEFT" - }, - { - "x": 101.17244231445692, - "y": -5545.868820696525, - "rotation": 0.3490658503988345, - "action": "CARVE_LEFT" - }, - { - "x": 101.95306080032367, - "y": -5549.44837636364, - "rotation": 0.2932153143350159, - "action": "CARVE_LEFT" - }, - { - "x": 102.58592579246105, - "y": -5553.1711116115075, - "rotation": 0.23736477827119737, - "action": "CARVE_LEFT" - }, - { - "x": 103.07067901852818, - "y": -5557.0380889134685, - "rotation": 0.18151424220737883, - "action": "CARVE_LEFT" - }, - { - "x": 103.4068863010372, - "y": -5561.050439198557, - "rotation": 0.1256637061435603, - "action": "CARVE_LEFT" - }, - { - "x": 103.59403781009425, - "y": -5565.209361622049, - "rotation": 0.06981317007974175, - "action": "CARVE_LEFT" - }, - { - "x": 103.63154831535107, - "y": -5569.51612333673, - "rotation": 0.013962634015923202, - "action": "CARVE_LEFT" - }, - { - "x": 103.51878646756971, - "y": -5573.762094148246, - "rotation": 6.241297405131691, - "action": "CARVE_LEFT" - }, - { - "x": 103.25518455005873, - "y": -5577.876515612041, - "rotation": 6.1854468690678726, - "action": "CARVE_LEFT" - }, - { - "x": 102.84025438116032, - "y": -5581.858168747934, - "rotation": 6.129596333004054, - "action": "CARVE_LEFT" - }, - { - "x": 102.2735870491474, - "y": -5585.7059098912305, - "rotation": 6.073745796940235, - "action": "CARVE_LEFT" - }, - { - "x": 101.55485264794908, - "y": -5589.418670443229, - "rotation": 6.017895260876417, - "action": "CARVE_LEFT" - }, - { - "x": 100.68380001370213, - "y": -5592.995456622503, - "rotation": 5.962044724812598, - "action": "CARVE_LEFT" - }, - { - "x": 99.6602564621258, - "y": -5596.435349216964, - "rotation": 5.906194188748779, - "action": "CARVE_LEFT" - }, - { - "x": 98.4841275267177, - "y": -5599.737503336688, - "rotation": 5.850343652684961, - "action": "CARVE_LEFT" - }, - { - "x": 97.15539669776818, - "y": -5602.90114816752, - "rotation": 5.794493116621142, - "action": "CARVE_LEFT" - }, - { - "x": 95.6741251621908, - "y": -5605.925586725441, - "rotation": 5.738642580557324, - "action": "CARVE_LEFT" - }, - { - "x": 94.04045154416639, - "y": -5608.8101956117025, - "rotation": 5.682792044493505, - "action": "CARVE_LEFT" - }, - { - "x": 92.25459164659827, - "y": -5611.554424768722, - "rotation": 5.626941508429686, - "action": "CARVE_LEFT" - }, - { - "x": 90.31683819337627, - "y": -5614.1577972367395, - "rotation": 5.571090972365868, - "action": "CARVE_LEFT" - }, - { - "x": 88.22756057244702, - "y": -5616.619908911235, - "rotation": 5.515240436302049, - "action": "CARVE_LEFT" - }, - { - "x": 85.98720457968814, - "y": -5618.940428301098, - "rotation": 5.4593899002382305, - "action": "CARVE_LEFT" - }, - { - "x": 83.59629216358391, - "y": -5621.1190962875535, - "rotation": 5.403539364174412, - "action": "CARVE_LEFT" - }, - { - "x": 81.05542117070001, - "y": -5623.155725883839, - "rotation": 5.347688828110593, - "action": "CARVE_LEFT" - }, - { - "x": 78.36526509195495, - "y": -5625.050201995631, - "rotation": 5.291838292046775, - "action": "CARVE_LEFT" - }, - { - "x": 75.52657280968573, - "y": -5626.802481182217, - "rotation": 5.235987755982956, - "action": "CARVE_LEFT" - }, - { - "x": 72.54016834550546, - "y": -5628.412591418413, - "rotation": 5.180137219919137, - "action": "CARVE_LEFT" - }, - { - "x": 69.40695060895047, - "y": -5629.880631857228, - "rotation": 5.124286683855319, - "action": "CARVE_LEFT" - }, - { - "x": 66.12789314691453, - "y": -5631.2067725932575, - "rotation": 5.0684361477915, - "action": "CARVE_LEFT" - }, - { - "x": 62.7040438938679, - "y": -5632.3912544268305, - "rotation": 5.0125856117276815, - "action": "CARVE_LEFT" - }, - { - "x": 59.13652492285876, - "y": -5633.43438862888, - "rotation": 4.956735075663863, - "action": "CARVE_LEFT" - }, - { - "x": 55.42653219729477, - "y": -5634.336556706551, - "rotation": 4.900884539600044, - "action": "CARVE_LEFT" - }, - { - "x": 51.57533532350226, - "y": -5635.0982101695445, - "rotation": 4.845034003536226, - "action": "CARVE_LEFT" - }, - { - "x": 47.58427730406092, - "y": -5635.719870297184, - "rotation": 4.789183467472407, - "action": "CARVE_LEFT" - }, - { - "x": 43.45477429191145, - "y": -5636.20212790621, - "rotation": 4.733332931408588, - "action": "NOTHING" - }, - { - "x": 38.88786939783872, - "y": -5636.268945760608, - "rotation": 4.736823589912577, - "action": "NOTHING" - }, - { - "x": 34.342269001793134, - "y": -5636.34512475166, - "rotation": 4.740314248416565, - "action": "NOTHING" - }, - { - "x": 29.817846532120143, - "y": -5636.430620263181, - "rotation": 4.743804906920554, - "action": "NOTHING" - }, - { - "x": 25.314476131350354, - "y": -5636.52538815882, - "rotation": 4.747295565424542, - "action": "NOTHING" - }, - { - "x": 20.832032653979688, - "y": -5636.629384780457, - "rotation": 4.750786223928531, - "action": "NOTHING" - }, - { - "x": 16.370391664256154, - "y": -5636.742566946609, - "rotation": 4.754276882432519, - "action": "NOTHING" - }, - { - "x": 11.929429433973251, - "y": -5636.864891950833, - "rotation": 4.7577675409365074, - "action": "NOTHING" - }, - { - "x": 7.509022940269961, - "y": -5636.996317560143, - "rotation": 4.761258199440496, - "action": "NOTHING" - }, - { - "x": 3.109049863437325, - "y": -5637.136802013427, - "rotation": 4.764748857944484, - "action": "NOTHING" - }, - { - "x": -1.2706114152684238, - "y": -5637.286304019868, - "rotation": 4.768239516448473, - "action": "NOTHING" - }, - { - "x": -5.6300818158061885, - "y": -5637.444782757378, - "rotation": 4.771730174952461, - "action": "NOTHING" - }, - { - "x": -9.96948156152382, - "y": -5637.612197871024, - "rotation": 4.77522083345645, - "action": "NOTHING" - }, - { - "x": -14.288930181325412, - "y": -5637.788509471472, - "rotation": 4.778711491960438, - "action": "CARVE_RIGHT" - }, - { - "x": -18.023596924219042, - "y": -5638.496779603435, - "rotation": 4.834562028024257, - "action": "CARVE_RIGHT" - }, - { - "x": -21.60674770780103, - "y": -5639.336606553082, - "rotation": 4.890412564088075, - "action": "CARVE_RIGHT" - }, - { - "x": -25.039622115880785, - "y": -5640.307611063635, - "rotation": 4.946263100151894, - "action": "CARVE_RIGHT" - }, - { - "x": -28.323378530539422, - "y": -5641.409487143838, - "rotation": 5.002113636215713, - "action": "CARVE_RIGHT" - }, - { - "x": -31.459094401366997, - "y": -5642.642001823466, - "rotation": 5.057964172279531, - "action": "CARVE_RIGHT" - }, - { - "x": -34.447766513861076, - "y": -5644.004994909595, - "rotation": 5.11381470834335, - "action": "CARVE_RIGHT" - }, - { - "x": -37.29031125698913, - "y": -5645.498378743642, - "rotation": 5.1696652444071685, - "action": "CARVE_RIGHT" - }, - { - "x": -39.98756488991728, - "y": -5647.1221379591625, - "rotation": 5.225515780470987, - "action": "CARVE_RIGHT" - }, - { - "x": -42.5402838079079, - "y": -5648.876329240398, - "rotation": 5.281366316534806, - "action": "CARVE_RIGHT" - }, - { - "x": -44.94914480738845, - "y": -5650.761081081593, - "rotation": 5.337216852598624, - "action": "CARVE_RIGHT" - }, - { - "x": -47.214745350194256, - "y": -5652.7765935470525, - "rotation": 5.393067388662443, - "action": "CARVE_RIGHT" - }, - { - "x": -49.33760382698745, - "y": -5654.923138031955, - "rotation": 5.448917924726262, - "action": "CARVE_RIGHT" - }, - { - "x": -51.318159819854685, - "y": -5657.201057023917, - "rotation": 5.50476846079008, - "action": "CARVE_RIGHT" - }, - { - "x": -53.156774364086125, - "y": -5659.610763865301, - "rotation": 5.560618996853899, - "action": "CARVE_RIGHT" - }, - { - "x": -54.85373020913799, - "y": -5662.152742516266, - "rotation": 5.6164695329177174, - "action": "CARVE_RIGHT" - }, - { - "x": -56.40923207878128, - "y": -5664.827547318562, - "rotation": 5.672320068981536, - "action": "CARVE_RIGHT" - }, - { - "x": -57.823406930439, - "y": -5667.635802760067, - "rotation": 5.728170605045355, - "action": "CARVE_RIGHT" - }, - { - "x": -59.09630421371439, - "y": -5670.578203240055, - "rotation": 5.784021141109173, - "action": "CARVE_RIGHT" - }, - { - "x": -60.22789612811255, - "y": -5673.655512835203, - "rotation": 5.839871677172992, - "action": "CARVE_RIGHT" - }, - { - "x": -61.21807787995783, - "y": -5676.868565066332, - "rotation": 5.895722213236811, - "action": "CARVE_RIGHT" - }, - { - "x": -62.066667938509546, - "y": -5680.218262665878, - "rotation": 5.951572749300629, - "action": "CARVE_RIGHT" - }, - { - "x": -62.77340829127821, - "y": -5683.705577346088, - "rotation": 6.007423285364448, - "action": "CARVE_RIGHT" - }, - { - "x": -63.337964698544866, - "y": -5687.33154956795, - "rotation": 6.063273821428266, - "action": "CARVE_RIGHT" - }, - { - "x": -63.75992694708583, - "y": -5691.097288310838, - "rotation": 6.119124357492085, - "action": "CARVE_RIGHT" - }, - { - "x": -64.03880910310518, - "y": -5695.003970842888, - "rotation": 6.174974893555904, - "action": "CARVE_RIGHT" - }, - { - "x": -64.17404976437747, - "y": -5699.052842492086, - "rotation": 6.230825429619722, - "action": "CARVE_RIGHT" - }, - { - "x": -64.16501251320295, - "y": -5703.228387247758, - "rotation": 0.003490658503954691, - "action": "CARVE_RIGHT" - }, - { - "x": -64.01104704160974, - "y": -5707.278786091962, - "rotation": 0.05934119456777324, - "action": "CARVE_RIGHT" - }, - { - "x": -63.71158286344674, - "y": -5711.202741512898, - "rotation": 0.11519173063159178, - "action": "NOTHING" - }, - { - "x": -63.38823638218874, - "y": -5715.113587264225, - "rotation": 0.11170107212760312, - "action": "NOTHING" - }, - { - "x": -63.074322815229344, - "y": -5719.0421949271895, - "rotation": 0.10821041362361446, - "action": "NOTHING" - }, - { - "x": -62.76988376067258, - "y": -5722.988627115889, - "rotation": 0.1047197551196258, - "action": "NOTHING" - }, - { - "x": -62.47496099431622, - "y": -5726.952946548714, - "rotation": 0.10122909661563713, - "action": "NOTHING" - }, - { - "x": -62.18959646906336, - "y": -5730.935216047945, - "rotation": 0.09773843811164847, - "action": "NOTHING" - }, - { - "x": -61.91383231433577, - "y": -5734.935498539365, - "rotation": 0.0942477796076598, - "action": "NOTHING" - }, - { - "x": -61.64771083548911, - "y": -5738.953857051866, - "rotation": 0.09075712110367114, - "action": "NOTHING" - } - ] -} diff --git a/src/public/ghosts/davos.json b/src/public/ghosts/davos.json deleted file mode 100644 index 52c5677..0000000 --- a/src/public/ghosts/davos.json +++ /dev/null @@ -1,17662 +0,0 @@ -{ - "date": "2024-04-09T19:48:18.778Z", - "eventId": "event1712691873503", - "trackName": "davos", - "trackVersion": 4, - "trackStyle": "GS", - "skier": "Mathieu Hugas", - "totalTime": 50350.09999990463, - "timedSectors": [ - { "sectorNumber": 1, "time": 17818 }, - { "sectorNumber": 2, "time": 32900 }, - { "sectorNumber": 3, "time": 50349.59999990463 } - ], - "positions": [ - { "x": 0, "y": 0, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.021000000000000005, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.06295380000000002, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.12581530164000004, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.20953850797639206, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.314077523258844, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.43938655270767457, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.5854199022917177, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.752131978506676, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.9394772881539614, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.1474104381200227, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.3758861351561587, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.6248591856588153, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.894284495450366, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -2.1841170695603753, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -2.4943120120073425, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -2.8248245255809263, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -3.1756099116246483, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -3.546623569819074, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -3.9378209979654724, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -4.349157791769948, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -4.780589644628054, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -5.232072347409872, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -5.703561788245571, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -6.195013952311431, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -6.706384921616346, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -7.23763087478879, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -7.788708086864255, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -8.359572929073154, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -8.950181868629194, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -9.56049146851821, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -10.19045838728747, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -10.840039378835437, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -11.509191292201999, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -12.197871071359154, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -12.906035755002165, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -13.63364247634116, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -14.380648462893209, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -15.147011036274844, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -15.93268761199504, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -16.73763569924865, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -17.5618129007103, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -18.405176912328738, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -19.267685523121614, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -20.149296614970748, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -21.049968162417812, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -21.969658232460493, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -22.90832498434908, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -23.865926669383512, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -24.84242163071087, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -25.837768303123305, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -26.851925212856433, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -27.884850977388147, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -28.936504305237893, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -30.00684399576637, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -31.095828938975686, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -32.20341811530994, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -33.329570595456254, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -34.47424554014625, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -35.637402199957926, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -36.81899991511802, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -38.01899811530476, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -39.23735631945109, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -40.474034135548294, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -41.72899126045009, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -43.0021874796771, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -44.293582667221806, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -45.60313678535392, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -46.93080988442614, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -48.2765621026804, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -49.6403536660545, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -51.02214488798918, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -52.4218961692356, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -53.83956799766328, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -55.27512094806842, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -56.72851568198267, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -58.19971294748231, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -59.68867357899785, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -61.195358497124055, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -62.71972870843038, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -64.26174530527183, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -65.82136946560023, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -67.3985624527759, "rotation": 0, "action": "CARVE_RIGHT" }, - { - "x": 0.02003741127504015, - "y": -68.97376082911067, - "rotation": 0.020317703036499744, - "action": "CARVE_RIGHT" - }, - { - "x": 0.0607332924038496, - "y": -70.54607863212891, - "rotation": 0.04084871646594227, - "action": "CARVE_RIGHT" - }, - { - "x": 0.12269917575521597, - "y": -72.11463660571329, - "rotation": 0.06158903510870582, - "action": "CARVE_RIGHT" - }, - { - "x": 0.20653653206650024, - "y": -73.67856275442608, - "rotation": 0.08253462654955483, - "action": "CARVE_RIGHT" - }, - { - "x": 0.3128362434241027, - "y": -75.23699289027611, - "rotation": 0.10368143189202982, - "action": "CARVE_RIGHT" - }, - { - "x": 0.4421780850005518, - "y": -76.78907117159223, - "rotation": 0.1250253665157382, - "action": "CARVE_RIGHT" - }, - { - "x": 0.5951302158953862, - "y": -78.33395063367131, - "rotation": 0.14656232083640944, - "action": "CARVE_RIGHT" - }, - { - "x": 0.7722486794192872, - "y": -79.87079371087586, - "rotation": 0.1682881610685772, - "action": "NOTHING" - }, - { - "x": 0.9666707767311843, - "y": -81.40666987298343, - "rotation": 0.16479750256458853, - "action": "NOTHING" - }, - { - "x": 1.1586459170131982, - "y": -82.95988024982162, - "rotation": 0.16130684406059986, - "action": "NOTHING" - }, - { - "x": 1.3481032379650184, - "y": -84.53050397056784, - "rotation": 0.1578161855566112, - "action": "NOTHING" - }, - { - "x": 1.534971776816512, - "y": -86.11862022769199, - "rotation": 0.15432552705262254, - "action": "NOTHING" - }, - { - "x": 1.7191804706199645, - "y": -87.72430827675142, - "rotation": 0.15083486854863387, - "action": "NOTHING" - }, - { - "x": 1.9006581565415201, - "y": -89.34764743618622, - "rotation": 0.1473442100446452, - "action": "NOTHING" - }, - { - "x": 2.0793335721518273, - "y": -90.98871708711533, - "rotation": 0.14385355154065654, - "action": "NOTHING" - }, - { - "x": 2.2551353557158853, - "y": -92.6475966731331, - "rotation": 0.14036289303666788, - "action": "NOTHING" - }, - { - "x": 2.4279920464821, - "y": -94.32436570010647, - "rotation": 0.13687223453267922, - "action": "NOTHING" - }, - { - "x": 2.597832084970548, - "y": -96.01910373597285, - "rotation": 0.13338157602869055, - "action": "NOTHING" - }, - { - "x": 2.7645838132604497, - "y": -97.73189041053838, - "rotation": 0.1298909175247019, - "action": "NOTHING" - }, - { - "x": 2.9281754752768596, - "y": -99.46280541527702, - "rotation": 0.12640025902071322, - "action": "CARVE_RIGHT" - }, - { - "x": 3.1049724165009422, - "y": -101.1956380181903, - "rotation": 0.1506495527058029, - "action": "CARVE_RIGHT" - }, - { - "x": 3.3119349731764895, - "y": -102.91432646066939, - "rotation": 0.1750810612436321, - "action": "CARVE_RIGHT" - }, - { - "x": 3.549647071585654, - "y": -104.61797073927661, - "rotation": 0.19969017611283216, - "action": "CARVE_RIGHT" - }, - { - "x": 3.8186748903269336, - "y": -106.30568576160586, - "rotation": 0.22447226834302436, - "action": "CARVE_RIGHT" - }, - { - "x": 4.119566370216662, - "y": -107.97660186557279, - "rotation": 0.24942268935701933, - "action": "CARVE_RIGHT" - }, - { - "x": 4.4528507383241065, - "y": -109.62986532572516, - "rotation": 0.2745367718145403, - "action": "CARVE_RIGHT" - }, - { - "x": 4.819038046437594, - "y": -111.26463884628632, - "rotation": 0.29980983045732157, - "action": "CARVE_RIGHT" - }, - { - "x": 5.218618724247838, - "y": -112.88010204065529, - "rotation": 0.3252371629554338, - "action": "CARVE_RIGHT" - }, - { - "x": 5.652063147523313, - "y": -114.47545189709763, - "rotation": 0.35081405075468725, - "action": "NOTHING" - }, - { - "x": 6.131733019607637, - "y": -116.03996432830525, - "rotation": 0.3473233922506986, - "action": "NOTHING" - }, - { - "x": 6.6094152320743325, - "y": -117.61830144739059, - "rotation": 0.3438327337467099, - "action": "NOTHING" - }, - { - "x": 7.085057011006171, - "y": -119.21053242038145, - "rotation": 0.34034207524272125, - "action": "NOTHING" - }, - { - "x": 7.5586054259726385, - "y": -120.81672651356246, - "rotation": 0.3368514167387326, - "action": "NOTHING" - }, - { - "x": 8.030007390481218, - "y": -122.43695309315552, - "rotation": 0.3333607582347439, - "action": "NOTHING" - }, - { - "x": 8.499209662427448, - "y": -124.07128162500116, - "rotation": 0.32987009973075526, - "action": "CARVE_RIGHT" - }, - { - "x": 8.9580309205483, - "y": -125.72620457408387, - "rotation": 0.3565204577182596, - "action": "CARVE_RIGHT" - }, - { - "x": 9.45384596046964, - "y": -127.35747404724064, - "rotation": 0.38331229267228595, - "action": "CARVE_RIGHT" - }, - { - "x": 9.987086466404804, - "y": -128.9643070108007, - "rotation": 0.41024067919415486, - "action": "CARVE_RIGHT" - }, - { - "x": 10.558160853566832, - "y": -130.54594106023845, - "rotation": 0.43730067920384935, - "action": "CARVE_RIGHT" - }, - { - "x": 11.167453900786272, - "y": -132.10163482853307, - "rotation": 0.46448734281836124, - "action": "CARVE_RIGHT" - }, - { - "x": 11.815326400738572, - "y": -133.63066837821876, - "rotation": 0.4917957092301374, - "action": "CARVE_RIGHT" - }, - { - "x": 12.502114827977374, - "y": -135.13234357693244, - "rotation": 0.5192208075854752, - "action": "CARVE_RIGHT" - }, - { - "x": 13.228131024956898, - "y": -136.6059844562774, - "rotation": 0.5467576578627152, - "action": "NOTHING" - }, - { - "x": 14.033033309160006, - "y": -138.01559878566712, - "rotation": 0.5432669993587266, - "action": "NOTHING" - }, - { - "x": 14.836119894533606, - "y": -139.43593727227184, - "rotation": 0.5397763408547379, - "action": "NOTHING" - }, - { - "x": 15.637357246405854, - "y": -140.8670577388802, - "rotation": 0.5362856823507492, - "action": "NOTHING" - }, - { - "x": 16.436711615769337, - "y": -142.30901814784093, - "rotation": 0.5327950238467606, - "action": "NOTHING" - }, - { - "x": 17.234149039893666, - "y": -143.76187660062521, - "rotation": 0.5293043653427719, - "action": "NOTHING" - }, - { - "x": 18.029635342936395, - "y": -145.22569133739032, - "rotation": 0.5258137068387833, - "action": "NOTHING" - }, - { - "x": 18.8231361365523, - "y": -146.70052073654446, - "rotation": 0.5223230483347946, - "action": "NOTHING" - }, - { - "x": 19.614616820501, - "y": -148.1864233143129, - "rotation": 0.5188323898308059, - "action": "NOTHING" - }, - { - "x": 20.404042583252924, - "y": -149.6834577243053, - "rotation": 0.5153417313268173, - "action": "NOTHING" - }, - { - "x": 21.19137840259367, - "y": -151.19168275708432, - "rotation": 0.5118510728228286, - "action": "NOTHING" - }, - { - "x": 21.97658904622669, - "y": -152.71115733973545, - "rotation": 0.5083604143188399, - "action": "NOTHING" - }, - { - "x": 22.759639072374362, - "y": -154.24194053543803, - "rotation": 0.5048697558148513, - "action": "NOTHING" - }, - { - "x": 23.540492830377442, - "y": -155.7840915430375, - "rotation": 0.5013790973108626, - "action": "NOTHING" - }, - { - "x": 24.31911446129286, - "y": -157.337669696619, - "rotation": 0.49788843880687395, - "action": "NOTHING" - }, - { - "x": 25.095467898489936, - "y": -158.90273446508198, - "rotation": 0.4943977803028853, - "action": "NOTHING" - }, - { - "x": 25.86951686824496, - "y": -160.47934545171617, - "rotation": 0.4909071217988966, - "action": "NOTHING" - }, - { - "x": 26.641224890334158, - "y": -162.06756239377881, - "rotation": 0.48741646329490795, - "action": "NOTHING" - }, - { - "x": 27.410555278625058, - "y": -163.66744516207288, - "rotation": 0.4839258047909193, - "action": "NOTHING" - }, - { - "x": 28.177471141666256, - "y": -165.27905376052672, - "rotation": 0.4804351462869306, - "action": "NOTHING" - }, - { - "x": 28.94193538327558, - "y": -166.90244832577486, - "rotation": 0.47694448778294196, - "action": "CARVE_RIGHT" - }, - { - "x": 29.67590822381348, - "y": -168.56246919173392, - "rotation": 0.5069758639905377, - "action": "CARVE_RIGHT" - }, - { - "x": 30.456165088740466, - "y": -170.18760660027118, - "rotation": 0.5371153671601577, - "action": "CARVE_RIGHT" - }, - { - "x": 31.283004934078626, - "y": -171.77716189313654, - "rotation": 0.5673575687202731, - "action": "CARVE_RIGHT" - }, - { - "x": 32.15669639095852, - "y": -173.33046411842196, - "rotation": 0.5976970343552671, - "action": "CARVE_RIGHT" - }, - { - "x": 33.07747750807337, - "y": -174.8468703425643, - "rotation": 0.6281283249539823, - "action": "CARVE_RIGHT" - }, - { - "x": 34.04555551631711, - "y": -176.32576594169728, - "rotation": 0.6586459975570065, - "action": "CARVE_RIGHT" - }, - { - "x": 35.061106615706116, - "y": -177.76656487224764, - "rotation": 0.6892446063025375, - "action": "CARVE_RIGHT" - }, - { - "x": 36.12427578466861, - "y": -179.16870992068536, - "rotation": 0.7199187033706667, - "action": "CARVE_RIGHT" - }, - { - "x": 37.23517661176974, - "y": -180.53167293235288, - "rotation": 0.7506628399259226, - "action": "CARVE_RIGHT" - }, - { - "x": 38.393891149924706, - "y": -181.85495501931217, - "rotation": 0.7814715670579159, - "action": "CARVE_RIGHT" - }, - { - "x": 39.60046979313638, - "y": -183.13808674716427, - "rotation": 0.8123394367199269, - "action": "CARVE_RIGHT" - }, - { - "x": 40.85493117577802, - "y": -184.38062830080935, - "rotation": 0.8432610026652814, - "action": "CARVE_RIGHT" - }, - { - "x": 42.15726209442621, - "y": -185.58216962913136, - "rotation": 0.8742308213813542, - "action": "CARVE_RIGHT" - }, - { - "x": 43.507417452233184, - "y": -186.7423305686043, - "rotation": 0.9052434530210487, - "action": "NOTHING" - }, - { - "x": 45.00406324412111, - "y": -187.7704939998908, - "rotation": 0.90175279451706, - "action": "NOTHING" - }, - { - "x": 46.49718860070792, - "y": -188.80559753086723, - "rotation": 0.8982621360130714, - "action": "NOTHING" - }, - { - "x": 47.9867995839591, - "y": -189.84767411830708, - "rotation": 0.8947714775090827, - "action": "NOTHING" - }, - { - "x": 49.472901926140146, - "y": -190.89675693940816, - "rotation": 0.891280819005094, - "action": "NOTHING" - }, - { - "x": 50.955501030745154, - "y": -191.95287939111967, - "rotation": 0.8877901605011054, - "action": "NOTHING" - }, - { - "x": 52.43460197342283, - "y": -193.01607508947086, - "rotation": 0.8842995019971167, - "action": "NOTHING" - }, - { - "x": 53.910209502900074, - "y": -194.08637786890185, - "rotation": 0.880808843493128, - "action": "NOTHING" - }, - { - "x": 55.382328041903065, - "y": -195.1638217815962, - "rotation": 0.8773181849891394, - "action": "NOTHING" - }, - { - "x": 56.85096168807588, - "y": -196.2484410968153, - "rotation": 0.8738275264851507, - "action": "NOTHING" - }, - { - "x": 58.31611421489664, - "y": -197.3402703002348, - "rotation": 0.870336867981162, - "action": "NOTHING" - }, - { - "x": 59.777789072591254, - "y": -198.43934409328278, - "rotation": 0.8668462094771734, - "action": "NOTHING" - }, - { - "x": 61.23598938904459, - "y": -199.54569739247984, - "rotation": 0.8633555509731847, - "action": "NOTHING" - }, - { - "x": 62.69071797070933, - "y": -200.659365328781, - "rotation": 0.8598648924691961, - "action": "NOTHING" - }, - { - "x": 64.14197730351232, - "y": -201.78038324691954, - "rotation": 0.8563742339652074, - "action": "NOTHING" - }, - { - "x": 65.5897695537585, - "y": -202.9087867047526, - "rotation": 0.8528835754612187, - "action": "NOTHING" - }, - { - "x": 67.0340965690324, - "y": -204.04461147260866, - "rotation": 0.8493929169572301, - "action": "NOTHING" - }, - { - "x": 68.47495987909724, - "y": -205.1878935326369, - "rotation": 0.8459022584532414, - "action": "NOTHING" - }, - { - "x": 69.9123606967916, - "y": -206.33866907815835, - "rotation": 0.8424115999492527, - "action": "NOTHING" - }, - { - "x": 71.34629991892365, - "y": -207.4969745130188, - "rotation": 0.8389209414452641, - "action": "NOTHING" - }, - { - "x": 72.77677812716308, - "y": -208.66284645094376, - "rotation": 0.8354302829412754, - "action": "NOTHING" - }, - { - "x": 74.2037955889305, - "y": -209.83632171489492, - "rotation": 0.8319396244372868, - "action": "NOTHING" - }, - { - "x": 75.62735225828457, - "y": -211.0174373364287, - "rotation": 0.8284489659332981, - "action": "NOTHING" - }, - { - "x": 77.04744777680668, - "y": -212.20623055505655, - "rotation": 0.8249583074293094, - "action": "NOTHING" - }, - { - "x": 78.46408147448324, - "y": -213.40273881760683, - "rotation": 0.8214676489253208, - "action": "NOTHING" - }, - { - "x": 79.8772523705857, - "y": -214.6069997775889, - "rotation": 0.8179769904213321, - "action": "NOTHING" - }, - { - "x": 81.28695917454807, - "y": -215.81905129455862, - "rotation": 0.8144863319173434, - "action": "NOTHING" - }, - { - "x": 82.69320028684224, - "y": -217.03893143348586, - "rotation": 0.8109956734133548, - "action": "NOTHING" - }, - { - "x": 84.09597379985075, - "y": -218.2666784641237, - "rotation": 0.8075050149093661, - "action": "NOTHING" - }, - { - "x": 85.49527749873741, - "y": -219.50233086037946, - "rotation": 0.8040143564053774, - "action": "NOTHING" - }, - { - "x": 86.89110886231545, - "y": -220.74592729968754, - "rotation": 0.8005236979013888, - "action": "NOTHING" - }, - { - "x": 88.28346506391338, - "y": -221.99750666238393, - "rotation": 0.7970330393974001, - "action": "NOTHING" - }, - { - "x": 89.6723429722386, - "y": -223.2571080310825, - "rotation": 0.7935423808934114, - "action": "NOTHING" - }, - { - "x": 91.05773915223848, - "y": -224.52477069005323, - "rotation": 0.7900517223894228, - "action": "NOTHING" - }, - { - "x": 92.4396498659594, - "y": -225.8005341246019, - "rotation": 0.7865610638854341, - "action": "NOTHING" - }, - { - "x": 93.81807107340323, - "y": -227.08443802045184, - "rotation": 0.7830704053814455, - "action": "NOTHING" - }, - { - "x": 95.19299843338169, - "y": -228.37652226312713, - "rotation": 0.7795797468774568, - "action": "NOTHING" - }, - { - "x": 96.56442730436831, - "y": -229.6768269373378, - "rotation": 0.7760890883734681, - "action": "NOTHING" - }, - { - "x": 97.93235274534813, - "y": -230.98539232636668, - "rotation": 0.7725984298694795, - "action": "NOTHING" - }, - { - "x": 99.2967695166651, - "y": -232.30225891145784, - "rotation": 0.7691077713654908, - "action": "NOTHING" - }, - { - "x": 100.65767208086726, - "y": -233.62746737120702, - "rotation": 0.7656171128615021, - "action": "NOTHING" - }, - { - "x": 102.01505460354956, - "y": -234.9610585809536, - "rotation": 0.7621264543575135, - "action": "NOTHING" - }, - { - "x": 103.36891095419446, - "y": -236.3030736121743, - "rotation": 0.7586357958535248, - "action": "NOTHING" - }, - { - "x": 104.7192347070103, - "y": -237.6535537318787, - "rotation": 0.7551451373495361, - "action": "NOTHING" - }, - { - "x": 106.06601914176733, - "y": -239.01254040200638, - "rotation": 0.7516544788455475, - "action": "NOTHING" - }, - { - "x": 107.40925724463156, - "y": -240.38007527882576, - "rotation": 0.7481638203415588, - "action": "NOTHING" - }, - { - "x": 108.74894170899636, - "y": -241.7562002123347, - "rotation": 0.7446731618375702, - "action": "NOTHING" - }, - { - "x": 110.08506493631175, - "y": -243.14095724566283, - "rotation": 0.7411825033335815, - "action": "NOTHING" - }, - { - "x": 111.41761903691162, - "y": -244.5343886144754, - "rotation": 0.7376918448295928, - "action": "NOTHING" - }, - { - "x": 112.74659583083849, - "y": -245.936536746379, - "rotation": 0.7342011863256042, - "action": "NOTHING" - }, - { - "x": 114.07198684866626, - "y": -247.34744426032887, - "rotation": 0.7307105278216155, - "action": "NOTHING" - }, - { - "x": 115.39378333232067, - "y": -248.76715396603794, - "rotation": 0.7272198693176268, - "action": "NOTHING" - }, - { - "x": 116.71197623589748, - "y": -250.1957088633875, - "rotation": 0.7237292108136382, - "action": "NOTHING" - }, - { - "x": 118.02655622647858, - "y": -251.63315214183953, - "rotation": 0.7202385523096495, - "action": "NOTHING" - }, - { - "x": 119.33751368494576, - "y": -253.07952717985077, - "rotation": 0.7167478938056608, - "action": "NOTHING" - }, - { - "x": 120.64483870679247, - "y": -254.53487754428838, - "rotation": 0.7132572353016722, - "action": "NOTHING" - }, - { - "x": 121.94852110293316, - "y": -255.99924698984728, - "rotation": 0.7097665767976835, - "action": "NOTHING" - }, - { - "x": 123.24855040051064, - "y": -257.47267945846914, - "rotation": 0.7062759182936948, - "action": "NOTHING" - }, - { - "x": 124.54491584370118, - "y": -258.955219078763, - "rotation": 0.7027852597897062, - "action": "NOTHING" - }, - { - "x": 125.83760639451744, - "y": -260.44691016542754, - "rotation": 0.6992946012857175, - "action": "NOTHING" - }, - { - "x": 127.12661073360927, - "y": -261.9477972186751, - "rotation": 0.6958039427817289, - "action": "NOTHING" - }, - { - "x": 128.41191726106229, - "y": -263.4579249236571, - "rotation": 0.6923132842777402, - "action": "NOTHING" - }, - { - "x": 129.69351409719442, - "y": -264.97733814989135, - "rotation": 0.6888226257737515, - "action": "NOTHING" - }, - { - "x": 130.97138908335012, - "y": -266.5060819506907, - "rotation": 0.6853319672697629, - "action": "NOTHING" - }, - { - "x": 132.24552978269264, - "y": -268.0442015625937, - "rotation": 0.6818413087657742, - "action": "CARVE_LEFT" - }, - { - "x": 133.33564323407327, - "y": -269.7583899719363, - "rotation": 0.6468290627064956, - "action": "CARVE_LEFT" - }, - { - "x": 134.36894709197244, - "y": -271.5313096294664, - "rotation": 0.6117437334275342, - "action": "CARVE_LEFT" - }, - { - "x": 135.34520443119695, - "y": -273.363636536847, - "rotation": 0.5765794392385974, - "action": "CARVE_LEFT" - }, - { - "x": 136.2641376111104, - "y": -275.25608452497164, - "rotation": 0.5413302977895992, - "action": "NOTHING" - }, - { - "x": 137.2814654073049, - "y": -277.06520071409085, - "rotation": 0.5378396392856105, - "action": "NOTHING" - }, - { - "x": 138.2950576775957, - "y": -278.88557961381883, - "rotation": 0.5343489807816219, - "action": "NOTHING" - }, - { - "x": 139.30488772986195, - "y": -280.71727543719027, - "rotation": 0.5308583222776332, - "action": "NOTHING" - }, - { - "x": 140.31092863606568, - "y": -282.5603425507857, - "rotation": 0.5273676637736445, - "action": "NOTHING" - }, - { - "x": 141.31315323292634, - "y": -284.4148354742499, - "rotation": 0.5238770052696559, - "action": "NOTHING" - }, - { - "x": 142.31153412259332, - "y": -286.2808088798115, - "rotation": 0.5203863467656672, - "action": "NOTHING" - }, - { - "x": 143.3060436733168, - "y": -288.158317591804, - "rotation": 0.5168956882616785, - "action": "NOTHING" - }, - { - "x": 144.29665402011668, - "y": -290.0474165861882, - "rotation": 0.5134050297576899, - "action": "NOTHING" - }, - { - "x": 145.28333706544973, - "y": -291.9481609900761, - "rotation": 0.5099143712537012, - "action": "NOTHING" - }, - { - "x": 146.26606447987496, - "y": -293.86060608125587, - "rotation": 0.5064237127497125, - "action": "NOTHING" - }, - { - "x": 147.24480770271708, - "y": -295.7848072877185, - "rotation": 0.5029330542457239, - "action": "NOTHING" - }, - { - "x": 148.21953794272835, - "y": -297.72082018718555, - "rotation": 0.4994423957417352, - "action": "NOTHING" - }, - { - "x": 149.19022617874847, - "y": -299.66870050663846, - "rotation": 0.49595173723774655, - "action": "NOTHING" - }, - { - "x": 150.15684316036277, - "y": -301.62850412184906, - "rotation": 0.4924610787337579, - "action": "NOTHING" - }, - { - "x": 151.11935940855858, - "y": -303.6002870569115, - "rotation": 0.4889704202297692, - "action": "NOTHING" - }, - { - "x": 152.07774521637984, - "y": -305.5841054837754, - "rotation": 0.48547976172578056, - "action": "NOTHING" - }, - { - "x": 153.03197064957993, - "y": -307.58001572178046, - "rotation": 0.4819891032217919, - "action": "CARVE_LEFT" - }, - { - "x": 153.82688764579612, - "y": -309.7314511627531, - "rotation": 0.44489544548151355, - "action": "CARVE_LEFT" - }, - { - "x": 154.55748665205525, - "y": -311.9509373372636, - "rotation": 0.4076985061709507, - "action": "CARVE_LEFT" - }, - { - "x": 155.22328980891692, - "y": -314.23939676409736, - "rotation": 0.3703921063700101, - "action": "CARVE_LEFT" - }, - { - "x": 155.82377313480475, - "y": -316.5977951576527, - "rotation": 0.3329700619006936, - "action": "CARVE_LEFT" - }, - { - "x": 156.3583661367859, - "y": -319.02714187001294, - "rotation": 0.29542618227361317, - "action": "CARVE_LEFT" - }, - { - "x": 156.82645139094384, - "y": -321.528490361092, - "rotation": 0.2577542696357356, - "action": "CARVE_LEFT" - }, - { - "x": 157.22736409215003, - "y": -324.1029386970468, - "rotation": 0.21994811771917486, - "action": "CARVE_LEFT" - }, - { - "x": 157.5603915730189, - "y": -326.7516300771712, - "rotation": 0.18200151079084725, - "action": "CARVE_LEFT" - }, - { - "x": 157.82477279181157, - "y": -329.4757533895026, - "rotation": 0.14390822260280767, - "action": "CARVE_LEFT" - }, - { - "x": 158.01969778903216, - "y": -332.2765437953914, - "rotation": 0.105662015343084, - "action": "CARVE_LEFT" - }, - { - "x": 158.14430711244145, - "y": -335.1552833433044, - "rotation": 0.06725663858682811, - "action": "CARVE_LEFT" - }, - { - "x": 158.197691210191, - "y": -338.1133016121489, - "rotation": 0.02868582824760211, - "action": "CARVE_LEFT" - }, - { - "x": 158.1788914651094, - "y": -341.1168915960828, - "rotation": 6.273128612708205, - "action": "CARVE_LEFT" - }, - { - "x": 158.08694715155443, - "y": -344.06575420304, - "rotation": 6.234211547025883, - "action": "CARVE_LEFT" - }, - { - "x": 157.9209464880012, - "y": -346.9584940713291, - "rotation": 6.195127024758277, - "action": "CARVE_LEFT" - }, - { - "x": 157.68002731955772, - "y": -349.7937608584931, - "rotation": 6.155882145533152, - "action": "CARVE_LEFT" - }, - { - "x": 157.3633777635816, - "y": -352.570249936227, - "rotation": 6.116484020976126, - "action": "CARVE_LEFT" - }, - { - "x": 156.97023681806863, - "y": -355.286703050755, - "rotation": 6.076939773459493, - "action": "CARVE_LEFT" - }, - { - "x": 156.49989493251127, - "y": -357.9419089483711, - "rotation": 6.037256534851947, - "action": "CARVE_LEFT" - }, - { - "x": 155.95169454095253, - "y": -360.53470396587215, - "rotation": 5.997441445269425, - "action": "CARVE_LEFT" - }, - { - "x": 155.32503055698788, - "y": -363.0639725856382, - "rotation": 5.957501651827279, - "action": "CARVE_LEFT" - }, - { - "x": 154.6193508304949, - "y": -365.52864795513983, - "rotation": 5.917444307393981, - "action": "CARVE_LEFT" - }, - { - "x": 153.83415656589852, - "y": -367.9277123706775, - "rotation": 5.877276569346587, - "action": "CARVE_LEFT" - }, - { - "x": 152.9690027018061, - "y": -370.26019772518436, - "rotation": 5.8370055983281555, - "action": "CARVE_LEFT" - }, - { - "x": 152.02349825187514, - "y": -372.525185919948, - "rotation": 5.796638557007343, - "action": "CARVE_LEFT" - }, - { - "x": 150.997306606803, - "y": -374.72180924013355, - "rotation": 5.756182608840375, - "action": "CARVE_LEFT" - }, - { - "x": 149.89014579735542, - "y": -376.84925069401453, - "rotation": 5.71564491683561, - "action": "CARVE_LEFT" - }, - { - "x": 148.70178871837874, - "y": -378.90674431584426, - "rotation": 5.6750326423208906, - "action": "CARVE_LEFT" - }, - { - "x": 147.43206331376666, - "y": -380.8935754323257, - "rotation": 5.634352943713905, - "action": "CARVE_LEFT" - }, - { - "x": 146.08085272238097, - "y": -382.8090808926621, - "rotation": 5.59361297529575, - "action": "CARVE_LEFT" - }, - { - "x": 144.6480953849513, - "y": -384.65264926219743, - "rotation": 5.552819885987905, - "action": "CARVE_LEFT" - }, - { - "x": 143.13378511200713, - "y": -386.42372097967854, - "rotation": 5.511980818132819, - "action": "CARVE_LEFT" - }, - { - "x": 141.53797111292107, - "y": -388.12178847819797, - "rotation": 5.471102906278315, - "action": "CARVE_LEFT" - }, - { - "x": 139.86075798616957, - "y": -389.7463962698995, - "rotation": 5.430193275966011, - "action": "CARVE_LEFT" - }, - { - "x": 138.10230567094345, - "y": -391.29714099455373, - "rotation": 5.389259042523957, - "action": "NOTHING" - }, - { - "x": 136.15481229099035, - "y": -392.6749497782536, - "rotation": 5.392749701027945, - "action": "NOTHING" - }, - { - "x": 134.21364588884535, - "y": -394.0607609987661, - "rotation": 5.396240359531934, - "action": "NOTHING" - }, - { - "x": 132.27879127534752, - "y": -395.45460254164715, - "rotation": 5.399731018035922, - "action": "NOTHING" - }, - { - "x": 130.35023361920963, - "y": -396.8565025315281, - "rotation": 5.403221676539911, - "action": "NOTHING" - }, - { - "x": 128.42795844600985, - "y": -398.2664893313851, - "rotation": 5.406712335043899, - "action": "NOTHING" - }, - { - "x": 126.51195163718603, - "y": -399.6845915418106, - "rotation": 5.4102029935478875, - "action": "NOTHING" - }, - { - "x": 124.60219942903284, - "y": -401.11083800028683, - "rotation": 5.413693652051876, - "action": "NOTHING" - }, - { - "x": 122.69868841170153, - "y": -402.54525778046127, - "rotation": 5.417184310555864, - "action": "NOTHING" - }, - { - "x": 120.80140552820234, - "y": -403.98788019142444, - "rotation": 5.420674969059853, - "action": "NOTHING" - }, - { - "x": 118.91033807340969, - "y": -405.4387347769894, - "rotation": 5.424165627563841, - "action": "NOTHING" - }, - { - "x": 117.02547369306991, - "y": -406.89785131497337, - "rotation": 5.42765628606783, - "action": "NOTHING" - }, - { - "x": 115.14680038281173, - "y": -408.3652598164815, - "rotation": 5.431146944571818, - "action": "NOTHING" - }, - { - "x": 113.2743064871594, - "y": -409.84099052519264, - "rotation": 5.434637603075807, - "action": "NOTHING" - }, - { - "x": 111.40798069854837, - "y": -411.3250739166468, - "rotation": 5.438128261579795, - "action": "NOTHING" - }, - { - "x": 109.54781205634383, - "y": -412.81754069753515, - "rotation": 5.4416189200837835, - "action": "NOTHING" - }, - { - "x": 107.69378994586164, - "y": -414.3184218049917, - "rotation": 5.445109578587772, - "action": "NOTHING" - }, - { - "x": 105.84590409739204, - "y": -415.8277484058869, - "rotation": 5.44860023709176, - "action": "NOTHING" - }, - { - "x": 104.00414458522593, - "y": -417.3455518961234, - "rotation": 5.452090895595749, - "action": "NOTHING" - }, - { - "x": 102.16850182668377, - "y": -418.87186389993394, - "rotation": 5.455581554099737, - "action": "NOTHING" - }, - { - "x": 100.33896658114708, - "y": -420.40671626918066, - "rotation": 5.459072212603726, - "action": "NOTHING" - }, - { - "x": 98.51552994909258, - "y": -421.9501410826572, - "rotation": 5.462562871107714, - "action": "NOTHING" - }, - { - "x": 96.69818337112888, - "y": -423.502170645392, - "rotation": 5.4660535296117025, - "action": "NOTHING" - }, - { - "x": 94.88691862703575, - "y": -425.0628374879542, - "rotation": 5.469544188115691, - "action": "NOTHING" - }, - { - "x": 93.08172783480606, - "y": -426.6321743657608, - "rotation": 5.473034846619679, - "action": "NOTHING" - }, - { - "x": 91.28260344969014, - "y": -428.2102142583866, - "rotation": 5.476525505123668, - "action": "NOTHING" - }, - { - "x": 89.48953826324286, - "y": -429.7969903688754, - "rotation": 5.480016163627656, - "action": "NOTHING" - }, - { - "x": 87.70252540237321, - "y": -431.3925361230535, - "rotation": 5.483506822131645, - "action": "NOTHING" - }, - { - "x": 85.92155832839637, - "y": -432.996885168845, - "rotation": 5.486997480635633, - "action": "NOTHING" - }, - { - "x": 84.14663083608845, - "y": -434.61007137558914, - "rotation": 5.490488139139622, - "action": "NOTHING" - }, - { - "x": 82.37773705274367, - "y": -436.2321288333596, - "rotation": 5.49397879764361, - "action": "NOTHING" - }, - { - "x": 80.61487143723414, - "y": -437.8630918522853, - "rotation": 5.4974694561475985, - "action": "CARVE_RIGHT" - }, - { - "x": 79.11171558068966, - "y": -439.7377054853673, - "rotation": 5.539507217934487, - "action": "CARVE_RIGHT" - }, - { - "x": 77.69198994289158, - "y": -441.69330349405885, - "rotation": 5.581585927251886, - "action": "CARVE_RIGHT" - }, - { - "x": 76.35575996351187, - "y": -443.730501449481, - "rotation": 5.6237127409040575, - "action": "CARVE_RIGHT" - }, - { - "x": 75.10314955825488, - "y": -445.84996858496294, - "rotation": 5.665894808234926, - "action": "CARVE_RIGHT" - }, - { - "x": 73.93434121610568, - "y": -448.0524279826446, - "rotation": 5.708139272375772, - "action": "CARVE_RIGHT" - }, - { - "x": 72.84957613607438, - "y": -450.33865679637034, - "rotation": 5.750453271489104, - "action": "CARVE_RIGHT" - }, - { - "x": 71.84915440340433, - "y": -452.709486510862, - "rotation": 5.792843940008942, - "action": "CARVE_RIGHT" - }, - { - "x": 70.93343520523905, - "y": -455.16580323718284, - "rotation": 5.8353184098777255, - "action": "CARVE_RIGHT" - }, - { - "x": 70.10283708576976, - "y": -457.7085480445304, - "rotation": 5.877883811780075, - "action": "CARVE_RIGHT" - }, - { - "x": 69.35783824091239, - "y": -460.33871732842005, - "rotation": 5.920547276373622, - "action": "CARVE_RIGHT" - }, - { - "x": 68.6989768525897, - "y": -463.05736321534636, - "rotation": 5.963315935517126, - "action": "CARVE_RIGHT" - }, - { - "x": 68.12685146272116, - "y": -465.86559400403377, - "rotation": 6.006196923496096, - "action": "CARVE_RIGHT" - }, - { - "x": 67.64212138704968, - "y": -468.7645746434134, - "rotation": 6.049197378246134, - "action": "CARVE_RIGHT" - }, - { - "x": 67.24550716896111, - "y": -471.7555272474868, - "rotation": 6.09232444257422, - "action": "CARVE_RIGHT" - }, - { - "x": 66.93779107347946, - "y": -474.8397316472621, - "rotation": 6.135585265378136, - "action": "CARVE_RIGHT" - }, - { - "x": 66.71981762164705, - "y": -478.01852597997424, - "rotation": 6.178987002864275, - "action": "CARVE_RIGHT" - }, - { - "x": 66.59249416552599, - "y": -481.29330731582286, - "rotation": 6.222536819764015, - "action": "CARVE_RIGHT" - }, - { - "x": 66.55679150408393, - "y": -484.6655323224892, - "rotation": 6.266241890548888, - "action": "CARVE_RIGHT" - }, - { - "x": 66.61373254642167, - "y": -488.0305405903859, - "rotation": 0.026924093465174437, - "action": "CARVE_RIGHT" - }, - { - "x": 66.76430645468533, - "y": -491.32068419308, - "rotation": 0.0709519666112188, - "action": "CARVE_RIGHT" - }, - { - "x": 67.00943862240837, - "y": -494.5344896062408, - "rotation": 0.11513226743057153, - "action": "CARVE_RIGHT" - }, - { - "x": 67.34999001650138, - "y": -497.6705423849085, - "rotation": 0.1594570517527658, - "action": "CARVE_RIGHT" - }, - { - "x": 67.78675656641202, - "y": -500.72748783665645, - "rotation": 0.20391836800123986, - "action": "CARVE_RIGHT" - }, - { - "x": 68.3204686007201, - "y": -503.70403165067563, - "rotation": 0.24850825857906866, - "action": "CARVE_RIGHT" - }, - { - "x": 68.95179033139857, - "y": -506.59894048254995, - "rotation": 0.29321876125268365, - "action": "CARVE_RIGHT" - }, - { - "x": 69.68131938593761, - "y": -509.4110424945213, - "rotation": 0.338041910533347, - "action": "CARVE_RIGHT" - }, - { - "x": 70.50958638749476, - "y": -512.1392278510758, - "rotation": 0.38296973905614706, - "action": "CARVE_RIGHT" - }, - { - "x": 71.43705458320028, - "y": -514.782449169713, - "rotation": 0.42799427895628334, - "action": "CARVE_RIGHT" - }, - { - "x": 72.46411952071301, - "y": -517.3397219267932, - "rotation": 0.47310756324240955, - "action": "CARVE_RIGHT" - }, - { - "x": 73.5911087730884, - "y": -519.8101248183871, - "rotation": 0.5183016271668051, - "action": "CARVE_RIGHT" - }, - { - "x": 74.8182817119864, - "y": -522.1928000760837, - "rotation": 0.5635685095921452, - "action": "CARVE_RIGHT" - }, - { - "x": 76.14582932921364, - "y": -524.4869537377468, - "rotation": 0.6089002543546438, - "action": "CARVE_RIGHT" - }, - { - "x": 77.5738741065607, - "y": -526.6918558732351, - "rotation": 0.6542889116233387, - "action": "CARVE_RIGHT" - }, - { - "x": 79.10246993386211, - "y": -528.8068407651385, - "rotation": 0.6997265392552978, - "action": "CARVE_RIGHT" - }, - { - "x": 80.73160207517375, - "y": -530.8313070446097, - "rotation": 0.7452052041465187, - "action": "CARVE_RIGHT" - }, - { - "x": 82.46118718292922, - "y": -532.7647177824016, - "rotation": 0.7907169835782997, - "action": "CARVE_RIGHT" - }, - { - "x": 84.29107335990437, - "y": -534.606600535252, - "rotation": 0.8362539665588605, - "action": "CARVE_RIGHT" - }, - { - "x": 86.22104026878677, - "y": -536.3565473477875, - "rotation": 0.8818082551599917, - "action": "CARVE_RIGHT" - }, - { - "x": 88.25079928911457, - "y": -538.0142147101457, - "rotation": 0.9273719658485133, - "action": "CARVE_RIGHT" - }, - { - "x": 90.37999372131782, - "y": -539.5793234715488, - "rotation": 0.9729372308123256, - "action": "NOTHING" - }, - { - "x": 92.73745012080633, - "y": -540.9333375263674, - "rotation": 0.969446572308337, - "action": "NOTHING" - }, - { - "x": 95.08662070033616, - "y": -542.2953287004703, - "rotation": 0.9659559138043483, - "action": "NOTHING" - }, - { - "x": 97.4275344327896, - "y": -543.6653161626414, - "rotation": 0.9624652553003596, - "action": "NOTHING" - }, - { - "x": 99.76021989316222, - "y": -545.0433193488874, - "rotation": 0.958974596796371, - "action": "NOTHING" - }, - { - "x": 102.08470525968049, - "y": -546.4293579616267, - "rotation": 0.9554839382923823, - "action": "NOTHING" - }, - { - "x": 104.40101831491651, - "y": -547.8234519688788, - "rotation": 0.9519932797883937, - "action": "NOTHING" - }, - { - "x": 106.70918644689968, - "y": -549.2256216034566, - "rotation": 0.948502621284405, - "action": "NOTHING" - }, - { - "x": 109.00923665022542, - "y": -550.6358873621613, - "rotation": 0.9450119627804163, - "action": "NOTHING" - }, - { - "x": 111.3011955271609, - "y": -552.0542700049789, - "rotation": 0.9415213042764277, - "action": "NOTHING" - }, - { - "x": 113.5850892887479, - "y": -553.4807905542795, - "rotation": 0.938030645772439, - "action": "NOTHING" - }, - { - "x": 115.86094375590255, - "y": -554.9154702940184, - "rotation": 0.9345399872684503, - "action": "NOTHING" - }, - { - "x": 118.12878436051231, - "y": -556.3583307689399, - "rotation": 0.9310493287644617, - "action": "NOTHING" - }, - { - "x": 120.38863614652989, - "y": -557.8093937837831, - "rotation": 0.927558670260473, - "action": "NOTHING" - }, - { - "x": 122.64052377106424, - "y": -559.2686814024896, - "rotation": 0.9240680117564843, - "action": "NOTHING" - }, - { - "x": 124.88447150546868, - "y": -560.7362159474143, - "rotation": 0.9205773532524957, - "action": "NOTHING" - }, - { - "x": 127.12050323642612, - "y": -562.2120199985374, - "rotation": 0.917086694748507, - "action": "NOTHING" - }, - { - "x": 129.34864246703125, - "y": -563.6961163926794, - "rotation": 0.9135960362445184, - "action": "NOTHING" - }, - { "x": 131.56891231787, "y": -565.188528222718, "rotation": 0.9101053777405297, "action": "NOTHING" }, - { - "x": 133.78133552809598, - "y": -566.689278836807, - "rotation": 0.906614719236541, - "action": "NOTHING" - }, - { - "x": 135.98593445650408, - "y": -568.1983918375979, - "rotation": 0.9031240607325524, - "action": "NOTHING" - }, - { - "x": 138.1827310826012, - "y": -569.7158910814632, - "rotation": 0.8996334022285637, - "action": "NOTHING" - }, - { - "x": 140.37174700767412, - "y": -571.241800677722, - "rotation": 0.896142743724575, - "action": "NOTHING" - }, - { - "x": 142.55300345585445, - "y": -572.7761449878683, - "rotation": 0.8926520852205864, - "action": "NOTHING" - }, - { - "x": 144.72652127518077, - "y": -574.3189486248006, - "rotation": 0.8891614267165977, - "action": "NOTHING" - }, - { - "x": 146.89232093865795, - "y": -575.8702364520541, - "rotation": 0.885670768212609, - "action": "CARVE_LEFT" - }, - { - "x": 148.7413517758895, - "y": -577.7160760902492, - "rotation": 0.839853218097731, - "action": "CARVE_LEFT" - }, - { - "x": 150.49038735314085, - "y": -579.6563612805174, - "rotation": 0.7940195994810764, - "action": "CARVE_LEFT" - }, - { - "x": 152.1395515177141, - "y": -581.6915863334859, - "rotation": 0.7481620541456986, - "action": "CARVE_LEFT" - }, - { - "x": 153.6888984597504, - "y": -583.8223091421455, - "rotation": 0.7022727370420154, - "action": "CARVE_LEFT" - }, - { - "x": 155.13841275999178, - "y": -586.0491512443625, - "rotation": 0.6563438149077494, - "action": "CARVE_LEFT" - }, - { - "x": 156.48800939004073, - "y": -588.3727979290009, - "rotation": 0.6103674648929335, - "action": "CARVE_LEFT" - }, - { - "x": 157.7375336652735, - "y": -590.7939983855276, - "rotation": 0.5643358731897357, - "action": "CARVE_LEFT" - }, - { - "x": 158.8867611505314, - "y": -593.3135658970072, - "rotation": 0.5182412336668548, - "action": "CARVE_LEFT" - }, - { - "x": 159.93539751868025, - "y": -595.9323780764192, - "rotation": 0.4720757465082432, - "action": "CARVE_LEFT" - }, - { - "x": 160.88307836209634, - "y": -598.651377146265, - "rotation": 0.42583161685591087, - "action": "CARVE_LEFT" - }, - { - "x": 161.72936895710467, - "y": -601.471570261457, - "rotation": 0.3795010534565706, - "action": "CARVE_LEFT" - }, - { - "x": 162.47376398136234, - "y": -604.3940298755175, - "rotation": 0.33307626731188034, - "action": "CARVE_LEFT" - }, - { - "x": 163.11568718414878, - "y": -607.4198941501395, - "rotation": 0.28654947033204387, - "action": "CARVE_LEFT" - }, - { - "x": 163.6544910094913, - "y": -610.5503674081951, - "rotation": 0.23991287399252975, - "action": "CARVE_LEFT" - }, - { - "x": 164.08945617202346, - "y": -613.7867206303051, - "rotation": 0.19315868799367078, - "action": "CARVE_LEFT" - }, - { - "x": 164.4197911854412, - "y": -617.1302919951119, - "rotation": 0.14627911892290663, - "action": "CARVE_LEFT" - }, - { - "x": 164.64463184338976, - "y": -620.58248746343, - "rotation": 0.09926636891943327, - "action": "CARVE_LEFT" - }, - { - "x": 164.7630406525831, - "y": -624.1447814064752, - "rotation": 0.05211263434102432, - "action": "CARVE_LEFT" - }, - { - "x": 164.7740062179249, - "y": -627.8187172784042, - "rotation": 0.004810104432789453, - "action": "CARVE_LEFT" - }, - { - "x": 164.67647267436703, - "y": -631.4241224431021, - "rotation": 6.240536267177223, - "action": "CARVE_LEFT" - }, - { - "x": 164.46945066934998, - "y": -634.9391121721993, - "rotation": 6.192927369472682, - "action": "CARVE_LEFT" - }, - { - "x": 164.1520259690546, - "y": -638.3621774626971, - "rotation": 6.145177247266106, - "action": "CARVE_LEFT" - }, - { - "x": 163.72336008070627, - "y": -641.6918791257349, - "rotation": 6.0972944348835565, - "action": "CARVE_LEFT" - }, - { - "x": 163.1826908199394, - "y": -644.9268484267741, - "rotation": 6.0492874707277755, - "action": "CARVE_LEFT" - }, - { - "x": 162.52933282301828, - "y": -648.0657876745049, - "rotation": 6.001164895798714, - "action": "CARVE_LEFT" - }, - { - "x": 161.76267800374885, - "y": -651.1074707583042, - "rotation": 5.952935252216865, - "action": "CARVE_LEFT" - }, - { - "x": 160.8821959549555, - "y": -654.0507436341074, - "rotation": 5.904607081749661, - "action": "CARVE_LEFT" - }, - { - "x": 159.88743429443508, - "y": -656.8945247585963, - "rotation": 5.856188924341162, - "action": "CARVE_LEFT" - }, - { - "x": 158.77801895533972, - "y": -659.637805471636, - "rotation": 5.807689316645305, - "action": "CARVE_LEFT" - }, - { - "x": 157.5536544209785, - "y": -662.2796503269361, - "rotation": 5.759116790562937, - "action": "CARVE_LEFT" - }, - { - "x": 156.2141239040663, - "y": -664.8191973709403, - "rotation": 5.710479871782887, - "action": "CARVE_LEFT" - }, - { - "x": 154.75928947048666, - "y": -667.2556583699903, - "rotation": 5.661787078327326, - "action": "CARVE_LEFT" - }, - { - "x": 153.18909210767362, - "y": -669.5883189858409, - "rotation": 5.613046919101635, - "action": "CARVE_LEFT" - }, - { - "x": 151.50355173775503, - "y": -671.8165388996407, - "rotation": 5.56426789244904, - "action": "CARVE_LEFT" - }, - { - "x": 149.7027671756381, - "y": -673.9397518845261, - "rotation": 5.51545848471025, - "action": "NOTHING" - }, - { - "x": 147.70970891439768, - "y": -675.8873772481963, - "rotation": 5.518949143214239, - "action": "NOTHING" - }, - { - "x": 145.72445425964497, - "y": -677.8447130458933, - "rotation": 5.522439801718227, - "action": "NOTHING" - }, - { - "x": 143.74699368801188, - "y": -679.8117916596307, - "rotation": 5.525930460222216, - "action": "NOTHING" - }, - { - "x": 141.77731801974414, - "y": -681.7886456989435, - "rotation": 5.529421118726204, - "action": "NOTHING" - }, - { - "x": 139.81541841772818, - "y": -683.775308000186, - "rotation": 5.532911777230193, - "action": "NOTHING" - }, - { - "x": 137.8612863865208, - "y": -685.7718116258324, - "rotation": 5.536402435734181, - "action": "NOTHING" - }, - { - "x": 135.91491377138135, - "y": -687.7781898637794, - "rotation": 5.5398930942381694, - "action": "NOTHING" - }, - { - "x": 133.97629275730662, - "y": -689.7944762266504, - "rotation": 5.543383752742158, - "action": "NOTHING" - }, - { - "x": 132.04541586806823, - "y": -691.8207044511021, - "rotation": 5.546874411246146, - "action": "NOTHING" - }, - { - "x": 130.12227596525258, - "y": -693.8569084971324, - "rotation": 5.550365069750135, - "action": "NOTHING" - }, - { - "x": 128.20686624730354, - "y": -695.9031225473914, - "rotation": 5.553855728254123, - "action": "NOTHING" - }, - { - "x": 126.29918024856758, - "y": -697.959381006493, - "rotation": 5.557346386758112, - "action": "NOTHING" - }, - { - "x": 124.39921183834157, - "y": -700.0257185003296, - "rotation": 5.5608370452621, - "action": "NOTHING" - }, - { - "x": 122.50695521992304, - "y": -702.1021698753881, - "rotation": 5.5643277037660885, - "action": "NOTHING" - }, - { - "x": 120.62240492966306, - "y": -704.1887701980676, - "rotation": 5.567818362270077, - "action": "NOTHING" - }, - { "x": 118.74555583602167, "y": -706.285554754, "rotation": 5.571309020774065, "action": "NOTHING" }, - { - "x": 116.87640313862582, - "y": -708.392559047372, - "rotation": 5.574799679278054, - "action": "NOTHING" - }, - { - "x": 115.01494236732994, - "y": -710.509818800248, - "rotation": 5.578290337782042, - "action": "NOTHING" - }, - { - "x": 113.16116938127888, - "y": -712.6373699518972, - "rotation": 5.581780996286031, - "action": "NOTHING" - }, - { - "x": 111.31508036797354, - "y": -714.7752486581205, - "rotation": 5.585271654790019, - "action": "NOTHING" - }, - { - "x": 109.4766718423389, - "y": -716.9234912905802, - "rotation": 5.588762313294008, - "action": "NOTHING" - }, - { - "x": 107.64594064579467, - "y": -719.0821344361317, - "rotation": 5.592252971797996, - "action": "NOTHING" - }, - { - "x": 105.82288394532827, - "y": -721.2512148961569, - "rotation": 5.5957436303019845, - "action": "NOTHING" - }, - { - "x": 104.00749923257054, - "y": -723.4307696858991, - "rotation": 5.599234288805973, - "action": "NOTHING" - }, - { - "x": 102.19978432287373, - "y": -725.620836033801, - "rotation": 5.602724947309961, - "action": "NOTHING" - }, - { - "x": 100.39973735439212, - "y": -727.8214513808427, - "rotation": 5.60621560581395, - "action": "NOTHING" - }, - { - "x": 98.60735678716505, - "y": -730.0326533798838, - "rotation": 5.609706264317938, - "action": "NOTHING" - }, - { - "x": 96.82264140220242, - "y": -732.254479895005, - "rotation": 5.613196922821927, - "action": "NOTHING" - }, - { - "x": 95.04559030057273, - "y": -734.4869690008541, - "rotation": 5.616687581325915, - "action": "NOTHING" - }, - { - "x": 93.27620290249342, - "y": -736.7301589819913, - "rotation": 5.620178239829904, - "action": "NOTHING" - }, - { - "x": 91.51447894642386, - "y": -738.9840883322383, - "rotation": 5.623668898333892, - "action": "NOTHING" - }, - { - "x": 89.76041848816067, - "y": -741.2487957540286, - "rotation": 5.6271595568378805, - "action": "NOTHING" - }, - { - "x": 88.01402189993544, - "y": -743.5243201577592, - "rotation": 5.630650215341869, - "action": "NOTHING" - }, - { - "x": 86.27528986951505, - "y": -745.8107006611448, - "rotation": 5.634140873845857, - "action": "NOTHING" - }, - { - "x": 84.54422339930422, - "y": -748.1079765885734, - "rotation": 5.637631532349846, - "action": "NOTHING" - }, - { - "x": 82.82082380545062, - "y": -750.4161874704641, - "rotation": 5.641122190853834, - "action": "NOTHING" - }, - { - "x": 81.10509271695236, - "y": -752.7353730426265, - "rotation": 5.644612849357823, - "action": "NOTHING" - }, - { - "x": 79.39703207476785, - "y": -755.0655732456217, - "rotation": 5.648103507861811, - "action": "NOTHING" - }, - { - "x": 77.69664413092809, - "y": -757.4068282241258, - "rotation": 5.6515941663658, - "action": "CARVE_RIGHT" - }, - { - "x": 76.28710954777996, - "y": -760.0213079727247, - "rotation": 5.702036814725114, - "action": "CARVE_RIGHT" - }, - { - "x": 74.9985376502326, - "y": -762.7523727383262, - "rotation": 5.752529911072816, - "action": "CARVE_RIGHT" - }, - { - "x": 73.83116052977527, - "y": -765.6009031710779, - "rotation": 5.803082040456593, - "action": "CARVE_RIGHT" - }, - { - "x": 72.78529436369861, - "y": -768.5678572175699, - "rotation": 5.853701779203824, - "action": "CARVE_RIGHT" - }, - { - "x": 71.8613395855562, - "y": -771.6542703944641, - "rotation": 5.904397696417806, - "action": "CARVE_RIGHT" - }, - { - "x": 71.05978111240688, - "y": -774.8612561143666, - "rotation": 5.955178355469433, - "action": "CARVE_RIGHT" - }, - { - "x": 70.38118862880118, - "y": -778.1900060639299, - "rotation": 6.006052315484608, - "action": "CARVE_RIGHT" - }, - { - "x": 69.82621692751438, - "y": -781.6417906342083, - "rotation": 6.05702813282766, - "action": "CARVE_RIGHT" - }, - { - "x": 69.39560630706755, - "y": -785.217959403325, - "rotation": 6.108114362581009, - "action": "CARVE_RIGHT" - }, - { - "x": 69.09018302611666, - "y": -788.9199416715454, - "rotation": 6.159319560021366, - "action": "CARVE_RIGHT" - }, - { - "x": 68.9108598148284, - "y": -792.7492470488858, - "rotation": 6.210652282092712, - "action": "CARVE_RIGHT" - }, - { - "x": 68.85863644339997, - "y": -796.7074660954252, - "rotation": 6.262121088876326, - "action": "CARVE_RIGHT" - }, - { - "x": 68.93458490687809, - "y": -800.6547945880704, - "rotation": 0.03054923787853525, - "action": "CARVE_RIGHT" - }, - { - "x": 69.13973202782252, - "y": -804.4928555196217, - "rotation": 0.08230539169868645, - "action": "CARVE_RIGHT" - }, - { - "x": 69.47501547994656, - "y": -808.2200641666892, - "rotation": 0.1341950156625646, - "action": "CARVE_RIGHT" - }, - { - "x": 69.94128318540358, - "y": -811.834918824529, - "rotation": 0.1862088795895041, - "action": "CARVE_RIGHT" - }, - { - "x": 70.53929277669857, - "y": -815.336001428872, - "rotation": 0.23833775220835443, - "action": "CARVE_RIGHT" - }, - { - "x": 71.26971112337063, - "y": -818.7219781175014, - "rotation": 0.290572402749709, - "action": "CARVE_RIGHT" - }, - { - "x": 72.13311392354613, - "y": -821.991599731466, - "rotation": 0.3429036025345451, - "action": "CARVE_RIGHT" - }, - { - "x": 73.12998536041795, - "y": -825.1437022558562, - "rotation": 0.3953221265590085, - "action": "CARVE_RIGHT" - }, - { - "x": 74.26071782366024, - "y": -828.1772072001149, - "rotation": 0.44781875507507896, - "action": "CARVE_RIGHT" - }, - { - "x": 75.5256116957439, - "y": -831.0911219178944, - "rotation": 0.5003842751668527, - "action": "CARVE_RIGHT" - }, - { - "x": 76.92487520307274, - "y": -833.8845398665128, - "rotation": 0.5530094823221807, - "action": "CARVE_RIGHT" - }, - { - "x": 78.45862433181611, - "y": -836.5566408061068, - "rotation": 0.605685181999402, - "action": "CARVE_RIGHT" - }, - { - "x": 80.12688280826947, - "y": -839.1066909386141, - "rotation": 0.658402191188913, - "action": "CARVE_RIGHT" - }, - { - "x": 81.9295821435305, - "y": -841.5340429867647, - "rotation": 0.7111513399693149, - "action": "CARVE_RIGHT" - }, - { - "x": 83.8665617422347, - "y": -843.8381362132966, - "rotation": 0.7639234730578847, - "action": "CARVE_RIGHT" - }, - { - "x": 85.93756907505134, - "y": -846.0184963806545, - "rotation": 0.8167094513551123, - "action": "CARVE_RIGHT" - }, - { - "x": 88.14225991459769, - "y": -848.0747356514681, - "rotation": 0.8695001534830542, - "action": "CARVE_RIGHT" - }, - { - "x": 90.48019863438692, - "y": -850.0065524301468, - "rotation": 0.9222864773172498, - "action": "CARVE_RIGHT" - }, - { - "x": 92.95085857038359, - "y": -851.8137311459662, - "rotation": 0.9750593415119515, - "action": "CARVE_RIGHT" - }, - { - "x": 95.55362244469835, - "y": -853.4961419780609, - "rotation": 1.0278096870184217, - "action": "CARVE_RIGHT" - }, - { - "x": 98.28778285091325, - "y": -855.0537405227756, - "rotation": 1.0805284785960483, - "action": "CARVE_RIGHT" - }, - { - "x": 101.15254280048798, - "y": -856.4865674038643, - "rotation": 1.1332067063160363, - "action": "CARVE_RIGHT" - }, - { - "x": 104.1470163296578, - "y": -857.7947478260659, - "rotation": 1.1858353870574319, - "action": "CARVE_RIGHT" - }, - { - "x": 107.27022916619431, - "y": -858.9784910726166, - "rotation": 1.2384055659952382, - "action": "CARVE_RIGHT" - }, - { - "x": 110.52111945536159, - "y": -860.0380899473038, - "rotation": 1.2909083180803838, - "action": "CARVE_RIGHT" - }, - { - "x": 113.89853854436194, - "y": -860.973920161691, - "rotation": 1.3433347495113075, - "action": "CARVE_RIGHT" - }, - { - "x": 117.40125182452823, - "y": -861.7864396681892, - "rotation": 1.3956759991969245, - "action": "NOTHING" - }, - { - "x": 121.27716648516045, - "y": -862.2468674943182, - "rotation": 1.3921853406929359, - "action": "NOTHING" - }, - { - "x": 125.13718181299397, - "y": -862.715543121615, - "rotation": 1.3886946821889472, - "action": "NOTHING" - }, - { - "x": 128.98138689181278, - "y": -863.1924449741285, - "rotation": 1.3852040236849585, - "action": "NOTHING" - }, - { - "x": 132.80987023955643, - "y": -863.6775518658375, - "rotation": 1.3817133651809699, - "action": "NOTHING" - }, - { - "x": 136.62271980988584, - "y": -864.1708429994959, - "rotation": 1.3782227066769812, - "action": "NOTHING" - }, - { - "x": 140.42002299374488, - "y": -864.6722979654812, - "rotation": 1.3747320481729925, - "action": "NOTHING" - }, - { - "x": 144.2018666209178, - "y": -865.1818967406456, - "rotation": 1.3712413896690039, - "action": "NOTHING" - }, - { - "x": 147.9683369615826, - "y": -865.6996196871706, - "rotation": 1.3677507311650152, - "action": "NOTHING" - }, - { - "x": 151.7195197278602, - "y": -866.2254475514251, - "rotation": 1.3642600726610266, - "action": "NOTHING" - }, - { - "x": 155.45550007535957, - "y": -866.7593614628256, - "rotation": 1.360769414157038, - "action": "NOTHING" - }, - { - "x": 159.17636260471878, - "y": -867.3013429327013, - "rotation": 1.3572787556530492, - "action": "NOTHING" - }, - { - "x": 162.8821913631418, - "y": -867.8513738531605, - "rotation": 1.3537880971490606, - "action": "CARVE_LEFT" - }, - { - "x": 166.0863479054436, - "y": -868.8600439703157, - "rotation": 1.3024995321084147, - "action": "CARVE_LEFT" - }, - { - "x": 169.16051378146932, - "y": -869.983901285927, - "rotation": 1.251286612775131, - "action": "CARVE_LEFT" - }, - { - "x": 172.10569676408954, - "y": -871.2227078360602, - "rotation": 1.200140352725879, - "action": "CARVE_LEFT" - }, - { - "x": 174.9228144773207, - "y": -872.5763068271451, - "rotation": 1.1490517967876699, - "action": "CARVE_LEFT" - }, - { - "x": 177.61269508463062, - "y": -874.0446221230433, - "rotation": 1.0980120194268257, - "action": "CARVE_LEFT" - }, - { - "x": 180.17607791396426, - "y": -875.6276577900588, - "rotation": 1.0470121231465972, - "action": "CARVE_LEFT" - }, - { - "x": 182.61361402013725, - "y": -877.3254976993172, - "rotation": 0.9960432368931366, - "action": "CARVE_LEFT" - }, - { - "x": 184.9258666851977, - "y": -879.1383051859772, - "rotation": 0.9450965144695302, - "action": "CARVE_LEFT" - }, - { - "x": 187.11331185731322, - "y": -881.0663227647829, - "rotation": 0.8941631329576019, - "action": "CARVE_LEFT" - }, - { - "x": 189.17633852869503, - "y": -883.1098719015051, - "rotation": 0.8432342911471963, - "action": "CARVE_LEFT" - }, - { - "x": 191.1152490530268, - "y": -885.2693528398603, - "rotation": 0.7923012079726585, - "action": "CARVE_LEFT" - }, - { - "x": 192.93025940282334, - "y": -887.5452444835352, - "rotation": 0.7413551209562206, - "action": "CARVE_LEFT" - }, - { - "x": 194.62149936710065, - "y": -889.9381043329868, - "rotation": 0.6903872846580152, - "action": "CARVE_LEFT" - }, - { - "x": 196.18901268969643, - "y": -892.4485684767249, - "rotation": 0.6393889691324333, - "action": "CARVE_LEFT" - }, - { - "x": 197.63275714853862, - "y": -895.0773516368226, - "rotation": 0.5883514583905455, - "action": "CARVE_LEFT" - }, - { - "x": 198.95260457611735, - "y": -897.8252472684412, - "rotation": 0.5372660488683111, - "action": "CARVE_LEFT" - }, - { - "x": 200.1483408213744, - "y": -900.693127713191, - "rotation": 0.48612404790029573, - "action": "CARVE_LEFT" - }, - { - "x": 201.21966565318337, - "y": -903.6819444061899, - "rotation": 0.43491677219862457, - "action": "CARVE_LEFT" - }, - { - "x": 202.16619260555322, - "y": -906.7927281367187, - "rotation": 0.3836355463368964, - "action": "CARVE_LEFT" - }, - { - "x": 202.9874487646469, - "y": -910.0265893624065, - "rotation": 0.33227170123878713, - "action": "CARVE_LEFT" - }, - { - "x": 203.682874497667, - "y": -913.3847185769228, - "rotation": 0.28081657267107213, - "action": "CARVE_LEFT" - }, - { - "x": 204.25182312362008, - "y": -916.8683867311825, - "rotation": 0.22926149974079785, - "action": "CARVE_LEFT" - }, - { - "x": 204.69356052593156, - "y": -920.4789457081141, - "rotation": 0.17759782339633504, - "action": "CARVE_LEFT" - }, - { - "x": 205.00726470684324, - "y": -924.2178288510718, - "rotation": 0.1258168849320467, - "action": "CARVE_LEFT" - }, - { - "x": 205.1920252834862, - "y": -928.0865515460121, - "rotation": 0.0739100244963054, - "action": "CARVE_LEFT" - }, - { - "x": 205.24684292548181, - "y": -932.0867118575932, - "rotation": 0.021868579602595493, - "action": "CARVE_LEFT" - }, - { - "x": 205.1706439401631, - "y": -936.0780573141868, - "rotation": 6.252869190823024, - "action": "CARVE_LEFT" - }, - { - "x": 204.96239946871222, - "y": -939.9573974055315, - "rotation": 6.200543013804313, - "action": "CARVE_LEFT" - }, - { - "x": 204.62117181928207, - "y": -943.7231400124131, - "rotation": 6.148084678714868, - "action": "CARVE_LEFT" - }, - { - "x": 204.1461150643909, - "y": -947.3737779330172, - "rotation": 6.095503510793487, - "action": "CARVE_LEFT" - }, - { - "x": 203.53647557231056, - "y": -950.9078894997434, - "rotation": 6.042808835917987, - "action": "CARVE_LEFT" - }, - { - "x": 202.79159247231314, - "y": -954.3241391344875, - "rotation": 5.990009978997673, - "action": "CARVE_LEFT" - }, - { - "x": 201.9108980536865, - "y": -957.6212778422921, - "rotation": 5.937116262369513, - "action": "CARVE_LEFT" - }, - { - "x": 200.893918098476, - "y": -960.7981436433028, - "rotation": 5.884137004198284, - "action": "CARVE_LEFT" - }, - { - "x": 199.7402721479551, - "y": -963.8536619430128, - "rotation": 5.831081516880955, - "action": "CARVE_LEFT" - }, - { - "x": 198.4496737028739, - "y": -966.7868458408207, - "rotation": 5.777959105455574, - "action": "CARVE_LEFT" - }, - { - "x": 197.02193035757966, - "y": -969.5967963769682, - "rotation": 5.724779066014924, - "action": "CARVE_LEFT" - }, - { - "x": 195.4569438681493, - "y": -972.2827027179667, - "rotation": 5.67155068412521, - "action": "CARVE_LEFT" - }, - { - "x": 193.7547101547181, - "y": -974.8438422806638, - "rotation": 5.6182832332500325, - "action": "CARVE_LEFT" - }, - { - "x": 191.9153192382348, - "y": -977.2795807951426, - "rotation": 5.5649859731799225, - "action": "CARVE_LEFT" - }, - { - "x": 189.93895511191585, - "y": -979.5893723066858, - "rotation": 5.511668148467676, - "action": "CARVE_LEFT" - }, - { - "x": 187.82589554771764, - "y": -981.7727591170814, - "rotation": 5.458338986869761, - "action": "CARVE_LEFT" - }, - { - "x": 185.57651183818734, - "y": -983.8293716655821, - "rotation": 5.405007697794048, - "action": "CARVE_LEFT" - }, - { - "x": 183.19126847409734, - "y": -985.7589283498768, - "rotation": 5.3516834707541046, - "action": "CARVE_LEFT" - }, - { - "x": 180.67072275831018, - "y": -987.5612352874653, - "rotation": 5.2983754738303315, - "action": "CARVE_LEFT" - }, - { - "x": 178.01552435636398, - "y": -989.2361860178733, - "rotation": 5.245092852138167, - "action": "CARVE_LEFT" - }, - { - "x": 175.22641478430896, - "y": -990.7837611461784, - "rotation": 5.191844726303613, - "action": "CARVE_LEFT" - }, - { - "x": 172.30422683436782, - "y": -992.2040279283593, - "rotation": 5.1386401909463455, - "action": "NOTHING" - }, - { - "x": 169.06986775750582, - "y": -993.3319154043827, - "rotation": 5.142130849450334, - "action": "NOTHING" - }, - { - "x": 165.8479668775418, - "y": -994.4680602784811, - "rotation": 5.145621507954322, - "action": "NOTHING" - }, - { - "x": 162.63846644970653, - "y": -995.6124629614749, - "rotation": 5.149112166458311, - "action": "NOTHING" - }, - { - "x": 159.44130920929237, - "y": -996.7651241901541, - "rotation": 5.152602824962299, - "action": "NOTHING" - }, - { - "x": 156.25643837031348, - "y": -997.9260450262983, - "rotation": 5.156093483466288, - "action": "NOTHING" - }, - { - "x": 153.08379762416922, - "y": -999.0952268556993, - "rotation": 5.159584141970276, - "action": "NOTHING" - }, - { - "x": 149.92333113831145, - "y": -1000.2726713871867, - "rotation": 5.163074800474265, - "action": "NOTHING" - }, - { - "x": 146.77498355491517, - "y": -1001.4583806516565, - "rotation": 5.166565458978253, - "action": "NOTHING" - }, - { - "x": 143.63869998955275, - "y": -1002.6523570011014, - "rotation": 5.1700561174822415, - "action": "NOTHING" - }, - { - "x": 140.51442602987177, - "y": -1003.8546031076451, - "rotation": 5.17354677598623, - "action": "NOTHING" - }, - { - "x": 137.40210773427626, - "y": -1005.0651219625777, - "rotation": 5.177037434490218, - "action": "NOTHING" - }, - { - "x": 134.30169163061157, - "y": -1006.2839168753958, - "rotation": 5.180528092994207, - "action": "NOTHING" - }, - { - "x": 131.21312471485274, - "y": -1007.5109914728436, - "rotation": 5.184018751498195, - "action": "NOTHING" - }, - { - "x": 128.13635444979624, - "y": -1008.7463496979574, - "rotation": 5.187509410002184, - "action": "NOTHING" - }, - { - "x": 125.07132876375536, - "y": -1009.9899958091127, - "rotation": 5.191000068506172, - "action": "NOTHING" - }, - { - "x": 122.01799604925903, - "y": -1011.2419343790737, - "rotation": 5.194490727010161, - "action": "NOTHING" - }, - { - "x": 118.97630516175403, - "y": -1012.5021702940461, - "rotation": 5.197981385514149, - "action": "NOTHING" - }, - { - "x": 115.94620541831081, - "y": -1013.7707087527319, - "rotation": 5.2014720440181375, - "action": "NOTHING" - }, - { - "x": 112.92764659633265, - "y": -1015.047555265387, - "rotation": 5.204962702522126, - "action": "NOTHING" - }, - { - "x": 109.92057893226827, - "y": -1016.3327156528815, - "rotation": 5.208453361026114, - "action": "NOTHING" - }, - { - "x": 106.92495312032797, - "y": -1017.6261960457625, - "rotation": 5.211944019530103, - "action": "NOTHING" - }, - { - "x": 103.9407203112031, - "y": -1018.9280028833202, - "rotation": 5.215434678034091, - "action": "NOTHING" - }, - { - "x": 100.96783211078895, - "y": -1020.2381429126556, - "rotation": 5.21892533653808, - "action": "NOTHING" - }, - { - "x": 98.00624057891116, - "y": -1021.5566231877509, - "rotation": 5.222415995042068, - "action": "NOTHING" - }, - { - "x": 95.0558982280554, - "y": -1022.8834510685439, - "rotation": 5.2259066535460565, - "action": "NOTHING" - }, - { - "x": 92.1167580221005, - "y": -1024.218634220003, - "rotation": 5.229397312050045, - "action": "NOTHING" - }, - { - "x": 89.18877337505498, - "y": -1025.562180611206, - "rotation": 5.232887970554033, - "action": "NOTHING" - }, - { - "x": 86.27189814979691, - "y": -1026.9140985144218, - "rotation": 5.236378629058022, - "action": "NOTHING" - }, - { "x": 83.3660866568172, "y": -1028.274396504193, "rotation": 5.23986928756201, "action": "NOTHING" }, - { - "x": 80.47129365296615, - "y": -1029.643083456423, - "rotation": 5.243359946065999, - "action": "NOTHING" - }, - { - "x": 77.58747434020347, - "y": -1031.0201685474647, - "rotation": 5.246850604569987, - "action": "CARVE_RIGHT" - }, - { - "x": 75.12368622320345, - "y": -1032.7844096369608, - "rotation": 5.298988548102859, - "action": "CARVE_RIGHT" - }, - { - "x": 72.79097281545815, - "y": -1034.668955028039, - "rotation": 5.351103796106596, - "action": "CARVE_RIGHT" - }, - { - "x": 70.58885091156554, - "y": -1036.6740561896502, - "rotation": 5.403205373915186, - "action": "CARVE_RIGHT" - }, - { - "x": 68.51692826300614, - "y": -1038.8000472101485, - "rotation": 5.45530228465257, - "action": "CARVE_RIGHT" - }, - { - "x": 66.57490324848705, - "y": -1041.0473446156607, - "rotation": 5.5074035108320425, - "action": "CARVE_RIGHT" - }, - { - "x": 64.76256460713319, - "y": -1043.4164472461218, - "rotation": 5.559518015948584, - "action": "CARVE_RIGHT" - }, - { - "x": 63.07979123412661, - "y": -1045.90793618863, - "rotation": 5.611654746064415, - "action": "CARVE_RIGHT" - }, - { - "x": 61.526552038439256, - "y": -1048.522474767813, - "rotation": 5.663822631388056, - "action": "CARVE_RIGHT" - }, - { - "x": 60.102905862348514, - "y": -1051.2608085929419, - "rotation": 5.7160305878471895, - "action": "CARVE_RIGHT" - }, - { - "x": 58.80900146246858, - "y": -1054.123765661565, - "rotation": 5.768287518655596, - "action": "CARVE_RIGHT" - }, - { - "x": 57.6450775520738, - "y": -1057.1122565194798, - "rotation": 5.820602315874457, - "action": "CARVE_RIGHT" - }, - { - "x": 56.611462904533184, - "y": -1060.2272744768943, - "rotation": 5.872983861968303, - "action": "CARVE_RIGHT" - }, - { - "x": 55.70857651771779, - "y": -1063.4698958806719, - "rotation": 5.925441031355879, - "action": "CARVE_RIGHT" - }, - { - "x": 54.93692783928516, - "y": -1066.8412804425936, - "rotation": 5.977982691956224, - "action": "CARVE_RIGHT" - }, - { - "x": 54.2971170527869, - "y": -1070.3426716236086, - "rotation": 6.030617706730216, - "action": "CARVE_RIGHT" - }, - { - "x": 53.78983542458758, - "y": -1073.9753970740826, - "rotation": 6.083354935217885, - "action": "CARVE_RIGHT" - }, - { - "x": 53.41586571162466, - "y": -1077.7408691300939, - "rotation": 6.136203235071745, - "action": "CARVE_RIGHT" - }, - { - "x": 53.1760826300809, - "y": -1081.6405853658637, - "rotation": 6.189171463586432, - "action": "CARVE_RIGHT" - }, - { - "x": 53.071453385081895, - "y": -1085.6761292024462, - "rotation": 6.242268479224914, - "action": "CARVE_RIGHT" - }, - { - "x": 53.10303575116313, - "y": -1089.7903530306025, - "rotation": 0.012317835961958679, - "action": "CARVE_RIGHT" - }, - { - "x": 53.27189308718337, - "y": -1093.7877765038509, - "rotation": 0.06569477071248139, - "action": "CARVE_RIGHT" - }, - { - "x": 53.57899385724119, - "y": -1097.6667648507644, - "rotation": 0.11920447060674294, - "action": "CARVE_RIGHT" - }, - { - "x": 54.02521102161135, - "y": -1101.4257717052512, - "rotation": 0.1728374280020009, - "action": "CARVE_RIGHT" - }, - { - "x": 54.61132149632935, - "y": -1105.0633397341046, - "rotation": 0.22658413494464608, - "action": "CARVE_RIGHT" - }, - { - "x": 55.33800568155526, - "y": -1108.5781012005698, - "rotation": 0.2804350848083675, - "action": "CARVE_RIGHT" - }, - { - "x": 56.205847058799954, - "y": -1111.9687784638325, - "rotation": 0.3343807739284844, - "action": "CARVE_RIGHT" - }, - { - "x": 57.215331857048994, - "y": -1115.2341844143714, - "rotation": 0.3884117032321732, - "action": "CARVE_RIGHT" - }, - { - "x": 58.366844968400315, - "y": -1118.3732264012745, - "rotation": 0.44251691004399746, - "action": "CARVE_RIGHT" - }, - { - "x": 59.66050505431704, - "y": -1121.3850599032692, - "rotation": 0.4966221168558217, - "action": "CARVE_RIGHT" - }, - { - "x": 61.09635753885158, - "y": -1124.2689098277292, - "rotation": 0.5507273236676459, - "action": "CARVE_RIGHT" - }, - { - "x": 62.67437482376021, - "y": -1127.024070307939, - "rotation": 0.60483253047947, - "action": "CARVE_RIGHT" - }, - { - "x": 64.39445650302568, - "y": -1129.6499045009132, - "rotation": 0.6589377372912942, - "action": "CARVE_RIGHT" - }, - { - "x": 66.25642957678929, - "y": -1132.1458443857719, - "rotation": 0.7130429441031184, - "action": "CARVE_RIGHT" - }, - { - "x": 68.26004866469408, - "y": -1134.5113905626679, - "rotation": 0.7671481509149426, - "action": "CARVE_RIGHT" - }, - { - "x": 70.40499621864069, - "y": -1136.7461120522664, - "rotation": 0.8212533577267668, - "action": "CARVE_RIGHT" - }, - { - "x": 72.69088273495733, - "y": -1138.8496460957742, - "rotation": 0.875358564538591, - "action": "NOTHING" - }, - { - "x": 75.22066424429556, - "y": -1140.7274112163427, - "rotation": 0.8718679060346023, - "action": "NOTHING" - }, - { - "x": 77.74038085295919, - "y": -1142.6146019988535, - "rotation": 0.8683772475306136, - "action": "NOTHING" - }, - { - "x": 80.25005966202176, - "y": -1144.511239782506, - "rotation": 0.864886589026625, - "action": "NOTHING" - }, - { - "x": 82.74972737774092, - "y": -1146.4173461699174, - "rotation": 0.8613959305226363, - "action": "NOTHING" - }, - { - "x": 85.23941031267171, - "y": -1148.3329430263173, - "rotation": 0.8579052720186476, - "action": "NOTHING" - }, - { - "x": 87.71913438677666, - "y": -1150.2580524787434, - "rotation": 0.854414613514659, - "action": "NOTHING" - }, - { - "x": 90.18892512853319, - "y": -1152.1926969152405, - "rotation": 0.8509239550106703, - "action": "NOTHING" - }, - { - "x": 92.6488076760378, - "y": -1154.136898984061, - "rotation": 0.8474332965066816, - "action": "NOTHING" - }, - { - "x": 95.09880677810743, - "y": -1156.0906815928677, - "rotation": 0.843942638002693, - "action": "NOTHING" - }, - { - "x": 97.53894679537778, - "y": -1158.0540679079395, - "rotation": 0.8404519794987043, - "action": "NOTHING" - }, - { - "x": 99.96925170139879, - "y": -1160.027081353379, - "rotation": 0.8369613209947157, - "action": "NOTHING" - }, - { - "x": 102.38974508372704, - "y": -1162.0097456103215, - "rotation": 0.833470662490727, - "action": "NOTHING" - }, - { - "x": 104.80045014501532, - "y": -1164.0020846161478, - "rotation": 0.8299800039867383, - "action": "NOTHING" - }, - { - "x": 107.20138970409927, - "y": -1166.004122563698, - "rotation": 0.8264893454827497, - "action": "NOTHING" - }, - { - "x": 109.59258619708103, - "y": -1168.0158839004882, - "rotation": 0.822998686978761, - "action": "NOTHING" - }, - { - "x": 111.97406167841005, - "y": -1170.0373933279286, - "rotation": 0.8195080284747723, - "action": "CARVE_LEFT" - }, - { - "x": 113.97624788110403, - "y": -1172.4108653754122, - "rotation": 0.7654028216629482, - "action": "CARVE_LEFT" - }, - { - "x": 115.8375585000364, - "y": -1174.9162682636374, - "rotation": 0.711297614851124, - "action": "CARVE_LEFT" - }, - { - "x": 117.55818655460803, - "y": -1177.5541433252024, - "rotation": 0.6571924080392998, - "action": "CARVE_LEFT" - }, - { - "x": 119.13825215079667, - "y": -1180.3250978210144, - "rotation": 0.6030872012274756, - "action": "CARVE_LEFT" - }, - { - "x": 120.57780269448604, - "y": -1183.2298047462486, - "rotation": 0.5489819944156514, - "action": "CARVE_LEFT" - }, - { - "x": 121.87681310420925, - "y": -1186.2690026368402, - "rotation": 0.4948767876038272, - "action": "CARVE_LEFT" - }, - { - "x": 123.03518602330807, - "y": -1189.4434953765106, - "rotation": 0.44077158079200296, - "action": "CARVE_LEFT" - }, - { - "x": 124.05275203150948, - "y": -1192.7541520043255, - "rotation": 0.3866663739801787, - "action": "CARVE_LEFT" - }, - { - "x": 124.92926985592105, - "y": -1196.2019065227832, - "rotation": 0.3325611671683545, - "action": "CARVE_LEFT" - }, - { - "x": 125.66442658144682, - "y": -1199.787757706432, - "rotation": 0.27845596035653025, - "action": "CARVE_LEFT" - }, - { - "x": 126.25783786062507, - "y": -1203.5127689110154, - "rotation": 0.22435075354470604, - "action": "CARVE_LEFT" - }, - { - "x": 126.70904812288958, - "y": -1207.378067883143, - "rotation": 0.17024554673288184, - "action": "CARVE_LEFT" - }, - { - "x": 127.01753078325581, - "y": -1211.384846570487, - "rotation": 0.11614033992105763, - "action": "CARVE_LEFT" - }, - { - "x": 127.18268845043362, - "y": -1215.534360932502, - "rotation": 0.06203513310923341, - "action": "CARVE_LEFT" - }, - { - "x": 127.20385313436805, - "y": -1219.8279307516668, - "rotation": 0.007929926297409198, - "action": "CARVE_LEFT" - }, - { - "x": 127.0803217304728, - "y": -1224.0369102859927, - "rotation": 6.237010026665171, - "action": "CARVE_LEFT" - }, - { - "x": 126.81145794420219, - "y": -1228.1207707552187, - "rotation": 6.182904819853347, - "action": "CARVE_LEFT" - }, - { - "x": 126.39670022835709, - "y": -1232.078248089399, - "rotation": 6.128799613041522, - "action": "CARVE_LEFT" - }, - { - "x": 125.83556156383206, - "y": -1235.9081488631432, - "rotation": 6.074694406229698, - "action": "CARVE_LEFT" - }, - { - "x": 125.12762924096522, - "y": -1239.609350089561, - "rotation": 6.0205891994178735, - "action": "CARVE_LEFT" - }, - { - "x": 124.27256464148961, - "y": -1243.1807990147722, - "rotation": 5.966483992606049, - "action": "CARVE_LEFT" - }, - { - "x": 123.27010302108422, - "y": -1246.6215129129787, - "rotation": 5.912378785794225, - "action": "CARVE_LEFT" - }, - { - "x": 122.12005329252324, - "y": -1249.930578882099, - "rotation": 5.8582735789824, - "action": "CARVE_LEFT" - }, - { - "x": 120.82229780942183, - "y": -1253.1071536399638, - "rotation": 5.804168372170576, - "action": "CARVE_LEFT" - }, - { - "x": 119.37679215057702, - "y": -1256.1504633210684, - "rotation": 5.7500631653587515, - "action": "CARVE_LEFT" - }, - { - "x": 117.78356490490198, - "y": -1259.059803273884, - "rotation": 5.695957958546927, - "action": "CARVE_LEFT" - }, - { - "x": 116.0427174569522, - "y": -1261.8345378587242, - "rotation": 5.641852751735103, - "action": "CARVE_LEFT" - }, - { - "x": 114.15442377304194, - "y": -1264.4741002461665, - "rotation": 5.587747544923278, - "action": "CARVE_LEFT" - }, - { - "x": 112.11893018794949, - "y": -1266.9779922160258, - "rotation": 5.533642338111454, - "action": "CARVE_LEFT" - }, - { - "x": 109.93655519220961, - "y": -1269.3457839568803, - "rotation": 5.4795371312996295, - "action": "CARVE_LEFT" - }, - { - "x": 107.60768921999164, - "y": -1271.5771138661466, - "rotation": 5.425431924487805, - "action": "CARVE_LEFT" - }, - { - "x": 105.13279443756166, - "y": -1273.6716883507042, - "rotation": 5.371326717675981, - "action": "CARVE_LEFT" - }, - { - "x": 102.51240453232725, - "y": -1275.629281628066, - "rotation": 5.317221510864156, - "action": "CARVE_LEFT" - }, - { - "x": 99.7471245024633, - "y": -1277.4497355280962, - "rotation": 5.263116304052332, - "action": "CARVE_LEFT" - }, - { - "x": 96.8376304471172, - "y": -1279.1329592952702, - "rotation": 5.2090110972405075, - "action": "CARVE_LEFT" - }, - { - "x": 93.78466935719214, - "y": -1280.6789293914796, - "rotation": 5.154905890428683, - "action": "CARVE_LEFT" - }, - { - "x": 90.58905890670665, - "y": -1282.087689299377, - "rotation": 5.100800683616859, - "action": "CARVE_LEFT" - }, - { - "x": 87.2516872447292, - "y": -1283.359349326261, - "rotation": 5.046695476805034, - "action": "CARVE_LEFT" - }, - { - "x": 83.77351278788606, - "y": -1284.4940864085006, - "rotation": 4.99259026999321, - "action": "CARVE_LEFT" - }, - { - "x": 80.15556401344118, - "y": -1285.4921439164953, - "rotation": 4.9384850631813855, - "action": "CARVE_LEFT" - }, - { - "x": 76.39893925294622, - "y": -1286.3538314601724, - "rotation": 4.884379856369561, - "action": "CARVE_LEFT" - }, - { - "x": 72.50480648645961, - "y": -1287.0795246950172, - "rotation": 4.830274649557737, - "action": "CARVE_LEFT" - }, - { - "x": 68.47440313733284, - "y": -1287.6696651286375, - "rotation": 4.776169442745912, - "action": "NOTHING" - }, - { - "x": 64.01544956006374, - "y": -1287.8543907542476, - "rotation": 4.779660101249901, - "action": "NOTHING" - }, - { - "x": 59.57565936242436, - "y": -1288.048316815231, - "rotation": 4.783150759753889, - "action": "NOTHING" - }, - { - "x": 55.15492417871915, - "y": -1288.2514084352033, - "rotation": 4.786641418257878, - "action": "NOTHING" - }, - { - "x": 50.753136262420774, - "y": -1288.463631167068, - "rotation": 4.790132076761866, - "action": "NOTHING" - }, - { - "x": 46.37018848446308, - "y": -1288.6849509917506, - "rotation": 4.7936227352658545, - "action": "NOTHING" - }, - { - "x": 42.005974331538546, - "y": -1288.9153343169407, - "rotation": 4.797113393769843, - "action": "NOTHING" - }, - { - "x": 37.66038790440027, - "y": -1289.1547479758337, - "rotation": 4.800604052273831, - "action": "NOTHING" - }, - { - "x": 33.33332391616839, - "y": -1289.4031592258775, - "rotation": 4.80409471077782, - "action": "NOTHING" - }, - { - "x": 29.024677690641067, - "y": -1289.6605357475232, - "rotation": 4.807585369281808, - "action": "NOTHING" - }, - { - "x": 24.734345160609855, - "y": -1289.9268456429786, - "rotation": 4.811076027785797, - "action": "CARVE_RIGHT" - }, - { - "x": 21.021966749389552, - "y": -1290.7203154749739, - "rotation": 4.865181234597621, - "action": "CARVE_RIGHT" - }, - { - "x": 17.45734938222794, - "y": -1291.6433592178607, - "rotation": 4.9192864414094455, - "action": "CARVE_RIGHT" - }, - { - "x": 14.03940897399099, - "y": -1292.6957123545565, - "rotation": 4.97339164822127, - "action": "CARVE_RIGHT" - }, - { - "x": 10.767136955087867, - "y": -1293.8771786633936, - "rotation": 5.027496855033094, - "action": "CARVE_RIGHT" - }, - { - "x": 7.6396000510051705, - "y": -1295.187630017563, - "rotation": 5.081602061844919, - "action": "CARVE_RIGHT" - }, - { - "x": 4.655940062445767, - "y": -1296.6270061851087, - "rotation": 5.135707268656743, - "action": "CARVE_RIGHT" - }, - { - "x": 1.815373646070555, - "y": -1298.195314629474, - "rotation": 5.1898124754685675, - "action": "CARVE_RIGHT" - }, - { - "x": -0.8828591547140054, - "y": -1299.892582591591, - "rotation": 5.243897876342904, - "action": "CARVE_RIGHT" - }, - { - "x": -3.43948676605328, - "y": -1301.7188644117234, - "rotation": 5.29794680944404, - "action": "CARVE_RIGHT" - }, - { - "x": -5.855138858875121, - "y": -1303.6743039047503, - "rotation": 5.351968663428446, - "action": "CARVE_RIGHT" - }, - { - "x": -8.130346861223037, - "y": -1305.7591340152862, - "rotation": 5.4059728016339195, - "action": "CARVE_RIGHT" - }, - { - "x": -10.265544401884716, - "y": -1307.9736765358152, - "rotation": 5.459968563747865, - "action": "CARVE_RIGHT" - }, - { - "x": -12.26106768585948, - "y": -1310.31834188736, - "rotation": 5.513965267467826, - "action": "CARVE_RIGHT" - }, - { - "x": -14.117155802159218, - "y": -1312.7936289622503, - "rotation": 5.567972210154577, - "action": "CARVE_RIGHT" - }, - { - "x": -15.83395096438893, - "y": -1315.4001250286021, - "rotation": 5.621998670478075, - "action": "CARVE_RIGHT" - }, - { - "x": -17.411498684505148, - "y": -1318.1385056961608, - "rotation": 5.676053910056576, - "action": "CARVE_RIGHT" - }, - { - "x": -18.849747880103006, - "y": -1321.009534943207, - "rotation": 5.7301471750892015, - "action": "CARVE_RIGHT" - }, - { - "x": -20.148642709742887, - "y": -1324.0139797374895, - "rotation": 5.784252381901026, - "action": "CARVE_RIGHT" - }, - { - "x": -21.30808608693664, - "y": -1327.152643663039, - "rotation": 5.83835758871285, - "action": "CARVE_RIGHT" - }, - { - "x": -22.327908862641664, - "y": -1330.4263954583573, - "rotation": 5.892462795524675, - "action": "CARVE_RIGHT" - }, - { - "x": -23.207870036250362, - "y": -1333.8361688245116, - "rotation": 5.946568002336499, - "action": "CARVE_RIGHT" - }, - { - "x": -23.947656966000032, - "y": -1337.3829622337562, - "rotation": 6.0006732091483235, - "action": "CARVE_RIGHT" - }, - { - "x": -24.546885578804716, - "y": -1341.067838738684, - "rotation": 6.054778415960148, - "action": "CARVE_RIGHT" - }, - { - "x": -25.005100579510522, - "y": -1344.891925781902, - "rotation": 6.108883622771972, - "action": "CARVE_RIGHT" - }, - { - "x": -25.321775659575966, - "y": -1348.8564150062339, - "rotation": 6.162988829583797, - "action": "CARVE_RIGHT" - }, - { - "x": -25.49631370517881, - "y": -1352.9625620654435, - "rotation": 6.217094036395621, - "action": "CARVE_RIGHT" - }, - { - "x": -25.528047004750967, - "y": -1357.211686435483, - "rotation": 6.2711992432074455, - "action": "CARVE_RIGHT" - }, - { - "x": -25.416266807750386, - "y": -1361.3970175009213, - "rotation": 0.042119142839683654, - "action": "CARVE_RIGHT" - }, - { - "x": -25.160326228130334, - "y": -1365.4584448770604, - "rotation": 0.09622434965150786, - "action": "CARVE_RIGHT" - }, - { - "x": -24.759653160081324, - "y": -1369.3946944310437, - "rotation": 0.15032955646333207, - "action": "CARVE_RIGHT" - }, - { - "x": -24.213750058684703, - "y": -1373.2045627055675, - "rotation": 0.20443476327515628, - "action": "CARVE_RIGHT" - }, - { - "x": -23.522193721169387, - "y": -1376.8869167127389, - "rotation": 0.2585399700869805, - "action": "CARVE_RIGHT" - }, - { - "x": -22.68463506877022, - "y": -1380.4406937284973, - "rotation": 0.3126451768988047, - "action": "CARVE_RIGHT" - }, - { - "x": -21.70079892918632, - "y": -1383.8649010876002, - "rotation": 0.36675038371062896, - "action": "CARVE_RIGHT" - }, - { - "x": -20.570483819637865, - "y": -1387.1586159791702, - "rotation": 0.4208555905224532, - "action": "CARVE_RIGHT" - }, - { - "x": -19.293561730519713, - "y": -1390.3209852428035, - "rotation": 0.47496079733427743, - "action": "CARVE_RIGHT" - }, - { - "x": -17.869977909650284, - "y": -1393.3512251652364, - "rotation": 0.5290660041461016, - "action": "CARVE_RIGHT" - }, - { - "x": -16.299750647114156, - "y": -1396.2486212775705, - "rotation": 0.5831712109579258, - "action": "CARVE_RIGHT" - }, - { - "x": -14.582971060696755, - "y": -1399.0125281530522, - "rotation": 0.63727641776975, - "action": "CARVE_RIGHT" - }, - { - "x": -12.719802881909645, - "y": -1401.6423692054095, - "rotation": 0.6913816245815742, - "action": "CARVE_RIGHT" - }, - { - "x": -10.710482242604797, - "y": -1404.1376364877387, - "rotation": 0.7454868313933983, - "action": "CARVE_RIGHT" - }, - { - "x": -8.555317462176307, - "y": -1406.4978904919462, - "rotation": 0.7995920382052225, - "action": "NOTHING" - }, - { - "x": -6.170720028125235, - "y": -1408.646481053161, - "rotation": 0.7961013797012338, - "action": "NOTHING" - }, - { - "x": -3.7961319067644737, - "y": -1410.8051586591753, - "rotation": 0.7926107211972452, - "action": "NOTHING" - }, - { - "x": -1.4315326884323363, - "y": -1412.9739492766628, - "rotation": 0.7891200626932565, - "action": "NOTHING" - }, - { - "x": 0.9230976601936685, - "y": -1415.1528791220578, - "rotation": 0.7856294041892679, - "action": "NOTHING" - }, - { - "x": 3.267778797161151, - "y": -1417.3419746607865, - "rotation": 0.7821387456852792, - "action": "NOTHING" - }, - { - "x": 5.602530006304288, - "y": -1419.5412626065006, - "rotation": 0.7786480871812905, - "action": "NOTHING" - }, - { - "x": 7.927370198302414, - "y": -1421.750769920314, - "rotation": 0.7751574286773019, - "action": "NOTHING" - }, - { - "x": 10.242317911735773, - "y": -1423.9705238100405, - "rotation": 0.7716667701733132, - "action": "NOTHING" - }, - { - "x": 12.547391314138423, - "y": -1426.2005517294342, - "rotation": 0.7681761116693245, - "action": "NOTHING" - }, - { - "x": 14.842608203048314, - "y": -1428.440881377432, - "rotation": 0.7646854531653359, - "action": "NOTHING" - }, - { - "x": 17.127986007054545, - "y": -1430.6915406973983, - "rotation": 0.7611947946613472, - "action": "NOTHING" - }, - { - "x": 19.403541786841785, - "y": -1432.9525578763712, - "rotation": 0.7577041361573585, - "action": "CARVE_LEFT" - }, - { - "x": 21.30585991270589, - "y": -1435.5604494216514, - "rotation": 0.7035989293455344, - "action": "CARVE_LEFT" - }, - { - "x": 23.062699564254917, - "y": -1438.3050477126242, - "rotation": 0.6494937225337102, - "action": "CARVE_LEFT" - }, - { - "x": 24.67419139123472, - "y": -1441.1869507008357, - "rotation": 0.595388515721886, - "action": "CARVE_LEFT" - }, - { - "x": 26.140393304954863, - "y": -1444.2068221066045, - "rotation": 0.5412833089100618, - "action": "CARVE_LEFT" - }, - { - "x": 27.461290691149706, - "y": -1447.365391225407, - "rotation": 0.4871781020982376, - "action": "CARVE_LEFT" - }, - { - "x": 28.636796622254966, - "y": -1450.6634527347974, - "rotation": 0.43307289528641335, - "action": "CARVE_LEFT" - }, - { - "x": 29.66675206910129, - "y": -1454.1018665018596, - "rotation": 0.3789676884745891, - "action": "CARVE_LEFT" - }, - { - "x": 30.550926112026353, - "y": -1457.6815573911895, - "rotation": 0.3248624816627649, - "action": "CARVE_LEFT" - }, - { - "x": 31.28901615140707, - "y": -1461.4035150734067, - "rotation": 0.27075727485094064, - "action": "CARVE_LEFT" - }, - { - "x": 31.88064811761337, - "y": -1465.2687938341944, - "rotation": 0.21665206803911644, - "action": "CARVE_LEFT" - }, - { - "x": 32.32537668038515, - "y": -1469.2785123838662, - "rotation": 0.16254686122729223, - "action": "CARVE_LEFT" - }, - { - "x": 32.62268545763384, - "y": -1473.4338536674568, - "rotation": 0.10844165441546802, - "action": "CARVE_LEFT" - }, - { - "x": 32.771987223670216, - "y": -1477.736064675338, - "rotation": 0.054336447603643805, - "action": "CARVE_LEFT" - }, - { - "x": 32.772624116859774, - "y": -1482.1864562543565, - "rotation": 0.00023124079181958967, - "action": "CARVE_LEFT" - }, - { - "x": 32.62391586798363, - "y": -1486.5095323255373, - "rotation": 6.2293113411595815, - "action": "CARVE_LEFT" - }, - { - "x": 32.32525686904158, - "y": -1490.7028078428477, - "rotation": 6.175206134347757, - "action": "CARVE_LEFT" - }, - { - "x": 31.8761161620226, - "y": -1494.7650479511535, - "rotation": 6.121100927535933, - "action": "CARVE_LEFT" - }, - { - "x": 31.276037219931684, - "y": -1498.6950883480276, - "rotation": 6.066995720724108, - "action": "CARVE_LEFT" - }, - { - "x": 30.5246377284189, - "y": -1502.4918350779583, - "rotation": 6.012890513912284, - "action": "CARVE_LEFT" - }, - { - "x": 29.621609368009025, - "y": -1506.1542643271205, - "rotation": 5.9587853071004595, - "action": "NOTHING" - }, - { - "x": 28.62753787530462, - "y": -1509.739207291278, - "rotation": 5.962275965604448, - "action": "NOTHING" - }, - { - "x": 27.64278552327543, - "y": -1513.3396236792198, - "rotation": 5.965766624108436, - "action": "NOTHING" - }, - { - "x": 26.667378343527137, - "y": -1516.9555692028537, - "rotation": 5.969257282612425, - "action": "NOTHING" - }, - { - "x": 25.70134261008956, - "y": -1520.5870997290149, - "rotation": 5.972747941116413, - "action": "NOTHING" - }, - { - "x": 24.7447048387168, - "y": -1524.2342712789723, - "rotation": 5.976238599620402, - "action": "NOTHING" - }, - { - "x": 23.79749178618928, - "y": -1527.8971400279333, - "rotation": 5.97972925812439, - "action": "NOTHING" - }, - { - "x": 22.8597304496177, - "y": -1531.5757623045533, - "rotation": 5.983219916628379, - "action": "NOTHING" - }, - { - "x": 21.931448065748885, - "y": -1535.2701945904432, - "rotation": 5.986710575132367, - "action": "NOTHING" - }, - { - "x": 21.01267211027351, - "y": -1538.9804935196817, - "rotation": 5.9902012336363555, - "action": "NOTHING" - }, - { - "x": 20.103430297135727, - "y": -1542.706715878326, - "rotation": 5.993691892140344, - "action": "NOTHING" - }, - { - "x": 19.20375057784467, - "y": -1546.448918603926, - "rotation": 5.997182550644332, - "action": "NOTHING" - }, - { - "x": 18.31366114078782, - "y": -1550.2071587850392, - "rotation": 6.000673209148321, - "action": "NOTHING" - }, - { - "x": 17.43319041054627, - "y": -1553.9814936607468, - "rotation": 6.004163867652309, - "action": "NOTHING" - }, - { - "x": 16.562367047211843, - "y": -1557.7719806201717, - "rotation": 6.007654526156298, - "action": "NOTHING" - }, - { - "x": 15.701219945706052, - "y": -1561.578677201997, - "rotation": 6.011145184660286, - "action": "NOTHING" - }, - { - "x": 14.84977823510095, - "y": -1565.4016410939864, - "rotation": 6.014635843164275, - "action": "NOTHING" - }, - { - "x": 14.008071277941813, - "y": -1569.2409301325074, - "rotation": 6.018126501668263, - "action": "NOTHING" - }, - { - "x": 13.176128669571668, - "y": -1573.0966023020526, - "rotation": 6.0216171601722515, - "action": "NOTHING" - }, - { - "x": 12.353980237457673, - "y": -1576.968715734766, - "rotation": 6.02510781867624, - "action": "NOTHING" - }, - { - "x": 11.541656040519332, - "y": -1580.8573287099678, - "rotation": 6.028598477180228, - "action": "NOTHING" - }, - { - "x": 10.73918636845853, - "y": -1584.7624996536822, - "rotation": 6.032089135684217, - "action": "NOTHING" - }, - { - "x": 9.946601741091415, - "y": -1588.6842871381666, - "rotation": 6.035579794188205, - "action": "NOTHING" - }, - { - "x": 9.163932907682089, - "y": -1592.6227498814408, - "rotation": 6.039070452692194, - "action": "NOTHING" - }, - { - "x": 8.39121084627812, - "y": -1596.5779467468192, - "rotation": 6.042561111196182, - "action": "NOTHING" - }, - { - "x": 7.628466763047873, - "y": -1600.549936742443, - "rotation": 6.0460517697001706, - "action": "NOTHING" - }, - { - "x": 6.875732091619637, - "y": -1604.5387790208147, - "rotation": 6.049542428204159, - "action": "NOTHING" - }, - { - "x": 6.133038492422572, - "y": -1608.544532878334, - "rotation": 6.053033086708147, - "action": "NOTHING" - }, - { - "x": 5.40041785202944, - "y": -1612.5672577548337, - "rotation": 6.056523745212136, - "action": "NOTHING" - }, - { - "x": 4.67790228250114, - "y": -1616.6070132331186, - "rotation": 6.060014403716124, - "action": "NOTHING" - }, - { - "x": 3.9655241207330283, - "y": -1620.6638590385048, - "rotation": 6.063505062220113, - "action": "NOTHING" - }, - { - "x": 3.2633159278030237, - "y": -1624.7378550383607, - "rotation": 6.066995720724101, - "action": "NOTHING" - }, - { - "x": 2.5713104883214952, - "y": -1628.829061241649, - "rotation": 6.07048637922809, - "action": "CARVE_RIGHT" - }, - { - "x": 2.106168873935263, - "y": -1633.1380960060187, - "rotation": 6.124591586039914, - "action": "CARVE_RIGHT" - }, - { - "x": 1.7991651206613524, - "y": -1637.6020304201468, - "rotation": 6.1786967928517385, - "action": "CARVE_RIGHT" - }, - { - "x": 1.650844791702548, - "y": -1642.222074321931, - "rotation": 6.232801999663563, - "action": "CARVE_RIGHT" - }, - { - "x": 1.6618239962367551, - "y": -1646.9790699428, - "rotation": 0.0037218992958010233, - "action": "CARVE_RIGHT" - }, - { - "x": 1.8327312183326785, - "y": -1651.5970232190527, - "rotation": 0.05782710610762524, - "action": "CARVE_RIGHT" - }, - { - "x": 2.1641202420062102, - "y": -1656.0746781682415, - "rotation": 0.11193231291944945, - "action": "CARVE_RIGHT" - }, - { - "x": 2.6564703703031176, - "y": -1660.4108494068623, - "rotation": 0.16603751973127368, - "action": "CARVE_RIGHT" - }, - { - "x": 3.3101866437793177, - "y": -1664.6044219444618, - "rotation": 0.22014272654309788, - "action": "CARVE_RIGHT" - }, - { - "x": 4.125600058380327, - "y": -1668.6543509783073, - "rotation": 0.2742479333549221, - "action": "CARVE_RIGHT" - }, - { - "x": 5.102967782721467, - "y": -1672.55966168862, - "rotation": 0.3283531401667463, - "action": "CARVE_RIGHT" - }, - { - "x": 6.242473374770421, - "y": -1676.31944903437, - "rotation": 0.38245834697857056, - "action": "CARVE_RIGHT" - }, - { - "x": 7.544226997933707, - "y": -1679.9328775496306, - "rotation": 0.4365635537903948, - "action": "CARVE_RIGHT" - }, - { - "x": 9.008265636548645, - "y": -1683.3991811404896, - "rotation": 0.49066876060221903, - "action": "CARVE_RIGHT" - }, - { - "x": 10.634553310782387, - "y": -1686.7176628825207, - "rotation": 0.5447739674140433, - "action": "CARVE_RIGHT" - }, - { - "x": 12.422981290939589, - "y": -1689.887694818807, - "rotation": 0.5988791742258674, - "action": "CARVE_RIGHT" - }, - { - "x": 14.373368311180265, - "y": -1692.90871775852, - "rotation": 0.6529843810376916, - "action": "CARVE_RIGHT" - }, - { - "x": 16.485460782649394, - "y": -1695.7802410760512, - "rotation": 0.7070895878495158, - "action": "CARVE_RIGHT" - }, - { - "x": 18.75893300601983, - "y": -1698.501842510694, - "rotation": 0.76119479466134, - "action": "CARVE_RIGHT" - }, - { - "x": 21.193387383450084, - "y": -1701.073167966875, - "rotation": 0.8153000014731642, - "action": "CARVE_RIGHT" - }, - { - "x": 23.788354629958466, - "y": -1703.4939313149348, - "rotation": 0.8694052082849884, - "action": "CARVE_RIGHT" - }, - { - "x": 26.54329398421522, - "y": -1705.7639141924537, - "rotation": 0.9235104150968125, - "action": "CARVE_RIGHT" - }, - { - "x": 29.457593418754108, - "y": -1707.8829658061234, - "rotation": 0.9776156219086367, - "action": "CARVE_RIGHT" - }, - { - "x": 32.530569849605, - "y": -1709.8510027341629, - "rotation": 1.031720828720461, - "action": "CARVE_RIGHT" - }, - { - "x": 35.76146934534905, - "y": -1711.6680087292757, - "rotation": 1.085826035532285, - "action": "NOTHING" - }, - { - "x": 39.33680425607757, - "y": -1713.162044410594, - "rotation": 1.0823353770282964, - "action": "NOTHING" - }, - { - "x": 42.89764640463148, - "y": -1714.6655062565546, - "rotation": 1.0788447185243077, - "action": "NOTHING" - }, - { - "x": 46.44405595618625, - "y": -1716.1783940100595, - "rotation": 1.075354060020319, - "action": "NOTHING" - }, - { - "x": 49.976092586763386, - "y": -1717.7007077449377, - "rotation": 1.0718634015163304, - "action": "NOTHING" - }, - { - "x": 53.49381548459873, - "y": -1719.2324478649473, - "rotation": 1.0683727430123418, - "action": "NOTHING" - }, - { - "x": 56.99728335150705, - "y": -1720.773615102779, - "rotation": 1.064882084508353, - "action": "NOTHING" - }, - { - "x": 60.486554404243066, - "y": -1722.324210519064, - "rotation": 1.0613914260043644, - "action": "NOTHING" - }, - { - "x": 63.961686375858754, - "y": -1723.884235501383, - "rotation": 1.0579007675003758, - "action": "NOTHING" - }, - { - "x": 67.42273651705709, - "y": -1725.453691763279, - "rotation": 1.054410108996387, - "action": "NOTHING" - }, - { - "x": 70.86976159754217, - "y": -1727.0325813432728, - "rotation": 1.0509194504923984, - "action": "NOTHING" - }, - { - "x": 74.30281790736566, - "y": -1728.6209066038814, - "rotation": 1.0474287919884098, - "action": "NOTHING" - }, - { - "x": 77.72196125826979, - "y": -1730.218670230638, - "rotation": 1.043938133484421, - "action": "NOTHING" - }, - { - "x": 81.12724698502657, - "y": -1731.8258752311165, - "rotation": 1.0404474749804324, - "action": "NOTHING" - }, - { - "x": 84.51872994677363, - "y": -1733.4425249339572, - "rotation": 1.0369568164764438, - "action": "NOTHING" - }, - { - "x": 87.8964645283463, - "y": -1735.0686229878959, - "rotation": 1.0334661579724551, - "action": "NOTHING" - }, - { - "x": 91.26050464160627, - "y": -1736.7041733607962, - "rotation": 1.0299754994684664, - "action": "NOTHING" - }, - { - "x": 94.61090372676667, - "y": -1738.3491803386833, - "rotation": 1.0264848409644778, - "action": "NOTHING" - }, - { - "x": 97.94771475371353, - "y": -1740.0036485247817, - "rotation": 1.0229941824604891, - "action": "NOTHING" - }, - { - "x": 101.27099022332382, - "y": -1741.6675828385546, - "rotation": 1.0195035239565005, - "action": "CARVE_LEFT" - }, - { - "x": 104.10139400309896, - "y": -1743.7848431125997, - "rotation": 0.9653983171446763, - "action": "CARVE_LEFT" - }, - { - "x": 106.77186863568123, - "y": -1746.0478792289482, - "rotation": 0.9112931103328521, - "action": "CARVE_LEFT" - }, - { - "x": 109.28295494225898, - "y": -1748.4569188353169, - "rotation": 0.8571879035210279, - "action": "CARVE_LEFT" - }, - { - "x": 111.6351197863632, - "y": -1751.012256456237, - "rotation": 0.8030826967092037, - "action": "CARVE_LEFT" - }, - { - "x": 113.82875629010792, - "y": -1753.7142532963578, - "rotation": 0.7489774898973796, - "action": "CARVE_LEFT" - }, - { - "x": 115.86418404983714, - "y": -1756.5633370442902, - "rotation": 0.6948722830855554, - "action": "CARVE_LEFT" - }, - { - "x": 117.74164935117984, - "y": -1759.5600016769924, - "rotation": 0.6407670762737312, - "action": "CARVE_LEFT" - }, - { - "x": 119.46132538351465, - "y": -1762.7048072646937, - "rotation": 0.586661869461907, - "action": "CARVE_LEFT" - }, - { - "x": 121.02331245384555, - "y": -1765.998379776356, - "rotation": 0.5325566626500828, - "action": "CARVE_LEFT" - }, - { - "x": 122.42763820009047, - "y": -1769.4414108856708, - "rotation": 0.4784514558382586, - "action": "CARVE_LEFT" - }, - { - "x": 123.6742578037841, - "y": -1773.0346577775924, - "rotation": 0.42434624902643436, - "action": "CARVE_LEFT" - }, - { - "x": 124.76305420219651, - "y": -1776.7789429554023, - "rotation": 0.3702410422146101, - "action": "CARVE_LEFT" - }, - { - "x": 125.69383829986916, - "y": -1780.6751540483067, - "rotation": 0.3161358354027859, - "action": "CARVE_LEFT" - }, - { - "x": 126.46634917956979, - "y": -1784.7242436195647, - "rotation": 0.26203062859096166, - "action": "CARVE_LEFT" - }, - { - "x": 127.0802543126678, - "y": -1788.9272289751443, - "rotation": 0.20792542177913745, - "action": "CARVE_LEFT" - }, - { - "x": 127.53514976893159, - "y": -1793.2851919729073, - "rotation": 0.15382021496731324, - "action": "CARVE_LEFT" - }, - { - "x": 127.83056042574925, - "y": -1797.7992788323195, - "rotation": 0.09971500815548903, - "action": "CARVE_LEFT" - }, - { - "x": 127.9659401767745, - "y": -1802.470699944686, - "rotation": 0.04560980134366482, - "action": "CARVE_LEFT" - }, - { - "x": 127.9406733341081, - "y": -1807.2537109784619, - "rotation": 6.274689901711427, - "action": "CARVE_LEFT" - }, - { - "x": 127.75414367760914, - "y": -1811.8962935897155, - "rotation": 6.220584694899602, - "action": "CARVE_LEFT" - }, - { - "x": 127.40580964914902, - "y": -1816.397203446607, - "rotation": 6.166479488087778, - "action": "CARVE_LEFT" - }, - { - "x": 126.89520413363682, - "y": -1820.755266780391, - "rotation": 6.112374281275954, - "action": "CARVE_LEFT" - }, - { - "x": 126.22193424064672, - "y": -1824.9693801796245, - "rotation": 6.058269074464129, - "action": "CARVE_LEFT" - }, - { - "x": 125.38568108664599, - "y": -1829.0385103849385, - "rotation": 6.004163867652305, - "action": "CARVE_LEFT" - }, - { - "x": 124.38619957782194, - "y": -1832.9616940843716, - "rotation": 5.95005866084048, - "action": "CARVE_LEFT" - }, - { - "x": 123.22331819350626, - "y": -1836.7380377092654, - "rotation": 5.895953454028656, - "action": "CARVE_LEFT" - }, - { - "x": 121.89693877019505, - "y": -1840.3667172307194, - "rotation": 5.841848247216832, - "action": "CARVE_LEFT" - }, - { - "x": 120.40703628616319, - "y": -1843.8469779566026, - "rotation": 5.787743040405007, - "action": "CARVE_LEFT" - }, - { - "x": 118.75365864667131, - "y": -1847.1781343291238, - "rotation": 5.733637833593183, - "action": "CARVE_LEFT" - }, - { - "x": 116.93692646976379, - "y": -1850.3595697229553, - "rotation": 5.679532626781358, - "action": "CARVE_LEFT" - }, - { - "x": 114.95703287265636, - "y": -1853.3907362439104, - "rotation": 5.625427419969534, - "action": "CARVE_LEFT" - }, - { - "x": 112.81424325871164, - "y": -1856.2711545281747, - "rotation": 5.57132221315771, - "action": "CARVE_LEFT" - }, - { - "x": 110.5088951050011, - "y": -1859.000413542086, - "rotation": 5.517217006345885, - "action": "CARVE_LEFT" - }, - { - "x": 108.04139775045181, - "y": -1861.5781703824646, - "rotation": 5.463111799534061, - "action": "CARVE_LEFT" - }, - { - "x": 105.41223218457662, - "y": -1864.0041500774912, - "rotation": 5.409006592722236, - "action": "CARVE_LEFT" - }, - { - "x": 102.62195083678606, - "y": -1866.2781453881316, - "rotation": 5.354901385910412, - "action": "CARVE_LEFT" - }, - { - "x": 99.67117736628043, - "y": -1868.4000166101057, - "rotation": 5.300796179098588, - "action": "CARVE_LEFT" - }, - { - "x": 96.56060645252074, - "y": -1870.3696913764002, - "rotation": 5.246690972286763, - "action": "CARVE_LEFT" - }, - { - "x": 93.29100358627663, - "y": -1872.1871644603236, - "rotation": 5.192585765474939, - "action": "CARVE_LEFT" - }, - { - "x": 89.8632048612501, - "y": -1873.8524975791017, - "rotation": 5.138480558663114, - "action": "CARVE_LEFT" - }, - { - "x": 86.2781167662733, - "y": -1875.365819198012, - "rotation": 5.08437535185129, - "action": "CARVE_LEFT" - }, - { - "x": 82.53671597807896, - "y": -1876.7273243350573, - "rotation": 5.030270145039466, - "action": "CARVE_LEFT" - }, - { - "x": 78.64004915464187, - "y": -1877.9372743661731, - "rotation": 4.976164938227641, - "action": "NOTHING" - }, - { - "x": 74.32827988606394, - "y": -1878.7558438281708, - "rotation": 4.97965559673163, - "action": "NOTHING" - }, - { - "x": 70.03428189600042, - "y": -1879.5839038492984, - "rotation": 4.983146255235618, - "action": "NOTHING" - }, - { - "x": 65.75796649686114, - "y": -1880.421434299606, - "rotation": 4.9866369137396065, - "action": "NOTHING" - }, - { - "x": 61.49924556861297, - "y": -1881.2684154382857, - "rotation": 4.990127572243595, - "action": "NOTHING" - }, - { - "x": 57.258031557204625, - "y": -1882.1248279125123, - "rotation": 4.993618230747583, - "action": "NOTHING" - }, - { - "x": 53.03423747299567, - "y": -1882.990652756289, - "rotation": 4.997108889251572, - "action": "NOTHING" - }, - { - "x": 48.82777688918965, - "y": -1883.8658713892949, - "rotation": 5.00059954775556, - "action": "NOTHING" - }, - { - "x": 44.6385639402714, - "y": -1884.750465615736, - "rotation": 5.004090206259549, - "action": "NOTHING" - }, - { - "x": 40.46651332044855, - "y": -1885.6444176231996, - "rotation": 5.007580864763537, - "action": "NOTHING" - }, - { - "x": 36.311540282097084, - "y": -1886.5477099815118, - "rotation": 5.011071523267526, - "action": "NOTHING" - }, - { - "x": 32.17356063421112, - "y": -1887.4603256415985, - "rotation": 5.014562181771514, - "action": "NOTHING" - }, - { - "x": 28.052490740856754, - "y": -1888.3822479343487, - "rotation": 5.0180528402755025, - "action": "NOTHING" - }, - { - "x": 23.94824751963002, - "y": -1889.3134605694815, - "rotation": 5.021543498779491, - "action": "CARVE_RIGHT" - }, - { - "x": 20.41750931131088, - "y": -1890.7694436262611, - "rotation": 5.075648705591315, - "action": "CARVE_RIGHT" - }, - { - "x": 17.04890702252951, - "y": -1892.3700368853695, - "rotation": 5.12975391240314, - "action": "CARVE_RIGHT" - }, - { - "x": 13.841571018396143, - "y": -1894.1151705970774, - "rotation": 5.183859119214964, - "action": "CARVE_RIGHT" - }, - { - "x": 10.79470658090682, - "y": -1896.0048427611137, - "rotation": 5.2379643260267885, - "action": "CARVE_RIGHT" - }, - { - "x": 7.9075936900737736, - "y": -1898.0391189275672, - "rotation": 5.292069532838613, - "action": "CARVE_RIGHT" - }, - { - "x": 5.179586805656304, - "y": -1900.218131998338, - "rotation": 5.346174739650437, - "action": "CARVE_RIGHT" - }, - { - "x": 2.610114649490448, - "y": -1902.5420820291354, - "rotation": 5.400279946462262, - "action": "CARVE_RIGHT" - }, - { - "x": 0.19867998841594314, - "y": -1905.0112360320188, - "rotation": 5.454385153274086, - "action": "CARVE_RIGHT" - }, - { - "x": -2.055140582201124, - "y": -1907.6259277784864, - "rotation": 5.5084903600859105, - "action": "CARVE_RIGHT" - }, - { - "x": -4.151696854351546, - "y": -1910.3865576031023, - "rotation": 5.562595566897735, - "action": "CARVE_RIGHT" - }, - { - "x": -6.091265222673661, - "y": -1913.2935922076674, - "rotation": 5.616700773709559, - "action": "CARVE_RIGHT" - }, - { - "x": -7.874048899153034, - "y": -1916.3475644659275, - "rotation": 5.670805980521384, - "action": "CARVE_RIGHT" - }, - { - "x": -9.5001781272327, - "y": -1919.5490732288213, - "rotation": 5.724911187333208, - "action": "CARVE_RIGHT" - }, - { - "x": -10.969710395335524, - "y": -1922.898783130264, - "rotation": 5.7790163941450325, - "action": "CARVE_RIGHT" - }, - { - "x": -12.282630649800232, - "y": -1926.3974243934672, - "rotation": 5.833121600956857, - "action": "CARVE_RIGHT" - }, - { - "x": -13.438851507232656, - "y": -1930.0457926377903, - "rotation": 5.887226807768681, - "action": "CARVE_RIGHT" - }, - { - "x": -14.438213466273734, - "y": -1933.8447486861273, - "rotation": 5.941332014580506, - "action": "CARVE_RIGHT" - }, - { - "x": -15.28048511878582, - "y": -1937.7952183728225, - "rotation": 5.99543722139233, - "action": "CARVE_RIGHT" - }, - { - "x": -15.965363360458817, - "y": -1941.8981923521164, - "rotation": 6.0495424282041546, - "action": "CARVE_RIGHT" - }, - { - "x": -16.49247360083766, - "y": -1946.1547259071199, - "rotation": 6.103647635015979, - "action": "CARVE_RIGHT" - }, - { - "x": -16.861369972772707, - "y": -1950.565938759315, - "rotation": 6.157752841827803, - "action": "CARVE_RIGHT" - }, - { - "x": -17.071535541294534, - "y": -1955.1330148785812, - "rotation": 6.211858048639628, - "action": "CARVE_RIGHT" - }, - { - "x": -17.12238251191465, - "y": -1959.8572022937456, - "rotation": 6.265963255451452, - "action": "CARVE_RIGHT" - }, - { - "x": -17.0132749460958, - "y": -1964.5367548324182, - "rotation": 0.03688315508369033, - "action": "CARVE_RIGHT" - }, - { - "x": -16.74363131738234, - "y": -1969.076229171878, - "rotation": 0.09098836189551454, - "action": "CARVE_RIGHT" - }, - { - "x": -16.31294466123647, - "y": -1973.4744137213147, - "rotation": 0.14509356870733875, - "action": "CARVE_RIGHT" - }, - { - "x": -15.720782356336075, - "y": -1977.7301673590237, - "rotation": 0.19919877551916296, - "action": "CARVE_RIGHT" - }, - { - "x": -14.966785906473955, - "y": -1981.8424192268676, - "rotation": 0.25330398233098717, - "action": "CARVE_RIGHT" - }, - { - "x": -14.050670723056896, - "y": -1985.810168525303, - "rotation": 0.3074091891428114, - "action": "CARVE_RIGHT" - }, - { - "x": -12.972225908202963, - "y": -1989.6324843089678, - "rotation": 0.36151439595463564, - "action": "CARVE_RIGHT" - }, - { - "x": -11.73131403843546, - "y": -1993.30850528283, - "rotation": 0.4156196027664599, - "action": "CARVE_RIGHT" - }, - { - "x": -10.327870948971977, - "y": -1996.8374395988942, - "rotation": 0.4697248095782841, - "action": "CARVE_RIGHT" - }, - { - "x": -8.761905518606941, - "y": -2000.2185646534658, - "rotation": 0.5238300163901083, - "action": "CARVE_RIGHT" - }, - { - "x": -7.033499455186114, - "y": -2003.451226884972, - "rotation": 0.5779352232019325, - "action": "CARVE_RIGHT" - }, - { - "x": -5.142807081671477, - "y": -2006.5348415723354, - "rotation": 0.6320404300137566, - "action": "CARVE_RIGHT" - }, - { - "x": -3.0900551227949333, - "y": -2009.4688926339031, - "rotation": 0.6861456368255808, - "action": "CARVE_RIGHT" - }, - { - "x": -0.8755424922992754, - "y": -2012.2529324269249, - "rotation": 0.740250843637405, - "action": "CARVE_RIGHT" - }, - { - "x": 1.5003599192351316, - "y": -2014.886581547583, - "rotation": 0.7943560504492292, - "action": "CARVE_RIGHT" - }, - { - "x": 4.037209455979494, - "y": -2017.3695286315703, - "rotation": 0.8484612572610534, - "action": "CARVE_RIGHT" - }, - { - "x": 6.7344919078631165, - "y": -2019.7015301552149, - "rotation": 0.9025664640728776, - "action": "CARVE_RIGHT" - }, - { - "x": 9.59162172099884, - "y": -2021.882410237151, - "rotation": 0.9566716708847017, - "action": "CARVE_RIGHT" - }, - { - "x": 12.607942207528927, - "y": -2023.9120604405348, - "rotation": 1.010776877696526, - "action": "CARVE_RIGHT" - }, - { - "x": 15.78272575489294, - "y": -2025.7904395758019, - "rotation": 1.0648820845083502, - "action": "CARVE_RIGHT" - }, - { - "x": 19.115174034519118, - "y": -2027.5175735039668, - "rotation": 1.1189872913201744, - "action": "NOTHING" - }, - { - "x": 22.80289161894034, - "y": -2028.911253265463, - "rotation": 1.1154966328161857, - "action": "NOTHING" - }, - { - "x": 26.475671332814024, - "y": -2030.3143198510054, - "rotation": 1.112005974312197, - "action": "NOTHING" - }, - { - "x": 30.133577529717403, - "y": -2031.7267701185976, - "rotation": 1.1085153158082084, - "action": "NOTHING" - }, - { - "x": 33.776674062480716, - "y": -2033.1486012657201, - "rotation": 1.1050246573042197, - "action": "NOTHING" - }, - { - "x": 37.405024284586204, - "y": -2034.579810828307, - "rotation": 1.101533998800231, - "action": "NOTHING" - }, - { - "x": 41.01869105156342, - "y": -2036.0203966797276, - "rotation": 1.0980433402962424, - "action": "NOTHING" - }, - { - "x": 44.61773672238077, - "y": -2037.4703570297693, - "rotation": 1.0945526817922537, - "action": "NOTHING" - }, - { - "x": 48.20222316083337, - "y": -2038.9296904236246, - "rotation": 1.091062023288265, - "action": "NOTHING" - }, - { - "x": 51.77221173692718, - "y": -2040.3983957408798, - "rotation": 1.0875713647842764, - "action": "NOTHING" - }, - { - "x": 55.32776332825948, - "y": -2041.8764721945067, - "rotation": 1.0840807062802877, - "action": "NOTHING" - }, - { - "x": 58.86893832139561, - "y": -2043.3639193298586, - "rotation": 1.080590047776299, - "action": "NOTHING" - }, - { - "x": 62.39579661324208, - "y": -2044.8607370236666, - "rotation": 1.0770993892723104, - "action": "NOTHING" - }, - { - "x": 65.90839761241598, - "y": -2046.3669254830406, - "rotation": 1.0736087307683218, - "action": "NOTHING" - }, - { - "x": 69.40680024061079, - "y": -2047.882485244473, - "rotation": 1.070118072264333, - "action": "NOTHING" - }, - { - "x": 72.89106293395847, - "y": -2049.4074171728435, - "rotation": 1.0666274137603444, - "action": "NOTHING" - }, - { - "x": 76.36124364438794, - "y": -2050.9417224604294, - "rotation": 1.0631367552563558, - "action": "NOTHING" - }, - { - "x": 79.81739984097999, - "y": -2052.485402625916, - "rotation": 1.059646096752367, - "action": "NOTHING" - }, - { - "x": 83.25958851131848, - "y": -2054.0384595134105, - "rotation": 1.0561554382483784, - "action": "NOTHING" - }, - { - "x": 86.687866162838, - "y": -2055.6008952914617, - "rotation": 1.0526647797443898, - "action": "NOTHING" - }, - { - "x": 90.10228882416791, - "y": -2057.172712452077, - "rotation": 1.049174121240401, - "action": "NOTHING" - }, - { - "x": 93.50291204647277, - "y": -2058.753913809746, - "rotation": 1.0456834627364124, - "action": "NOTHING" - }, - { - "x": 96.88979090478922, - "y": -2060.3445025004658, - "rotation": 1.0421928042324238, - "action": "NOTHING" - }, - { - "x": 100.26297999935926, - "y": -2061.944481980769, - "rotation": 1.0387021457284351, - "action": "NOTHING" - }, - { - "x": 103.62253345695999, - "y": -2063.553856026755, - "rotation": 1.0352114872244464, - "action": "NOTHING" - }, - { - "x": 106.96850493222979, - "y": -2065.172628733123, - "rotation": 1.0317208287204578, - "action": "NOTHING" - }, - { - "x": 110.300947608991, - "y": -2066.800804512208, - "rotation": 1.0282301702164691, - "action": "CARVE_LEFT" - }, - { - "x": 113.14046432843658, - "y": -2068.882299827401, - "rotation": 0.9741249634046449, - "action": "CARVE_LEFT" - }, - { - "x": 115.82092216172549, - "y": -2071.1087086404887, - "rotation": 0.9200197565928208, - "action": "CARVE_LEFT" - }, - { - "x": 118.34286971650545, - "y": -2073.480251513907, - "rotation": 0.8659145497809966, - "action": "CARVE_LEFT" - }, - { - "x": 120.7067816214807, - "y": -2075.9972159063427, - "rotation": 0.8118093429691724, - "action": "CARVE_LEFT" - }, - { - "x": 122.91305874270844, - "y": -2078.6599559759834, - "rotation": 0.7577041361573482, - "action": "CARVE_LEFT" - }, - { - "x": 124.96202839930156, - "y": -2081.4688923843128, - "rotation": 0.703598929345524, - "action": "CARVE_LEFT" - }, - { - "x": 126.85394457853933, - "y": -2084.424512100444, - "rotation": 0.6494937225336999, - "action": "CARVE_LEFT" - }, - { - "x": 128.58898815038756, - "y": -2087.5273682059933, - "rotation": 0.5953885157218757, - "action": "CARVE_LEFT" - }, - { - "x": 130.16726708142986, - "y": -2090.7780797004893, - "rotation": 0.5412833089100515, - "action": "CARVE_LEFT" - }, - { - "x": 131.58881664821132, - "y": -2094.1773313073213, - "rotation": 0.48717810209822726, - "action": "CARVE_LEFT" - }, - { - "x": 132.85359964999657, - "y": -2097.7258732802206, - "rotation": 0.433072895286403, - "action": "CARVE_LEFT" - }, - { - "x": 133.96150662094325, - "y": -2101.424521210276, - "rotation": 0.3789676884745788, - "action": "CARVE_LEFT" - }, - { - "x": 134.912356041693, - "y": -2105.27415583348, - "rotation": 0.32486248166275455, - "action": "CARVE_LEFT" - }, - { - "x": 135.70589455038092, - "y": -2109.2757228388073, - "rotation": 0.2707572748509303, - "action": "CARVE_LEFT" - }, - { - "x": 136.34179715306564, - "y": -2113.43023267682, - "rotation": 0.2166520680391061, - "action": "CARVE_LEFT" - }, - { - "x": 136.8196674335809, - "y": -2117.7387603688053, - "rotation": 0.1625468612272819, - "action": "CARVE_LEFT" - }, - { - "x": 137.13903776281066, - "y": -2122.2024453164327, - "rotation": 0.1084416544154577, - "action": "CARVE_LEFT" - }, - { - "x": 137.29936950738914, - "y": -2126.8224911119423, - "rotation": 0.05433644760363348, - "action": "CARVE_LEFT" - }, - { - "x": 137.3000532378271, - "y": -2131.6001653488534, - "rotation": 0.0002312407918092646, - "action": "CARVE_LEFT" - }, - { - "x": 137.14045695734217, - "y": -2136.239765817744, - "rotation": 6.229311341159571, - "action": "CARVE_LEFT" - }, - { - "x": 136.8200231711305, - "y": -2140.7387668704496, - "rotation": 6.1752061343477465, - "action": "CARVE_LEFT" - }, - { - "x": 136.338268875604, - "y": -2145.0959796348525, - "rotation": 6.121100927535922, - "action": "CARVE_LEFT" - }, - { - "x": 135.6947853398831, - "y": -2149.310285641483, - "rotation": 6.066995720724098, - "action": "CARVE_LEFT" - }, - { - "x": 134.8892378878902, - "y": -2153.3806366181657, - "rotation": 6.012890513912273, - "action": "CARVE_LEFT" - }, - { - "x": 133.92136568104243, - "y": -2157.3060542852268, - "rotation": 5.958785307100449, - "action": "CARVE_LEFT" - }, - { - "x": 132.79098150154223, - "y": -2161.085630151264, - "rotation": 5.9046801002886244, - "action": "CARVE_LEFT" - }, - { - "x": 131.4979715362641, - "y": -2164.7185253094754, - "rotation": 5.8505748934768, - "action": "CARVE_LEFT" - }, - { - "x": 130.0422951612357, - "y": -2168.203970234547, - "rotation": 5.796469686664976, - "action": "CARVE_LEFT" - }, - { - "x": 128.4239847267123, - "y": -2171.5412645800966, - "rotation": 5.742364479853151, - "action": "CARVE_LEFT" - }, - { - "x": 126.64314534284229, - "y": -2174.729776976675, - "rotation": 5.688259273041327, - "action": "CARVE_LEFT" - }, - { - "x": 124.69995466592292, - "y": -2177.7689448303186, - "rotation": 5.634154066229502, - "action": "CARVE_LEFT" - }, - { - "x": 122.59466268524406, - "y": -2180.658274121656, - "rotation": 5.580048859417678, - "action": "CARVE_LEFT" - }, - { - "x": 120.32759151051894, - "y": -2183.397339205567, - "rotation": 5.525943652605854, - "action": "CARVE_LEFT" - }, - { "x": 117.8991351599, "y": -2185.9857826113857, "rotation": 5.471838445794029, "action": "NOTHING" }, - { - "x": 115.21270448295925, - "y": -2188.3349192273463, - "rotation": 5.475329104298018, - "action": "NOTHING" - }, - { - "x": 112.53809949710934, - "y": -2190.694611522734, - "rotation": 5.478819762802006, - "action": "NOTHING" - }, - { - "x": 109.87529213706647, - "y": -2193.0648810447165, - "rotation": 5.4823104213059946, - "action": "NOTHING" - }, - { - "x": 107.22425473711999, - "y": -2195.4457496058644, - "rotation": 5.485801079809983, - "action": "NOTHING" - }, - { - "x": 104.58496003000293, - "y": -2197.8372392833335, - "rotation": 5.489291738313971, - "action": "NOTHING" - }, - { - "x": 101.95738114576552, - "y": -2200.2393724180515, - "rotation": 5.49278239681796, - "action": "NOTHING" - }, - { - "x": 99.34149161065179, - "y": -2202.6521716139077, - "rotation": 5.496273055321948, - "action": "NOTHING" - }, - { - "x": 96.73726534597915, - "y": -2205.0756597369427, - "rotation": 5.499763713825937, - "action": "NOTHING" - }, - { - "x": 94.14467666702103, - "y": -2207.5098599145426, - "rotation": 5.503254372329925, - "action": "NOTHING" - }, - { - "x": 91.56370028189244, - "y": -2209.9547955346357, - "rotation": 5.506745030833914, - "action": "NOTHING" - }, - { - "x": 88.99431129043863, - "y": -2212.410490244889, - "rotation": 5.510235689337902, - "action": "NOTHING" - }, - { - "x": 86.43648518312669, - "y": -2214.8769679519082, - "rotation": 5.5137263478418905, - "action": "NOTHING" - }, - { - "x": 83.8901978399401, - "y": -2217.3542528204425, - "rotation": 5.517217006345879, - "action": "NOTHING" - }, - { - "x": 81.3554255292763, - "y": -2219.842369272587, - "rotation": 5.520707664849867, - "action": "NOTHING" - }, - { - "x": 78.83214490684722, - "y": -2222.34134198699, - "rotation": 5.524198323353856, - "action": "NOTHING" - }, - { - "x": 76.32033301458273, - "y": -2224.8511958980635, - "rotation": 5.527688981857844, - "action": "NOTHING" - }, - { - "x": 73.8199672795371, - "y": -2227.3719561951943, - "rotation": 5.531179640361833, - "action": "NOTHING" - }, - { - "x": 71.33102551279832, - "y": -2229.903648321957, - "rotation": 5.534670298865821, - "action": "NOTHING" - }, - { - "x": 68.85348590840047, - "y": -2232.4462979753307, - "rotation": 5.53816095736981, - "action": "CARVE_RIGHT" - }, - { - "x": 66.7854513014536, - "y": -2235.36854134493, - "rotation": 5.592266164181634, - "action": "CARVE_RIGHT" - }, - { - "x": 64.87891134862508, - "y": -2238.441461627969, - "rotation": 5.646371370993458, - "action": "CARVE_RIGHT" - }, - { - "x": 63.133682798341106, - "y": -2241.665609961781, - "rotation": 5.700476577805283, - "action": "CARVE_RIGHT" - }, - { - "x": 61.54965531636568, - "y": -2245.041603413959, - "rotation": 5.754581784617107, - "action": "CARVE_RIGHT" - }, - { - "x": 60.126791272406955, - "y": -2248.57012478826, - "rotation": 5.808686991428932, - "action": "CARVE_RIGHT" - }, - { - "x": 58.86512552730956, - "y": -2252.25192243104, - "rotation": 5.862792198240756, - "action": "CARVE_RIGHT" - }, - { - "x": 57.764765220831414, - "y": -2256.087810038227, - "rotation": 5.91689740505258, - "action": "CARVE_RIGHT" - }, - { - "x": 56.82588956000347, - "y": -2260.0786664628213, - "rotation": 5.971002611864405, - "action": "CARVE_RIGHT" - }, - { - "x": 56.04874960807082, - "y": -2264.2254355229297, - "rotation": 6.025107818676229, - "action": "CARVE_RIGHT" - }, - { - "x": 55.43366807401371, - "y": -2268.529125810328, - "rotation": 6.079213025488054, - "action": "CARVE_RIGHT" - }, - { - "x": 54.981039102646776, - "y": -2272.990810499551, - "rotation": 6.133318232299878, - "action": "CARVE_RIGHT" - }, - { - "x": 54.6913280652952, - "y": -2277.611627157511, - "rotation": 6.1874234391117025, - "action": "CARVE_RIGHT" - }, - { - "x": 54.56507135104606, - "y": -2282.392777553637, - "rotation": 6.241528645923527, - "action": "CARVE_RIGHT" - }, - { - "x": 54.60287359460291, - "y": -2287.2651880921717, - "rotation": 0.012448545555765023, - "action": "CARVE_RIGHT" - }, - { - "x": 54.805330760968545, - "y": -2291.9937543029628, - "rotation": 0.06655375236758923, - "action": "CARVE_RIGHT" - }, - { - "x": 55.17296421795481, - "y": -2296.577251154048, - "rotation": 0.12065895917941344, - "action": "CARVE_RIGHT" - }, - { - "x": 55.706220954970085, - "y": -2301.0145241153828, - "rotation": 0.17476416599123765, - "action": "CARVE_RIGHT" - }, - { - "x": 56.40547380120521, - "y": -2305.3044889532207, - "rotation": 0.22886937280306185, - "action": "CARVE_RIGHT" - }, - { - "x": 57.27102164321928, - "y": -2309.4461315250646, - "rotation": 0.2829745796148861, - "action": "CARVE_RIGHT" - }, - { - "x": 58.30308964192706, - "y": -2313.438507575172, - "rotation": 0.3370797864267103, - "action": "NOTHING" - }, - { - "x": 59.439253621438304, - "y": -2317.340153111692, - "rotation": 0.33358912792272166, - "action": "NOTHING" - }, - { - "x": 60.56481998533158, - "y": -2321.257300135517, - "rotation": 0.330098469418733, - "action": "NOTHING" - }, - { - "x": 61.679769095924954, - "y": -2325.1900009808164, - "rotation": 0.32660781091474433, - "action": "NOTHING" - }, - { - "x": 62.784081052956985, - "y": -2329.1383081497556, - "rotation": 0.32311715241075567, - "action": "NOTHING" - }, - { - "x": 63.877735694344345, - "y": -2333.1022743119606, - "rotation": 0.319626493906767, - "action": "NOTHING" - }, - { - "x": 64.96071259693733, - "y": -2337.0819523039836, - "rotation": 0.31613583540277834, - "action": "NOTHING" - }, - { - "x": 66.03299107727337, - "y": -2341.0773951287692, - "rotation": 0.3126451768987897, - "action": "NOTHING" - }, - { - "x": 67.0945501923284, - "y": -2345.088655955123, - "rotation": 0.309154518394801, - "action": "NOTHING" - }, - { - "x": 68.14536874026629, - "y": -2349.115788117183, - "rotation": 0.30566385989081235, - "action": "NOTHING" - }, - { - "x": 69.18542526118618, - "y": -2353.1588451138878, - "rotation": 0.3021732013868237, - "action": "NOTHING" - }, - { - "x": 70.21469803786773, - "y": -2357.2178806084535, - "rotation": 0.298682542882835, - "action": "NOTHING" - }, - { - "x": 71.23316509651444, - "y": -2361.2929484278457, - "rotation": 0.29519188437884636, - "action": "NOTHING" - }, - { - "x": 72.24080420749489, - "y": -2365.384102562256, - "rotation": 0.2917012258748577, - "action": "NOTHING" - }, - { - "x": 73.23759288608194, - "y": -2369.4913971645806, - "rotation": 0.28821056737086903, - "action": "NOTHING" - }, - { - "x": 74.22350839318999, - "y": -2373.614886549898, - "rotation": 0.28471990886688037, - "action": "NOTHING" - }, - { - "x": 75.19852773611014, - "y": -2377.7546251949507, - "rotation": 0.2812292503628917, - "action": "NOTHING" - }, - { - "x": 76.16262766924339, - "y": -2381.9106677376267, - "rotation": 0.27773859185890304, - "action": "NOTHING" - }, - { - "x": 77.11578469483189, - "y": -2386.0830689764434, - "rotation": 0.2742479333549144, - "action": "NOTHING" - }, - { - "x": 78.05797506368808, - "y": -2390.2718838700325, - "rotation": 0.2707572748509257, - "action": "NOTHING" - }, - { - "x": 78.98917477592197, - "y": -2394.477167536626, - "rotation": 0.26726661634693705, - "action": "NOTHING" - }, - { - "x": 79.90935958166634, - "y": -2398.6989752535455, - "rotation": 0.2637759578429484, - "action": "NOTHING" - }, - { - "x": 80.81850498179999, - "y": -2402.937362456691, - "rotation": 0.2602852993389597, - "action": "NOTHING" - }, - { - "x": 81.71658622866909, - "y": -2407.192384740032, - "rotation": 0.25679464083497106, - "action": "NOTHING" - }, - { - "x": 82.60357832680641, - "y": -2411.4640978550997, - "rotation": 0.2533039823309824, - "action": "NOTHING" - }, - { - "x": 83.47945603364876, - "y": -2415.7525577104816, - "rotation": 0.24981332382699373, - "action": "NOTHING" - }, - { - "x": 84.34419386025233, - "y": -2420.0578203713158, - "rotation": 0.24632266532300506, - "action": "NOTHING" - }, - { - "x": 85.19776607200617, - "y": -2424.3799420587893, - "rotation": 0.2428320068190164, - "action": "NOTHING" - }, - { - "x": 86.0401466893437, - "y": -2428.7189791496353, - "rotation": 0.23934134831502774, - "action": "NOTHING" - }, - { - "x": 86.87130948845223, - "y": -2433.0749881756337, - "rotation": 0.23585068981103907, - "action": "NOTHING" - }, - { - "x": 87.6912280019806, - "y": -2437.4480258231115, - "rotation": 0.2323600313070504, - "action": "NOTHING" - }, - { - "x": 88.49987551974493, - "y": -2441.838148932446, - "rotation": 0.22886937280306174, - "action": "NOTHING" - }, - { - "x": 89.2972250894323, - "y": -2446.245414497569, - "rotation": 0.22537871429907308, - "action": "NOTHING" - }, - { - "x": 90.08324951730263, - "y": -2450.669879665472, - "rotation": 0.22188805579508442, - "action": "NOTHING" - }, - { - "x": 90.85792136888863, - "y": -2455.111601735713, - "rotation": 0.21839739729109575, - "action": "NOTHING" - }, - { - "x": 91.62121296969377, - "y": -2459.5706381599266, - "rotation": 0.2149067387871071, - "action": "CARVE_LEFT" - }, - { - "x": 92.13590001037498, - "y": -2464.26664950014, - "rotation": 0.16080153197528288, - "action": "CARVE_LEFT" - }, - { - "x": 92.47790406446671, - "y": -2469.1300464082947, - "rotation": 0.10669632516345867, - "action": "CARVE_LEFT" - }, - { - "x": 92.64674634248505, - "y": -2474.1619790547106, - "rotation": 0.05259111835163446, - "action": "CARVE_LEFT" - }, - { - "x": 92.6418770986477, - "y": -2479.35460415296, - "rotation": 6.281671218719397, - "action": "CARVE_LEFT" - }, - { - "x": 92.46272826067303, - "y": -2484.3939819873863, - "rotation": 6.227566011907572, - "action": "CARVE_LEFT" - }, - { - "x": 92.10880625592625, - "y": -2489.27891434295, - "rotation": 6.173460805095748, - "action": "CARVE_LEFT" - }, - { - "x": 91.57969179292616, - "y": -2494.0082734141047, - "rotation": 6.119355598283923, - "action": "CARVE_LEFT" - }, - { - "x": 90.8750396434526, - "y": -2498.581001599457, - "rotation": 6.065250391472099, - "action": "CARVE_LEFT" - }, - { - "x": 89.99457842525324, - "y": -2502.9961112969904, - "rotation": 6.011145184660275, - "action": "CARVE_LEFT" - }, - { - "x": 88.93811038534783, - "y": -2507.252684699849, - "rotation": 5.95703997784845, - "action": "CARVE_LEFT" - }, - { - "x": 87.70551118392859, - "y": -2511.3498735926814, - "rotation": 5.902934771036626, - "action": "CARVE_LEFT" - }, - { - "x": 86.29672967885507, - "y": -2515.2868991485434, - "rotation": 5.848829564224801, - "action": "CARVE_LEFT" - }, - { - "x": 84.71178771074189, - "y": -2519.063051726356, - "rotation": 5.794724357412977, - "action": "CARVE_LEFT" - }, - { - "x": 82.95077988863783, - "y": -2522.677690668922, - "rotation": 5.740619150601153, - "action": "CARVE_LEFT" - }, - { - "x": 81.01387337629467, - "y": -2526.1302441014905, - "rotation": 5.686513943789328, - "action": "CARVE_LEFT" - }, - { - "x": 78.9013076790243, - "y": -2529.4202087308818, - "rotation": 5.632408736977504, - "action": "CARVE_LEFT" - }, - { - "x": 76.61339443114245, - "y": -2532.547149645156, - "rotation": 5.578303530165679, - "action": "CARVE_LEFT" - }, - { - "x": 74.15051718399754, - "y": -2535.510700113836, - "rotation": 5.524198323353855, - "action": "CARVE_LEFT" - }, - { - "x": 71.51313119458311, - "y": -2538.3105613886746, - "rotation": 5.470093116542031, - "action": "CARVE_LEFT" - }, - { - "x": 68.7017632147323, - "y": -2540.946502504973, - "rotation": 5.415987909730206, - "action": "CARVE_LEFT" - }, - { - "x": 65.71701128089272, - "y": -2543.41836008344, - "rotation": 5.361882702918382, - "action": "CARVE_LEFT" - }, - { - "x": 62.55954450448045, - "y": -2545.726038132597, - "rotation": 5.307777496106557, - "action": "CARVE_LEFT" - }, - { - "x": 59.23010286281127, - "y": -2547.869507851725, - "rotation": 5.253672289294733, - "action": "CARVE_LEFT" - }, - { - "x": 55.72949699060793, - "y": -2549.8488074343527, - "rotation": 5.1995670824829086, - "action": "CARVE_LEFT" - }, - { - "x": 52.05860797208173, - "y": -2551.664041872285, - "rotation": 5.145461875671084, - "action": "CARVE_LEFT" - }, - { - "x": 48.21838713358701, - "y": -2553.315382760166, - "rotation": 5.09135666885926, - "action": "CARVE_LEFT" - }, - { - "x": 44.2098558368469, - "y": -2554.803068100583, - "rotation": 5.037251462047435, - "action": "NOTHING" - }, - { - "x": 39.77443173434182, - "y": -2555.888433648215, - "rotation": 5.040742120551424, - "action": "NOTHING" - }, - { - "x": 35.35742039657586, - "y": -2556.9838615495055, - "rotation": 5.044232779055412, - "action": "NOTHING" - }, - { - "x": 30.95873559158815, - "y": -2558.0893339970185, - "rotation": 5.047723437559401, - "action": "NOTHING" - }, - { - "x": 26.578291649689312, - "y": -2559.204833567458, - "rotation": 5.051214096063389, - "action": "NOTHING" - }, - { - "x": 22.21600346189762, - "y": -2560.330343220522, - "rotation": 5.054704754567378, - "action": "NOTHING" - }, - { - "x": 17.87178647837935, - "y": -2561.465846297756, - "rotation": 5.058195413071366, - "action": "NOTHING" - }, - { - "x": 13.545556706893228, - "y": -2562.6113265214112, - "rotation": 5.061686071575354, - "action": "NOTHING" - }, - { - "x": 9.237230711239071, - "y": -2563.7667679933093, - "rotation": 5.065176730079343, - "action": "NOTHING" - }, - { - "x": 4.946725609710509, - "y": -2564.932155193704, - "rotation": 5.068667388583331, - "action": "NOTHING" - }, - { - "x": 0.6739590735518526, - "y": -2566.1074729801517, - "rotation": 5.07215804708732, - "action": "NOTHING" - }, - { - "x": -3.581150674580943, - "y": -2567.292706586381, - "rotation": 5.075648705591308, - "action": "NOTHING" - }, - { - "x": -7.818684862155219, - "y": -2568.4878416211686, - "rotation": 5.079139364095297, - "action": "NOTHING" - }, - { - "x": -12.038724168292472, - "y": -2569.692864067216, - "rotation": 5.082630022599285, - "action": "NOTHING" - }, - { - "x": -16.241348725295126, - "y": -2570.9077602800294, - "rotation": 5.0861206811032735, - "action": "NOTHING" - }, - { - "x": -20.42663812016926, - "y": -2572.132516986806, - "rotation": 5.089611339607262, - "action": "CARVE_RIGHT" - }, - { - "x": -24.01831084465199, - "y": -2573.900765129292, - "rotation": 5.143716546419086, - "action": "CARVE_RIGHT" - }, - { - "x": -27.43580278049729, - "y": -2575.8248750216253, - "rotation": 5.197821753230911, - "action": "CARVE_RIGHT" - }, - { - "x": -30.67994582412202, - "y": -2577.904811639548, - "rotation": 5.251926960042735, - "action": "CARVE_RIGHT" - }, - { - "x": -33.75149704534975, - "y": -2580.140607625133, - "rotation": 5.30603216685456, - "action": "CARVE_RIGHT" - }, - { - "x": -36.651138906065746, - "y": -2582.532363087886, - "rotation": 5.360137373666384, - "action": "CARVE_RIGHT" - }, - { - "x": -39.379479478271996, - "y": -2585.0802454063946, - "rotation": 5.414242580478208, - "action": "CARVE_RIGHT" - }, - { - "x": -41.93705266154388, - "y": -2587.784489030519, - "rotation": 5.468347787290033, - "action": "CARVE_RIGHT" - }, - { - "x": -44.32431839989013, - "y": -2590.6453952841343, - "rotation": 5.522452994101857, - "action": "CARVE_RIGHT" - }, - { - "x": -46.54166289801754, - "y": -2593.663332168411, - "rotation": 5.576558200913682, - "action": "CARVE_RIGHT" - }, - { - "x": -48.58939883700211, - "y": -2596.8387341656403, - "rotation": 5.630663407725506, - "action": "CARVE_RIGHT" - }, - { - "x": -50.46776558936808, - "y": -2600.172102043597, - "rotation": 5.68476861453733, - "action": "CARVE_RIGHT" - }, - { - "x": -52.17692943357653, - "y": -2603.6640026604455, - "rotation": 5.738873821349155, - "action": "CARVE_RIGHT" - }, - { - "x": -53.71698376792502, - "y": -2607.315068770179, - "rotation": 5.792979028160979, - "action": "CARVE_RIGHT" - }, - { - "x": -55.08794932385981, - "y": -2611.125998828598, - "rotation": 5.847084234972804, - "action": "CARVE_RIGHT" - }, - { - "x": -56.28977437870229, - "y": -2615.097556799821, - "rotation": 5.901189441784628, - "action": "CARVE_RIGHT" - }, - { - "x": -57.32233496779112, - "y": -2619.230571963333, - "rotation": 5.955294648596452, - "action": "CARVE_RIGHT" - }, - { - "x": -58.18543509604162, - "y": -2623.5259387215606, - "rotation": 6.009399855408277, - "action": "CARVE_RIGHT" - }, - { - "x": -58.87880694892391, - "y": -2627.9846164079795, - "rotation": 6.063505062220101, - "action": "CARVE_RIGHT" - }, - { - "x": -59.402111102861426, - "y": -2632.6076290957544, - "rotation": 6.117610269031926, - "action": "CARVE_RIGHT" - }, - { - "x": -59.75493673505127, - "y": -2637.396065406901, - "rotation": 6.17171547584375, - "action": "CARVE_RIGHT" - }, - { - "x": -59.93680183270792, - "y": -2642.3510783219785, - "rotation": 6.225820682655574, - "action": "CARVE_RIGHT" - }, - { - "x": -59.94715340173188, - "y": -2647.4738849903065, - "rotation": 6.279925889467399, - "action": "CARVE_RIGHT" - }, - { - "x": -59.78541044938773, - "y": -2652.464843432528, - "rotation": 0.050845789099636995, - "action": "CARVE_RIGHT" - }, - { - "x": -59.45106343263327, - "y": -2657.303570620173, - "rotation": 0.1049509959114612, - "action": "CARVE_RIGHT" - }, - { - "x": -58.943677139872875, - "y": -2661.988923554097, - "rotation": 0.1590562027232854, - "action": "CARVE_RIGHT" - }, - { - "x": -58.26289047292104, - "y": -2666.5198294867378, - "rotation": 0.21316140953510962, - "action": "CARVE_RIGHT" - }, - { - "x": -57.40841622956547, - "y": -2670.895285717207, - "rotation": 0.2672666163469338, - "action": "CARVE_RIGHT" - }, - { - "x": -56.38004088672815, - "y": -2675.1143593869365, - "rotation": 0.32137182315875806, - "action": "CARVE_RIGHT" - }, - { - "x": -55.177624384222966, - "y": -2679.176187275888, - "rotation": 0.3754770299705823, - "action": "CARVE_RIGHT" - }, - { - "x": -53.801099909108046, - "y": -2683.0799755993226, - "rotation": 0.42958223678240653, - "action": "CARVE_RIGHT" - }, - { - "x": -52.2504736806315, - "y": -2686.824999805126, - "rotation": 0.48368744359423077, - "action": "CARVE_RIGHT" - }, - { - "x": -50.525824735768815, - "y": -2690.4106043716884, - "rotation": 0.537792650406055, - "action": "CARVE_RIGHT" - }, - { - "x": -48.62730471535044, - "y": -2693.83620260634, - "rotation": 0.5918978572178791, - "action": "CARVE_RIGHT" - }, - { - "x": -46.55513765077798, - "y": -2697.101276444341, - "rotation": 0.6460030640297033, - "action": "CARVE_RIGHT" - }, - { - "x": -44.309619751327396, - "y": -2700.2053762484175, - "rotation": 0.7001082708415275, - "action": "CARVE_RIGHT" - }, - { - "x": -41.89111919203774, - "y": -2703.1481206088547, - "rotation": 0.7542134776533517, - "action": "CARVE_RIGHT" - }, - { - "x": -39.30007590218383, - "y": -2705.929196144131, - "rotation": 0.8083186844651759, - "action": "CARVE_RIGHT" - }, - { - "x": -36.537001354331295, - "y": -2708.5483573021047, - "rotation": 0.862423891277, - "action": "CARVE_RIGHT" - }, - { - "x": -33.60247835397257, - "y": -2711.005426161744, - "rotation": 0.9165290980888242, - "action": "CARVE_RIGHT" - }, - { - "x": -30.49716082974213, - "y": -2713.3002922354, - "rotation": 0.9706343049006484, - "action": "CARVE_RIGHT" - }, - { - "x": -27.221773624209565, - "y": -2715.4329122716254, - "rotation": 1.0247395117124727, - "action": "CARVE_RIGHT" - }, - { - "x": -23.777112285248965, - "y": -2717.4033100585316, - "rotation": 1.0788447185242969, - "action": "CARVE_RIGHT" - }, - { - "x": -20.164042857982988, - "y": -2719.2115762276867, - "rotation": 1.132949925336121, - "action": "CARVE_RIGHT" - }, - { - "x": -16.38350167730021, - "y": -2720.8578680585515, - "rotation": 1.1870551321479452, - "action": "CARVE_RIGHT" - }, - { - "x": -12.436495160944173, - "y": -2722.342409283454, - "rotation": 1.2411603389597694, - "action": "CARVE_RIGHT" - }, - { - "x": -8.324099603172645, - "y": -2723.6654898930965, - "rotation": 1.2952655457715936, - "action": "CARVE_RIGHT" - }, - { - "x": -4.0474609689855745, - "y": -2724.8274659426006, - "rotation": 1.3493707525834178, - "action": "CARVE_RIGHT" - }, - { - "x": 0.39220531107976164, - "y": -2725.828759358081, - "rotation": 1.403475959395242, - "action": "NOTHING" - }, - { - "x": 5.304271365354289, - "y": -2726.3836825402655, - "rotation": 1.3999853008912533, - "action": "NOTHING" - }, - { - "x": 10.195547703549586, - "y": -2726.9489588099505, - "rotation": 1.3964946423872646, - "action": "NOTHING" - }, - { - "x": 15.066140470864793, - "y": -2727.52455612384, - "rotation": 1.393003983883276, - "action": "NOTHING" - }, - { - "x": 19.916155196355053, - "y": -2728.110442863415, - "rotation": 1.3895133253792873, - "action": "NOTHING" - }, - { - "x": 24.745696794635993, - "y": -2728.7065878336766, - "rotation": 1.3860226668752986, - "action": "NOTHING" - }, - { - "x": 29.554869567583697, - "y": -2729.312960261891, - "rotation": 1.38253200837131, - "action": "NOTHING" - }, - { - "x": 34.343777206030175, - "y": -2729.9295297963395, - "rotation": 1.3790413498673213, - "action": "NOTHING" - }, - { - "x": 39.112522791454346, - "y": -2730.5562665050707, - "rotation": 1.3755506913633326, - "action": "NOTHING" - }, - { - "x": 43.8612087976685, - "y": -2731.193140874657, - "rotation": 1.372060032859344, - "action": "NOTHING" - }, - { - "x": 48.589937092500364, - "y": -2731.840123808954, - "rotation": 1.3685693743553553, - "action": "NOTHING" - }, - { - "x": 53.298808939470604, - "y": -2732.4971866278647, - "rotation": 1.3650787158513666, - "action": "NOTHING" - }, - { - "x": 57.987924999465974, - "y": -2733.164301066104, - "rotation": 1.361588057347378, - "action": "CARVE_LEFT" - }, - { - "x": 62.03379810271194, - "y": -2734.4188115216893, - "rotation": 1.3074828505355538, - "action": "CARVE_LEFT" - }, - { - "x": 65.90646387665386, - "y": -2735.826241192882, - "rotation": 1.2533776437237296, - "action": "CARVE_LEFT" - }, - { - "x": 69.60697066896824, - "y": -2737.386359128193, - "rotation": 1.1992724369119054, - "action": "CARVE_LEFT" - }, - { - "x": 73.13629137453097, - "y": -2739.099002612407, - "rotation": 1.1451672301000813, - "action": "CARVE_LEFT" - }, - { - "x": 76.49532365577988, - "y": -2740.964076966125, - "rotation": 1.091062023288257, - "action": "CARVE_LEFT" - }, - { - "x": 79.68489016247308, - "y": -2742.981555345856, - "rotation": 1.036956816476433, - "action": "CARVE_LEFT" - }, - { - "x": 82.70573875084428, - "y": -2745.1514785446598, - "rotation": 0.9828516096646087, - "action": "CARVE_LEFT" - }, - { - "x": 85.55854270215704, - "y": -2747.4739547933386, - "rotation": 0.9287464028527845, - "action": "CARVE_LEFT" - }, - { - "x": 88.24390094065937, - "y": -2749.9491595621766, - "rotation": 0.8746411960409604, - "action": "CARVE_LEFT" - }, - { - "x": 90.76233825094019, - "y": -2752.5773353632253, - "rotation": 0.8205359892291362, - "action": "CARVE_LEFT" - }, - { - "x": 93.11430549468935, - "y": -2755.3587915531325, - "rotation": 0.766430782417312, - "action": "SLIDE_LEFT" - }, - { - "x": 94.51805799855606, - "y": -2758.9560243479104, - "rotation": 0.6948722830855445, - "action": "SLIDE_LEFT" - }, - { - "x": 95.76153831142275, - "y": -2762.6405508200887, - "rotation": 0.623313783753777, - "action": "CARVE_LEFT" - }, - { - "x": 97.46557544875348, - "y": -2765.9006870563144, - "rotation": 0.5692085769419528, - "action": "CARVE_LEFT" - }, - { - "x": 99.00852102027902, - "y": -2769.312752238491, - "rotation": 0.5151033701301286, - "action": "CARVE_LEFT" - }, - { - "x": 100.39039414271159, - "y": -2772.877445905098, - "rotation": 0.4609981633183044, - "action": "CARVE_LEFT" - }, - { - "x": 101.61114149596925, - "y": -2776.595533087793, - "rotation": 0.40689295650648016, - "action": "CARVE_LEFT" - }, - { - "x": 102.67063753524963, - "y": -2780.4678441185206, - "rotation": 0.3527877496946559, - "action": "CARVE_LEFT" - }, - { - "x": 103.56868470252103, - "y": -2784.495274437151, - "rotation": 0.2986825428828317, - "action": "CARVE_LEFT" - }, - { - "x": 104.30501363743264, - "y": -2788.678784399648, - "rotation": 0.24457733607100748, - "action": "CARVE_LEFT" - }, - { - "x": 104.87928338764523, - "y": -2793.019399086768, - "rotation": 0.19047212925918328, - "action": "CARVE_LEFT" - }, - { - "x": 105.2910816185839, - "y": -2797.5182081132843, - "rotation": 0.13636692244735907, - "action": "CARVE_LEFT" - }, - { - "x": 105.53992482261448, - "y": -2802.17636543774, - "rotation": 0.08226171563553486, - "action": "CARVE_LEFT" - }, - { - "x": 105.62525852764497, - "y": -2806.9950891727235, - "rotation": 0.028156508823710645, - "action": "CARVE_LEFT" - }, - { - "x": 105.5464686457117, - "y": -2811.8290500744943, - "rotation": 6.257236609191473, - "action": "CARVE_LEFT" - }, - { - "x": 105.3029774450937, - "y": -2816.5189443014974, - "rotation": 6.203131402379649, - "action": "CARVE_LEFT" - }, - { - "x": 104.89428173793475, - "y": -2821.063564049716, - "rotation": 6.149026195567824, - "action": "CARVE_LEFT" - }, - { - "x": 104.3199526616022, - "y": -2825.461771966942, - "rotation": 6.094920988756, - "action": "CARVE_LEFT" - }, - { - "x": 103.57963546064721, - "y": -2829.7125009472943, - "rotation": 6.0408157819441755, - "action": "CARVE_LEFT" - }, - { - "x": 102.67304926936441, - "y": -2833.8147539263055, - "rotation": 5.986710575132351, - "action": "CARVE_LEFT" - }, - { - "x": 101.59998689494978, - "y": -2837.7676036765647, - "rotation": 5.932605368320527, - "action": "CARVE_LEFT" - }, - { - "x": 100.36031460125494, - "y": -2841.570192603924, - "rotation": 5.878500161508702, - "action": "CARVE_LEFT" - }, - { - "x": 98.95397189313636, - "y": -2845.2217325442625, - "rotation": 5.824394954696878, - "action": "CARVE_LEFT" - }, - { - "x": 97.38097130139789, - "y": -2848.721504560807, - "rotation": 5.770289747885053, - "action": "CARVE_LEFT" - }, - { - "x": 95.64139816832511, - "y": -2852.0688587420095, - "rotation": 5.716184541073229, - "action": "CARVE_LEFT" - }, - { - "x": 93.73541043380979, - "y": -2855.2632139999796, - "rotation": 5.662079334261405, - "action": "CARVE_LEFT" - }, - { - "x": 91.66323842206306, - "y": -2858.3040578694668, - "rotation": 5.60797412744958, - "action": "CARVE_LEFT" - }, - { - "x": 89.42518462891567, - "y": -2861.1909463073966, - "rotation": 5.553868920637756, - "action": "CARVE_LEFT" - }, - { - "x": 87.02162350970379, - "y": -2863.923503492957, - "rotation": 5.499763713825931, - "action": "CARVE_LEFT" - }, - { - "x": 84.45300126773871, - "y": -2866.50142162823, - "rotation": 5.445658507014107, - "action": "CARVE_LEFT" - }, - { - "x": 81.71983564335918, - "y": -2868.924460739376, - "rotation": 5.391553300202283, - "action": "CARVE_LEFT" - }, - { - "x": 78.82271570356443, - "y": -2871.192448478357, - "rotation": 5.337448093390458, - "action": "CARVE_LEFT" - }, - { - "x": 75.76230163222678, - "y": -2873.3052799252087, - "rotation": 5.283342886578634, - "action": "CARVE_LEFT" - }, - { - "x": 72.53932452088192, - "y": -2875.2629173908535, - "rotation": 5.229237679766809, - "action": "CARVE_LEFT" - }, - { - "x": 69.15458616009562, - "y": -2877.065390220456, - "rotation": 5.175132472954985, - "action": "CARVE_LEFT" - }, - { - "x": 65.60895883140519, - "y": -2878.7127945973148, - "rotation": 5.121027266143161, - "action": "CARVE_LEFT" - }, - { - "x": 61.9033850998342, - "y": -2880.205293347299, - "rotation": 5.066922059331336, - "action": "CARVE_LEFT" - }, - { - "x": 58.038877606979014, - "y": -2881.543115743816, - "rotation": 5.012816852519512, - "action": "CARVE_LEFT" - }, - { - "x": 54.016518864665485, - "y": -2882.7265573133163, - "rotation": 4.958711645707687, - "action": "NOTHING" - }, - { - "x": 49.56578342170304, - "y": -2883.505896282564, - "rotation": 4.962202304211676, - "action": "NOTHING" - }, - { - "x": 45.133507096928646, - "y": -2884.2949325940353, - "rotation": 4.965692962715664, - "action": "NOTHING" - }, - { - "x": 40.71959753952262, - "y": -2885.0936436721327, - "rotation": 4.969183621219653, - "action": "NOTHING" - }, - { - "x": 36.323962976547385, - "y": -2885.9020073378797, - "rotation": 4.972674279723641, - "action": "NOTHING" - }, - { "x": 31.94651221134459, "y": -2886.72000180774, "rotation": 4.97616493822763, "action": "NOTHING" }, - { - "x": 27.58715462193645, - "y": -2887.5476056924426, - "rotation": 4.979655596731618, - "action": "NOTHING" - }, - { - "x": 23.245800159431347, - "y": -2888.3847979958073, - "rotation": 4.9831462552356065, - "action": "NOTHING" - }, - { - "x": 18.922359346433662, - "y": -2889.2315581135754, - "rotation": 4.986636913739595, - "action": "NOTHING" - }, - { - "x": 14.616743275457829, - "y": -2890.0878658322436, - "rotation": 4.990127572243583, - "action": "NOTHING" - }, - { - "x": 10.3288636073466, - "y": -2890.9537013279, - "rotation": 4.993618230747572, - "action": "CARVE_RIGHT" - }, - { - "x": 6.636925980791993, - "y": -2892.36447869386, - "rotation": 5.047723437559396, - "action": "CARVE_RIGHT" - }, - { - "x": 3.1111435345610574, - "y": -2893.9229855499143, - "rotation": 5.101828644371221, - "action": "CARVE_RIGHT" - }, - { - "x": -0.24940732598033621, - "y": -2895.6291035085583, - "rotation": 5.155933851183045, - "action": "CARVE_RIGHT" - }, - { - "x": -3.445575115607342, - "y": -2897.48278207973, - "rotation": 5.210039057994869, - "action": "CARVE_RIGHT" - }, - { - "x": -6.478133488561654, - "y": -2899.484038471299, - "rotation": 5.264144264806694, - "action": "CARVE_RIGHT" - }, - { - "x": -9.347781457275355, - "y": -2901.6329573901016, - "rotation": 5.318249471618518, - "action": "CARVE_RIGHT" - }, - { - "x": -12.055143610494714, - "y": -2903.9296908435253, - "rotation": 5.372354678430343, - "action": "CARVE_RIGHT" - }, - { - "x": -14.600770330805506, - "y": -2906.3744579416384, - "rotation": 5.426459885242167, - "action": "CARVE_RIGHT" - }, - { - "x": -16.98513801156142, - "y": -2908.9675446998663, - "rotation": 5.4805650920539914, - "action": "CARVE_RIGHT" - }, - { - "x": -19.208649273217162, - "y": -2911.7093038422086, - "rotation": 5.534670298865816, - "action": "CARVE_RIGHT" - }, - { - "x": -21.271633179067774, - "y": -2914.6001546050006, - "rotation": 5.58877550567764, - "action": "CARVE_RIGHT" - }, - { - "x": -23.174345450395784, - "y": -2917.640582541215, - "rotation": 5.642880712489465, - "action": "CARVE_RIGHT" - }, - { - "x": -24.916968681027704, - "y": -2920.8311393253007, - "rotation": 5.696985919301289, - "action": "CARVE_RIGHT" - }, - { - "x": -26.499612551301475, - "y": -2924.1724425585626, - "rotation": 5.7510911261131135, - "action": "CARVE_RIGHT" - }, - { - "x": -27.922314041446374, - "y": -2927.6651755750754, - "rotation": 5.805196332924938, - "action": "CARVE_RIGHT" - }, - { - "x": -29.18503764437697, - "y": -2931.310087248132, - "rotation": 5.859301539736762, - "action": "CARVE_RIGHT" - }, - { - "x": -30.287675577902636, - "y": -2935.107991797227, - "rotation": 5.913406746548587, - "action": "CARVE_RIGHT" - }, - { - "x": -31.230047996354184, - "y": -2939.0597685955727, - "rotation": 5.967511953360411, - "action": "CARVE_RIGHT" - }, - { - "x": -32.01190320162917, - "y": -2943.166361978142, - "rotation": 6.0216171601722355, - "action": "CARVE_RIGHT" - }, - { - "x": -32.63291785365735, - "y": -2947.4287810502456, - "rotation": 6.07572236698406, - "action": "CARVE_RIGHT" - }, - { - "x": -33.09269718028791, - "y": -2951.8480994966326, - "rotation": 6.129827573795884, - "action": "CARVE_RIGHT" - }, - { - "x": -33.390775186599875, - "y": -2956.4254553911214, - "rotation": 6.183932780607709, - "action": "CARVE_RIGHT" - }, - { - "x": -33.526614863637334, - "y": -2961.162051006753, - "rotation": 6.238037987419533, - "action": "CARVE_RIGHT" - }, - { - "x": -33.499609724231206, - "y": -2966.0089023634773, - "rotation": 0.008957887051771252, - "action": "CARVE_RIGHT" - }, - { - "x": -33.30915382611811, - "y": -2970.713149250187, - "rotation": 0.06306309386359546, - "action": "CARVE_RIGHT" - }, - { - "x": -32.954715855374566, - "y": -2975.2735571507974, - "rotation": 0.11716830067541967, - "action": "CARVE_RIGHT" - }, - { - "x": -32.43583890754069, - "y": -2979.6889620805036, - "rotation": 0.17127350748724388, - "action": "CARVE_RIGHT" - }, - { - "x": -31.75214026934584, - "y": -2983.958270380082, - "rotation": 0.22537871429906808, - "action": "CARVE_RIGHT" - }, - { - "x": -30.903311201034455, - "y": -2988.080458510754, - "rotation": 0.2794839211108923, - "action": "CARVE_RIGHT" - }, - { - "x": -29.889116719290612, - "y": -2992.0545728496113, - "rotation": 0.33358912792271656, - "action": "CARVE_RIGHT" - }, - { - "x": -28.709395380759673, - "y": -2995.8797294856035, - "rotation": 0.3876943347345408, - "action": "CARVE_RIGHT" - }, - { - "x": -27.364059066165446, - "y": -2999.555114016083, - "rotation": 0.441799541546365, - "action": "CARVE_RIGHT" - }, - { - "x": -25.853092765021312, - "y": -3003.0799813439094, - "rotation": 0.49590474835818926, - "action": "CARVE_RIGHT" - }, - { - "x": -24.17655436093373, - "y": -3006.4536554751103, - "rotation": 0.5500099551700135, - "action": "CARVE_RIGHT" - }, - { - "x": -22.334574417496547, - "y": -3009.675529317096, - "rotation": 0.6041151619818377, - "action": "CARVE_RIGHT" - }, - { - "x": -20.327355964774593, - "y": -3012.7450644774262, - "rotation": 0.6582203687936619, - "action": "CARVE_RIGHT" - }, - { - "x": -18.155174286374947, - "y": -3015.661791063133, - "rotation": 0.712325575605486, - "action": "CARVE_RIGHT" - }, - { - "x": -15.818376707104376, - "y": -3018.42530748059, - "rotation": 0.7664307824173102, - "action": "CARVE_RIGHT" - }, - { - "x": -13.317382381211353, - "y": -3021.0352802359334, - "rotation": 0.8205359892291344, - "action": "CARVE_RIGHT" - }, - { - "x": -10.652682081211152, - "y": -3023.491443736027, - "rotation": 0.8746411960409586, - "action": "CARVE_RIGHT" - }, - { - "x": -7.824837987292442, - "y": -3025.7936000899786, - "rotation": 0.9287464028527828, - "action": "CARVE_RIGHT" - }, - { - "x": -4.834483477303863, - "y": -3027.9416189111967, - "rotation": 0.9828516096646069, - "action": "CARVE_RIGHT" - }, - { - "x": -1.6823229173190568, - "y": -3029.9354371199925, - "rotation": 1.0369568164764311, - "action": "CARVE_RIGHT" - }, - { - "x": 1.6308685472213966, - "y": -3031.7750587467235, - "rotation": 1.0910620232882553, - "action": "CARVE_RIGHT" - }, - { - "x": 5.104245199792645, - "y": -3033.4605547354763, - "rotation": 1.1451672301000795, - "action": "CARVE_RIGHT" - }, - { - "x": 8.73689096049436, - "y": -3034.99206274829, - "rotation": 1.1992724369119037, - "action": "CARVE_RIGHT" - }, - { - "x": 12.527819593187171, - "y": -3036.369786969917, - "rotation": 1.2533776437237278, - "action": "CARVE_RIGHT" - }, - { - "x": 16.475974912058273, - "y": -3037.593997913119, - "rotation": 1.307482850535552, - "action": "CARVE_RIGHT" - }, - { - "x": 20.580230987617682, - "y": -3038.665032224497, - "rotation": 1.3615880573473762, - "action": "CARVE_RIGHT" - }, - { - "x": 24.83939235212668, - "y": -3039.583292490858, - "rotation": 1.4156932641592004, - "action": "CARVE_RIGHT" - }, - { - "x": 29.252194204459936, - "y": -3040.3492470461106, - "rotation": 1.4697984709710246, - "action": "CARVE_RIGHT" - }, - { - "x": 33.81730261440277, - "y": -3040.96342977869, - "rotation": 1.5239036777828487, - "action": "NOTHING" - }, - { - "x": 38.867597103400676, - "y": -3041.1183892200584, - "rotation": 1.52041301927886, - "action": "NOTHING" - }, - { - "x": 43.89596285647039, - "y": -3041.2837447407237, - "rotation": 1.5169223607748714, - "action": "NOTHING" - }, - { - "x": 48.902518675288086, - "y": -3041.459454804074, - "rotation": 1.5134317022708828, - "action": "NOTHING" - }, - { - "x": 53.88738271221189, - "y": -3041.6454783240943, - "rotation": 1.509941043766894, - "action": "NOTHING" - }, - { - "x": 58.850672472071075, - "y": -3041.8417746640416, - "rotation": 1.5064503852629054, - "action": "CARVE_LEFT" - }, - { - "x": 63.14851898473503, - "y": -3042.64456347699, - "rotation": 1.4523451784510812, - "action": "CARVE_LEFT" - }, - { - "x": 67.2785422014377, - "y": -3043.593830131267, - "rotation": 1.398239971639257, - "action": "CARVE_LEFT" - }, - { - "x": 71.24195694910469, - "y": -3044.6891927314796, - "rotation": 1.3441347648274329, - "action": "CARVE_LEFT" - }, - { - "x": 75.03990212858776, - "y": -3045.9303380496754, - "rotation": 1.2900295580156087, - "action": "CARVE_LEFT" - }, - { - "x": 78.67344093630412, - "y": -3047.3170213237204, - "rotation": 1.2359243512037845, - "action": "CARVE_LEFT" - }, - { - "x": 82.14356108526798, - "y": -3048.8490660562265, - "rotation": 1.1818191443919603, - "action": "CARVE_LEFT" - }, - { - "x": 85.45117502551598, - "y": -3050.5263638140336, - "rotation": 1.1277139375801362, - "action": "CARVE_LEFT" - }, - { - "x": 88.5971201639281, - "y": -3052.3488740282446, - "rotation": 1.073608730768312, - "action": "CARVE_LEFT" - }, - { - "x": 91.58215908344555, - "y": -3054.31662379481, - "rotation": 1.0195035239564878, - "action": "CARVE_LEFT" - }, - { - "x": 94.40697976168742, - "y": -3056.429707675661, - "rotation": 0.9653983171446636, - "action": "CARVE_LEFT" - }, - { - "x": 97.07219578896752, - "y": -3058.688287500392, - "rotation": 0.9112931103328394, - "action": "CARVE_LEFT" - }, - { - "x": 99.57834658571299, - "y": -3061.092592168486, - "rotation": 0.8571879035210153, - "action": "SLIDE_LEFT" - }, - { - "x": 101.08925240506213, - "y": -3064.355522280074, - "rotation": 0.7856294041892478, - "action": "SLIDE_LEFT" - }, - { - "x": 102.44433289747901, - "y": -3067.7009324596306, - "rotation": 0.7140709048574803, - "action": "SLIDE_LEFT" - }, - { - "x": 103.6475264990884, - "y": -3071.12626863952, - "rotation": 0.6425124055257128, - "action": "SLIDE_LEFT" - }, - { - "x": 104.7026743163047, - "y": -3074.629064468416, - "rotation": 0.5709539061939453, - "action": "SLIDE_LEFT" - }, - { - "x": 105.61352041076111, - "y": -3078.2069410527693, - "rotation": 0.49939540686217776, - "action": "SLIDE_LEFT" - }, - { - "x": 106.38371208345627, - "y": -3081.857606698984, - "rotation": 0.42783690753041026, - "action": "SLIDE_LEFT" - }, - { - "x": 107.01680015812022, - "y": -3085.5788566563074, - "rotation": 0.35627840819864276, - "action": "SLIDE_LEFT" - }, - { - "x": 107.51623926380192, - "y": -3089.368572860428, - "rotation": 0.28471990886687526, - "action": "CARVE_LEFT" - }, - { - "x": 108.12415756562685, - "y": -3093.065707521349, - "rotation": 0.23061470205505105, - "action": "CARVE_LEFT" - }, - { - "x": 108.59038617622406, - "y": -3096.9026045343358, - "rotation": 0.17650949524322684, - "action": "CARVE_LEFT" - }, - { - "x": 108.9144047290983, - "y": -3100.8804502035246, - "rotation": 0.12240428843140264, - "action": "CARVE_LEFT" - }, - { - "x": 109.09562203394887, - "y": -3105.000494860786, - "rotation": 0.06829908161957843, - "action": "CARVE_LEFT" - }, - { - "x": 109.13337628425732, - "y": -3109.2640526769246, - "rotation": 0.014193874807754213, - "action": "CARVE_LEFT" - }, - { - "x": 109.02696161962152, - "y": -3113.474345726146, - "rotation": 6.243273975175517, - "action": "CARVE_LEFT" - }, - { - "x": 108.77573110397287, - "y": -3117.56011370057, - "rotation": 6.189168768363692, - "action": "CARVE_LEFT" - }, - { - "x": 108.3791125805243, - "y": -3121.5200824519725, - "rotation": 6.135063561551868, - "action": "CARVE_LEFT" - }, - { - "x": 107.83660845242822, - "y": -3125.3530485067326, - "rotation": 6.080958354740043, - "action": "CARVE_LEFT" - }, - { - "x": 107.1477954640377, - "y": -3129.057878859693, - "rotation": 6.026853147928219, - "action": "CARVE_LEFT" - }, - { - "x": 106.31232448276927, - "y": -3132.6335107685863, - "rotation": 5.972747941116395, - "action": "CARVE_LEFT" - }, - { - "x": 105.32992028156565, - "y": -3136.078951549025, - "rotation": 5.91864273430457, - "action": "CARVE_LEFT" - }, - { - "x": 104.20038132195693, - "y": -3139.3932783700534, - "rotation": 5.864537527492746, - "action": "CARVE_LEFT" - }, - { - "x": 102.92357953771857, - "y": -3142.5756380502585, - "rotation": 5.810432320680921, - "action": "CARVE_LEFT" - }, - { - "x": 101.49946011912463, - "y": -3145.6252468544426, - "rotation": 5.756327113869097, - "action": "CARVE_LEFT" - }, - { - "x": 99.92804129779473, - "y": -3148.5413902908517, - "rotation": 5.702221907057273, - "action": "CARVE_LEFT" - }, - { - "x": 98.20941413213303, - "y": -3151.32342290896, - "rotation": 5.648116700245448, - "action": "CARVE_LEFT" - }, - { - "x": 96.34374229335788, - "y": -3153.970768097809, - "rotation": 5.594011493433624, - "action": "CARVE_LEFT" - }, - { - "x": 94.33126185212033, - "y": -3156.482917884901, - "rotation": 5.539906286621799, - "action": "CARVE_LEFT" - }, - { - "x": 92.17228106571022, - "y": -3158.859432735642, - "rotation": 5.485801079809975, - "action": "CARVE_LEFT" - }, - { - "x": 89.867180165848, - "y": -3161.0999413533377, - "rotation": 5.431695872998151, - "action": "CARVE_LEFT" - }, - { - "x": 87.41641114706096, - "y": -3163.2041404797355, - "rotation": 5.377590666186326, - "action": "CARVE_LEFT" - }, - { - "x": 84.82049755564226, - "y": -3165.171794696116, - "rotation": 5.323485459374502, - "action": "CARVE_LEFT" - }, - { - "x": 82.0800342791912, - "y": -3167.0027362249293, - "rotation": 5.269380252562677, - "action": "CARVE_LEFT" - }, - { - "x": 79.19568733673312, - "y": -3168.6968647319745, - "rotation": 5.215275045750853, - "action": "CARVE_LEFT" - }, - { - "x": 76.1681936694176, - "y": -3170.2541471291265, - "rotation": 5.161169838939029, - "action": "CARVE_LEFT" - }, - { - "x": 72.99836093179331, - "y": -3171.6746173775987, - "rotation": 5.107064632127204, - "action": "CARVE_LEFT" - }, - { - "x": 69.68706728365783, - "y": -3172.958376291751, - "rotation": 5.05295942531538, - "action": "CARVE_LEFT" - }, - { - "x": 66.23526118248125, - "y": -3174.1055913434325, - "rotation": 4.998854218503555, - "action": "CARVE_LEFT" - }, - { - "x": 62.64396117640181, - "y": -3175.116496466864, - "rotation": 4.944749011691731, - "action": "CARVE_LEFT" - }, - { - "x": 58.914255697792065, - "y": -3175.991391864057, - "rotation": 4.890643804879907, - "action": "CARVE_LEFT" - }, - { - "x": 55.04730285739419, - "y": -3176.730643810762, - "rotation": 4.836538598068082, - "action": "CARVE_LEFT" - }, - { - "x": 51.04433023902282, - "y": -3177.334684462959, - "rotation": 4.782433391256258, - "action": "NOTHING" - }, - { - "x": 46.6156783276371, - "y": -3177.536077620169, - "rotation": 4.785924049760246, - "action": "NOTHING" - }, - { - "x": 42.20601392435397, - "y": -3177.746617168615, - "rotation": 4.789414708264235, - "action": "NOTHING" - }, - { - "x": 37.81522971290601, - "y": -3177.9662689642455, - "rotation": 4.792905366768223, - "action": "NOTHING" - }, - { - "x": 33.44321899331208, - "y": -3178.1949992901546, - "rotation": 4.7963960252722115, - "action": "NOTHING" - }, - { - "x": 29.089875680177876, - "y": -3178.4327748553237, - "rotation": 4.7998866837762, - "action": "NOTHING" - }, - { - "x": 24.755094301000973, - "y": -3178.679562793367, - "rotation": 4.803377342280188, - "action": "NOTHING" - }, - { - "x": 20.438769994480353, - "y": -3178.9353306612807, - "rotation": 4.806868000784177, - "action": "NOTHING" - }, - { - "x": 16.140798508830414, - "y": -3179.200046438195, - "rotation": 4.810358659288165, - "action": "NOTHING" - }, - { - "x": 11.861076200099419, - "y": -3179.4736785241307, - "rotation": 4.813849317792154, - "action": "NOTHING" - }, - { - "x": 7.599500030492416, - "y": -3179.7561957387584, - "rotation": 4.817339976296142, - "action": "NOTHING" - }, - { - "x": 3.3559675666985767, - "y": -3180.047567320161, - "rotation": 4.820830634800131, - "action": "NOTHING" - }, - { - "x": -0.8696230217770244, - "y": -3180.3477629235995, - "rotation": 4.824321293304119, - "action": "NOTHING" - }, - { - "x": -5.077372964277227, - "y": -3180.656752620284, - "rotation": 4.8278119518081075, - "action": "NOTHING" - }, - { - "x": -9.267382890652193, - "y": -3180.974506896145, - "rotation": 4.831302610312096, - "action": "CARVE_RIGHT" - }, - { - "x": -12.891357947633763, - "y": -3181.8087459102385, - "rotation": 4.885374234493269, - "action": "CARVE_RIGHT" - }, - { - "x": -16.369677215225497, - "y": -3182.7709681129945, - "rotation": 4.939347675471649, - "action": "CARVE_RIGHT" - }, - { - "x": -19.703616722462343, - "y": -3183.86072752557, - "rotation": 4.993232444676229, - "action": "CARVE_RIGHT" - }, - { - "x": -22.894351405739958, - "y": -3185.0776690964717, - "rotation": 5.047038017339607, - "action": "CARVE_RIGHT" - }, - { - "x": -25.94295600226291, - "y": -3186.4215280063945, - "rotation": 5.100773834209465, - "action": "CARVE_RIGHT" - }, - { - "x": -28.850405872116, - "y": -3187.8921290384164, - "rotation": 5.1544493032503444, - "action": "CARVE_RIGHT" - }, - { - "x": -31.617577749772934, - "y": -3189.4893860128263, - "rotation": 5.208073801336026, - "action": "CARVE_RIGHT" - }, - { - "x": -34.245250425804905, - "y": -3191.2133012859017, - "rotation": 5.261656675932835, - "action": "CARVE_RIGHT" - }, - { - "x": -36.73410535950049, - "y": -3193.063965312, - "rotation": 5.315207246774186, - "action": "CARVE_RIGHT" - }, - { - "x": -39.08472722305814, - "y": -3195.0415562683747, - "rotation": 5.368734807526651, - "action": "CARVE_RIGHT" - }, - { - "x": -41.29760437796278, - "y": -3197.1463397421758, - "rotation": 5.422248627447888, - "action": "CARVE_RIGHT" - }, - { - "x": -43.37312928410903, - "y": -3199.3786684791344, - "rotation": 5.475757953036713, - "action": "CARVE_RIGHT" - }, - { - "x": -45.311598842185234, - "y": -3201.738982193483, - "rotation": 5.52927200967562, - "action": "CARVE_RIGHT" - }, - { - "x": -47.113214669784476, - "y": -3204.227807438696, - "rotation": 5.582800003266053, - "action": "CARVE_RIGHT" - }, - { - "x": -48.778083311661554, - "y": -3206.845757538691, - "rotation": 5.636351121856725, - "action": "CARVE_RIGHT" - }, - { - "x": -50.30621638450789, - "y": -3209.5935325791706, - "rotation": 5.689934537265283, - "action": "CARVE_RIGHT" - }, - { - "x": -51.697530656570095, - "y": -3212.471919458818, - "rotation": 5.743559406693603, - "action": "CARVE_RIGHT" - }, - { - "x": -52.95184806239174, - "y": -3215.4817920001174, - "rotation": 5.79723487433702, - "action": "CARVE_RIGHT" - }, - { - "x": -54.06889565291243, - "y": -3218.6241111196045, - "rotation": 5.850970072987779, - "action": "CARVE_RIGHT" - }, - { - "x": -55.04830548111291, - "y": -3221.899925057388, - "rotation": 5.9047741256329855, - "action": "CARVE_RIGHT" - }, - { - "x": -55.88961442335005, - "y": -3225.3103696658395, - "rotation": 5.958656147047363, - "action": "CARVE_RIGHT" - }, - { - "x": -56.59226393648084, - "y": -3228.856668757377, - "rotation": 6.012625245381086, - "action": "CARVE_RIGHT" - }, - { - "x": -57.155599750830284, - "y": -3232.5401345113146, - "rotation": 6.066690523742977, - "action": "CARVE_RIGHT" - }, - { - "x": -57.579041819100645, - "y": -3236.3620093623235, - "rotation": 6.120795730554802, - "action": "CARVE_RIGHT" - }, - { - "x": -57.86204283920357, - "y": -3240.3235038736584, - "rotation": 6.174900937366626, - "action": "CARVE_RIGHT" - }, - { - "x": -58.00398476726149, - "y": -3244.425892561866, - "rotation": 6.2290061441784506, - "action": "CARVE_RIGHT" - }, - { - "x": -58.004179024964806, - "y": -3248.670513708195, - "rotation": 6.283111350990275, - "action": "CARVE_RIGHT" - }, - { - "x": -57.86191500843992, - "y": -3252.7938278746965, - "rotation": 0.05403125062251313, - "action": "CARVE_RIGHT" - }, - { - "x": -57.57655701661714, - "y": -3256.794140853444, - "rotation": 0.10813645743433734, - "action": "CARVE_RIGHT" - }, - { - "x": -57.14754409780274, - "y": -3260.670189026273, - "rotation": 0.16224166424616154, - "action": "CARVE_RIGHT" - }, - { - "x": -56.5743898304142, - "y": -3264.420779421662, - "rotation": 0.21634687105798575, - "action": "CARVE_RIGHT" - }, - { - "x": -55.85668210431841, - "y": -3268.044789508666, - "rotation": 0.27045207786980996, - "action": "CARVE_RIGHT" - }, - { - "x": -54.994082902771225, - "y": -3271.541166991414, - "rotation": 0.3245572846816342, - "action": "CARVE_RIGHT" - }, - { - "x": -53.98632808495688, - "y": -3274.9089296041707, - "rotation": 0.37866249149345843, - "action": "CARVE_RIGHT" - }, - { - "x": -52.83322716912557, - "y": -3278.14716490696, - "rotation": 0.43276769830528267, - "action": "CARVE_RIGHT" - }, - { - "x": -51.534663116327664, - "y": -3281.255030081748, - "rotation": 0.4868729051171069, - "action": "CARVE_RIGHT" - }, - { - "x": -50.09059211474303, - "y": -3284.231751729185, - "rotation": 0.5409781119289311, - "action": "CARVE_RIGHT" - }, - { - "x": -48.50104336460379, - "y": -3287.076625665906, - "rotation": 0.5950833187407553, - "action": "CARVE_RIGHT" - }, - { - "x": -46.766118863709025, - "y": -3289.7890167223854, - "rotation": 0.6491885255525794, - "action": "CARVE_RIGHT" - }, - { - "x": -44.885993193529835, - "y": -3292.368358541349, - "rotation": 0.7032937323644036, - "action": "CARVE_RIGHT" - }, - { - "x": -42.86091330590319, - "y": -3294.8141533767343, - "rotation": 0.7573989391762278, - "action": "CARVE_RIGHT" - }, - { - "x": -40.69119831031303, - "y": -3297.1259718932065, - "rotation": 0.811504145988052, - "action": "CARVE_RIGHT" - }, - { - "x": -38.37723926175704, - "y": -3299.303452966223, - "rotation": 0.8656093527998762, - "action": "CARVE_RIGHT" - }, - { - "x": -35.919498949197596, - "y": -3301.346303482647, - "rotation": 0.9197145596117003, - "action": "CARVE_RIGHT" - }, - { - "x": -33.31851168459527, - "y": -3303.254298141905, - "rotation": 0.9738197664235245, - "action": "CARVE_RIGHT" - }, - { - "x": -30.574883092523457, - "y": -3305.027279257698, - "rotation": 1.0279249732353488, - "action": "NOTHING" - }, - { - "x": -27.53829806620761, - "y": -3306.5268193063994, - "rotation": 1.0244343147313602, - "action": "NOTHING" - }, - { - "x": -24.513557606397967, - "y": -3308.0351929107596, - "rotation": 1.0209436562273715, - "action": "NOTHING" - }, - { - "x": -21.500615542334355, - "y": -3309.55240868074, - "rotation": 1.0174529977233828, - "action": "NOTHING" - }, - { - "x": -18.499426151826682, - "y": -3311.0784755286504, - "rotation": 1.0139623392193942, - "action": "NOTHING" - }, - { - "x": -15.509944159997497, - "y": -3312.613402668235, - "rotation": 1.0104716807154055, - "action": "NOTHING" - }, - { - "x": -12.53212473802791, - "y": -3314.1571996137573, - "rotation": 1.0069810222114168, - "action": "NOTHING" - }, - { - "x": -9.56592350190687, - "y": -3315.7098761790917, - "rotation": 1.0034903637074282, - "action": "NOTHING" - }, - { - "x": -6.61129651118377, - "y": -3317.2714424768137, - "rotation": 0.9999997052034395, - "action": "NOTHING" - }, - { - "x": -3.6682002677244125, - "y": -3318.841908917295, - "rotation": 0.9965090466994508, - "action": "NOTHING" - }, - { - "x": -0.7365917144702823, - "y": -3320.4212862078, - "rotation": 0.9930183881954622, - "action": "NOTHING" - }, - { - "x": 2.1835717657988547, - "y": -3322.0095853515877, - "rotation": 0.9895277296914735, - "action": "NOTHING" - }, - { - "x": 5.092332351699042, - "y": -3323.6068176470103, - "rotation": 0.9860370711874848, - "action": "NOTHING" - }, - { - "x": 7.989731784472927, - "y": -3325.2129946866203, - "rotation": 0.9825464126834962, - "action": "NOTHING" - }, - { - "x": 10.875811369217255, - "y": -3326.828128356277, - "rotation": 0.9790557541795075, - "action": "NOTHING" - }, - { - "x": 13.750611976107088, - "y": -3328.452230834256, - "rotation": 0.9755650956755189, - "action": "NOTHING" - }, - { - "x": 16.61417404161674, - "y": -3330.0853145903616, - "rotation": 0.9720744371715302, - "action": "NOTHING" - }, - { - "x": 19.466537569737447, - "y": -3331.7273923850407, - "rotation": 0.9685837786675415, - "action": "NOTHING" - }, - { - "x": 22.30774213319179, - "y": -3333.378477268501, - "rotation": 0.9650931201635529, - "action": "NOTHING" - }, - { - "x": 25.137826874644848, - "y": -3335.038582579829, - "rotation": 0.9616024616595642, - "action": "NOTHING" - }, - { - "x": 27.956830507912116, - "y": -3336.7077219461144, - "rotation": 0.9581118031555755, - "action": "NOTHING" - }, - { - "x": 30.764791319164203, - "y": -3338.385909281573, - "rotation": 0.9546211446515869, - "action": "NOTHING" - }, - { - "x": 33.56174716812829, - "y": -3340.0731587866735, - "rotation": 0.9511304861475982, - "action": "NOTHING" - }, - { - "x": 36.347735489286386, - "y": -3341.7694849472678, - "rotation": 0.9476398276436095, - "action": "NOTHING" - }, - { - "x": 39.12279329307033, - "y": -3343.4749025337223, - "rotation": 0.9441491691396209, - "action": "NOTHING" - }, - { - "x": 41.88695716705368, - "y": -3345.189426600053, - "rotation": 0.9406585106356322, - "action": "NOTHING" - }, - { - "x": 44.64026327714032, - "y": -3346.913072483061, - "rotation": 0.9371678521316436, - "action": "NOTHING" - }, - { - "x": 47.382747368749946, - "y": -3348.645855801473, - "rotation": 0.9336771936276549, - "action": "NOTHING" - }, - { - "x": 50.11444476800033, - "y": -3350.387792455081, - "rotation": 0.9301865351236662, - "action": "NOTHING" - }, - { - "x": 52.83539038288647, - "y": -3352.1388986238894, - "rotation": 0.9266958766196776, - "action": "NOTHING" - }, - { - "x": 55.54561870445652, - "y": -3353.899190767258, - "rotation": 0.9232052181156889, - "action": "NOTHING" - }, - { - "x": 58.24516380798463, - "y": -3355.6686856230535, - "rotation": 0.9197145596117002, - "action": "NOTHING" - }, - { - "x": 60.9340593541406, - "y": -3357.447400206799, - "rotation": 0.9162239011077116, - "action": "NOTHING" - }, - { - "x": 63.61233859015641, - "y": -3359.235351810829, - "rotation": 0.9127332426037229, - "action": "NOTHING" - }, - { - "x": 66.28003435098965, - "y": -3361.0325580034432, - "rotation": 0.9092425840997342, - "action": "NOTHING" - }, - { - "x": 68.93717906048379, - "y": -3362.8390366280673, - "rotation": 0.9057519255957456, - "action": "CARVE_LEFT" - }, - { - "x": 71.18550783375932, - "y": -3365.0235758938625, - "rotation": 0.8516467187839214, - "action": "CARVE_LEFT" - }, - { - "x": 73.29112427772857, - "y": -3367.3405079453323, - "rotation": 0.7975415119720972, - "action": "CARVE_LEFT" - }, - { - "x": 75.25434403919749, - "y": -3369.790263296421, - "rotation": 0.743436305160273, - "action": "CARVE_LEFT" - }, - { - "x": 77.07540949072829, - "y": -3372.3733387174802, - "rotation": 0.6893310983484489, - "action": "CARVE_LEFT" - }, - { - "x": 78.75448994496264, - "y": -3375.090297040319, - "rotation": 0.6352258915366247, - "action": "CARVE_LEFT" - }, - { - "x": 80.29168186835663, - "y": -3377.941766963792, - "rotation": 0.5811206847248005, - "action": "CARVE_LEFT" - }, - { - "x": 81.6870090943288, - "y": -3380.9284428599235, - "rotation": 0.5270154779129763, - "action": "CARVE_LEFT" - }, - { - "x": 82.9404230358229, - "y": -3384.051084580565, - "rotation": 0.4729102711011521, - "action": "CARVE_LEFT" - }, - { - "x": 84.05180289728699, - "y": -3387.310517264586, - "rotation": 0.41880506428932784, - "action": "CARVE_LEFT" - }, - { - "x": 85.02095588607028, - "y": -3390.7076311455953, - "rotation": 0.3646998574775036, - "action": "CARVE_LEFT" - }, - { - "x": 85.84761742323936, - "y": -3394.2433813601942, - "rotation": 0.3105946506656794, - "action": "CARVE_LEFT" - }, - { - "x": 86.53145135381521, - "y": -3397.9187877567565, - "rotation": 0.25648944385385514, - "action": "CARVE_LEFT" - }, - { - "x": 87.0720501564328, - "y": -3401.7349347047375, - "rotation": 0.20238423704203093, - "action": "CARVE_LEFT" - }, - { - "x": 87.46893515242436, - "y": -3405.692970904506, - "rotation": 0.14827903023020672, - "action": "CARVE_LEFT" - }, - { - "x": 87.72155671432839, - "y": -3409.7941091977054, - "rotation": 0.09417382341838251, - "action": "CARVE_LEFT" - }, - { - "x": 87.82929447382531, - "y": -3414.0396263781317, - "rotation": 0.0400686166065583, - "action": "CARVE_LEFT" - }, - { - "x": 87.79146078896261, - "y": -3418.3604222945987, - "rotation": 6.26914871697432, - "action": "CARVE_LEFT" - }, - { - "x": 87.60738052702638, - "y": -3422.55561090542, - "rotation": 6.215043510162496, - "action": "CARVE_LEFT" - }, - { - "x": 87.27645341447955, - "y": -3426.623891494811, - "rotation": 6.1609383033506715, - "action": "CARVE_LEFT" - }, - { - "x": 86.7981538174048, - "y": -3430.564034096539, - "rotation": 6.106833096538847, - "action": "CARVE_LEFT" - }, - { - "x": 86.17203052255127, - "y": -3434.374879287589, - "rotation": 6.052727889727023, - "action": "CARVE_LEFT" - }, - { - "x": 85.39770651898336, - "y": -3438.055337982383, - "rotation": 5.998622682915198, - "action": "CARVE_LEFT" - }, - { - "x": 84.47487878033007, - "y": -3441.604391227574, - "rotation": 5.944517476103374, - "action": "CARVE_LEFT" - }, - { - "x": 83.40331804763339, - "y": -3445.0210899973963, - "rotation": 5.8904122692915495, - "action": "CARVE_LEFT" - }, - { - "x": 82.18286861279395, - "y": -3448.304554989579, - "rotation": 5.836307062479725, - "action": "CARVE_LEFT" - }, - { - "x": 80.81344810261255, - "y": -3451.453976421818, - "rotation": 5.782201855667901, - "action": "CARVE_LEFT" - }, - { - "x": 79.29504726342596, - "y": -3454.468613828807, - "rotation": 5.728096648856076, - "action": "CARVE_LEFT" - }, - { - "x": 77.62772974633522, - "y": -3457.3477958598255, - "rotation": 5.673991442044252, - "action": "CARVE_LEFT" - }, - { - "x": 75.81163189302525, - "y": -3460.0909200768792, - "rotation": 5.6198862352324275, - "action": "NOTHING" - }, - { - "x": 73.80325562958662, - "y": -3462.6584534084104, - "rotation": 5.623376893736416, - "action": "NOTHING" - }, - { - "x": 71.80438270943539, - "y": -3465.2372720996573, - "rotation": 5.626867552240404, - "action": "NOTHING" - }, - { - "x": 69.81500657366722, - "y": -3467.827411275098, - "rotation": 5.630358210744393, - "action": "NOTHING" - }, - { - "x": 67.83512100046396, - "y": -3470.428906280692, - "rotation": 5.633848869248381, - "action": "NOTHING" - }, - { - "x": 65.86472010413495, - "y": -3473.041792683194, - "rotation": 5.63733952775237, - "action": "NOTHING" - }, - { - "x": 63.903798334161024, - "y": -3475.6661062694666, - "rotation": 5.640830186256358, - "action": "NOTHING" - }, - { - "x": 61.95235047424102, - "y": -3478.3018830457945, - "rotation": 5.644320844760347, - "action": "NOTHING" - }, - { - "x": 60.01037164134088, - "y": -3480.949159237204, - "rotation": 5.647811503264335, - "action": "NOTHING" - }, - { - "x": 58.07785728474534, - "y": -3483.6079712867827, - "rotation": 5.6513021617683235, - "action": "NOTHING" - }, - { - "x": 56.15480318511215, - "y": -3486.278355854999, - "rotation": 5.654792820272312, - "action": "NOTHING" - }, - { - "x": 54.241205453528856, - "y": -3488.960349819028, - "rotation": 5.6582834787763, - "action": "NOTHING" - }, - { - "x": 52.33706053057214, - "y": -3491.653990272075, - "rotation": 5.661774137280289, - "action": "NOTHING" - }, - { - "x": 50.442365185369674, - "y": -3494.3593145227037, - "rotation": 5.665264795784277, - "action": "NOTHING" - }, - { - "x": 48.55711651466454, - "y": -3497.076360094165, - "rotation": 5.668755454288266, - "action": "NOTHING" - }, - { - "x": 46.681311941882164, - "y": -3499.8051647237285, - "rotation": 5.672246112792254, - "action": "NOTHING" - }, - { - "x": 44.814949216199736, - "y": -3502.5457663620145, - "rotation": 5.6757367712962425, - "action": "NOTHING" - }, - { - "x": 42.9580264116182, - "y": -3505.2982031723313, - "rotation": 5.679227429800231, - "action": "NOTHING" - }, - { - "x": 41.11054192603672, - "y": -3508.062513530009, - "rotation": 5.682718088304219, - "action": "NOTHING" - }, - { - "x": 39.27249448032963, - "y": -3510.838736021739, - "rotation": 5.686208746808208, - "action": "NOTHING" - }, - { - "x": 37.44388311742592, - "y": -3513.6269094449167, - "rotation": 5.689699405312196, - "action": "NOTHING" - }, - { - "x": 35.62470720139119, - "y": -3516.4270728069814, - "rotation": 5.693190063816185, - "action": "NOTHING" - }, - { - "x": 33.81496641651206, - "y": -3519.2392653247616, - "rotation": 5.696680722320173, - "action": "CARVE_RIGHT" - }, - { - "x": 32.33536373994009, - "y": -3522.3604502882263, - "rotation": 5.750785929131998, - "action": "CARVE_RIGHT" - }, - { - "x": 31.00493473731239, - "y": -3525.623784089435, - "rotation": 5.804891135943822, - "action": "CARVE_RIGHT" - }, - { - "x": 29.823761386666654, - "y": -3529.030057112167, - "rotation": 5.858996342755646, - "action": "CARVE_RIGHT" - }, - { - "x": 28.791997788193065, - "y": -3532.580124948121, - "rotation": 5.913101549567471, - "action": "CARVE_RIGHT" - }, - { - "x": 27.909869953055725, - "y": -3536.2749082048363, - "rotation": 5.967206756379295, - "action": "CARVE_RIGHT" - }, - { - "x": 27.177675592794202, - "y": -3540.1153923141455, - "rotation": 6.02131196319112, - "action": "NOTHING" - }, - { - "x": 26.373619510543648, - "y": -3543.896942897858, - "rotation": 6.024802621695108, - "action": "NOTHING" - }, - { - "x": 25.579087893520043, - "y": -3547.694947472163, - "rotation": 6.0282932801990965, - "action": "NOTHING" - }, - { - "x": 24.794112226940147, - "y": -3551.509465059615, - "rotation": 6.031783938703085, - "action": "NOTHING" - }, - { - "x": 24.01872422228251, - "y": -3555.340554826557, - "rotation": 6.035274597207073, - "action": "NOTHING" - }, - { - "x": 23.252955816632344, - "y": -3559.1882760826575, - "rotation": 6.038765255711062, - "action": "NOTHING" - }, - { - "x": 22.496839172028153, - "y": -3563.0526882804525, - "rotation": 6.04225591421505, - "action": "NOTHING" - }, - { - "x": 21.75040667481018, - "y": -3566.9338510148837, - "rotation": 6.045746572719039, - "action": "NOTHING" - }, - { - "x": 21.013690934970594, - "y": -3570.831824022841, - "rotation": 6.049237231223027, - "action": "NOTHING" - }, - { - "x": 20.286724785505495, - "y": -3574.7466671827065, - "rotation": 6.052727889727016, - "action": "NOTHING" - }, - { - "x": 19.56954128176865, - "y": -3578.6784405138983, - "rotation": 6.056218548231004, - "action": "NOTHING" - }, - { - "x": 18.86217370082701, - "y": -3582.627204176417, - "rotation": 6.0597092067349925, - "action": "NOTHING" - }, - { - "x": 18.16465554081799, - "y": -3586.5930184703925, - "rotation": 6.063199865238981, - "action": "NOTHING" - }, - { - "x": 17.477020520308486, - "y": -3590.5759438356326, - "rotation": 6.066690523742969, - "action": "NOTHING" - }, - { - "x": 16.799302577655666, - "y": -3594.5760408511733, - "rotation": 6.070181182246958, - "action": "NOTHING" - }, - { - "x": 16.13153587036949, - "y": -3598.5933702348293, - "rotation": 6.073671840750946, - "action": "NOTHING" - }, - { - "x": 15.473754774476975, - "y": -3602.6279928427475, - "rotation": 6.077162499254935, - "action": "NOTHING" - }, - { - "x": 14.825993883888199, - "y": -3606.6799696689595, - "rotation": 6.080653157758923, - "action": "NOTHING" - }, - { - "x": 14.188288009764038, - "y": -3610.749361844937, - "rotation": 6.084143816262912, - "action": "NOTHING" - }, - { - "x": 13.560672179885625, - "y": -3614.8362306391496, - "rotation": 6.0876344747669, - "action": "NOTHING" - }, - { - "x": 12.943181638025532, - "y": -3618.9406374566197, - "rotation": 6.0911251332708884, - "action": "NOTHING" - }, - { - "x": 12.33585184332068, - "y": -3623.0626438384843, - "rotation": 6.094615791774877, - "action": "NOTHING" - }, - { - "x": 11.738718469646953, - "y": -3627.2023114615527, - "rotation": 6.098106450278865, - "action": "NOTHING" - }, - { - "x": 11.151817404995521, - "y": -3631.3597021378696, - "rotation": 6.101597108782854, - "action": "NOTHING" - }, - { - "x": 10.575184750850877, - "y": -3635.534877814278, - "rotation": 6.105087767286842, - "action": "NOTHING" - }, - { - "x": 10.00885682157056, - "y": -3639.7279005719815, - "rotation": 6.108578425790831, - "action": "NOTHING" - }, - { - "x": 9.452870143766598, - "y": -3643.9388326261114, - "rotation": 6.112069084294819, - "action": "NOTHING" - }, - { - "x": 8.90726145568861, - "y": -3648.1677363252925, - "rotation": 6.1155597427988075, - "action": "NOTHING" - }, - { - "x": 8.372067706608622, - "y": -3652.4146741512104, - "rotation": 6.119050401302796, - "action": "NOTHING" - }, - { - "x": 7.847326056207547, - "y": -3656.6797087181817, - "rotation": 6.122541059806784, - "action": "NOTHING" - }, - { - "x": 7.333073873963361, - "y": -3660.962902772723, - "rotation": 6.126031718310773, - "action": "NOTHING" - }, - { - "x": 6.829348738540936, - "y": -3665.2643191931234, - "rotation": 6.129522376814761, - "action": "NOTHING" - }, - { - "x": 6.336188437183554, - "y": -3669.5840209890175, - "rotation": 6.13301303531875, - "action": "NOTHING" - }, - { - "x": 5.853630965106077, - "y": -3673.9220713009586, - "rotation": 6.136503693822738, - "action": "NOTHING" - }, - { - "x": 5.381714524889784, - "y": -3678.2785333999946, - "rotation": 6.139994352326727, - "action": "NOTHING" - }, - { - "x": 4.920477525878862, - "y": -3682.653470687244, - "rotation": 6.143485010830715, - "action": "NOTHING" - }, - { - "x": 4.46995858357855, - "y": -3687.0469466934737, - "rotation": 6.1469756693347035, - "action": "NOTHING" - }, - { - "x": 4.030196519054925, - "y": -3691.459025078679, - "rotation": 6.150466327838692, - "action": "NOTHING" - }, - { "x": 3.60123035833634, "y": -3695.889769631663, "rotation": 6.15395698634268, "action": "NOTHING" }, - { - "x": 3.183099331816492, - "y": -3700.3392442696177, - "rotation": 6.157447644846669, - "action": "NOTHING" - }, - { - "x": 2.7758428736591325, - "y": -3704.8075130377065, - "rotation": 6.160938303350657, - "action": "CARVE_RIGHT" - }, - { - "x": 2.5711665755008237, - "y": -3709.4720852515165, - "rotation": 6.215043510162482, - "action": "CARVE_RIGHT" - }, - { - "x": 2.5289231844329323, - "y": -3714.296491657767, - "rotation": 6.269148716974306, - "action": "CARVE_RIGHT" - }, - { - "x": 2.6497352142240143, - "y": -3719.057213901068, - "rotation": 0.04006861660654426, - "action": "CARVE_RIGHT" - }, - { - "x": 2.934166315117375, - "y": -3723.674758305666, - "rotation": 0.09417382341836847, - "action": "CARVE_RIGHT" - }, - { - "x": 3.3827056328120237, - "y": -3728.147930318681, - "rotation": 0.14827903023019268, - "action": "CARVE_RIGHT" - }, - { - "x": 3.995768026998919, - "y": -3732.4756058021826, - "rotation": 0.20238423704201688, - "action": "CARVE_RIGHT" - }, - { - "x": 4.7736942892962615, - "y": -3736.6567308278068, - "rotation": 0.2564894438538411, - "action": "CARVE_RIGHT" - }, - { - "x": 5.716751360585411, - "y": -3740.6903214719396, - "rotation": 0.31059465066566533, - "action": "CARVE_RIGHT" - }, - { - "x": 6.825132547749019, - "y": -3744.575463611459, - "rotation": 0.36469985747748956, - "action": "CARVE_RIGHT" - }, - { - "x": 8.098957739812947, - "y": -3748.311312720037, - "rotation": 0.4188050642893138, - "action": "CARVE_RIGHT" - }, - { - "x": 9.538273623493556, - "y": -3751.8970936650026, - "rotation": 0.47291027110113804, - "action": "CARVE_RIGHT" - }, - { - "x": 11.14305389815192, - "y": -3755.332100504757, - "rotation": 0.5270154779129622, - "action": "CARVE_RIGHT" - }, - { - "x": 12.913199490156543, - "y": -3758.6156962867494, - "rotation": 0.5811206847247864, - "action": "CARVE_RIGHT" - }, - { - "x": 14.848538766656151, - "y": -3761.7473128460047, - "rotation": 0.6352258915366106, - "action": "CARVE_RIGHT" - }, - { - "x": 16.94882774876409, - "y": -3764.7264506042025, - "rotation": 0.6893310983484348, - "action": "CARVE_RIGHT" - }, - { - "x": 19.213750324155903, - "y": -3767.5526783693085, - "rotation": 0.7434363051602589, - "action": "CARVE_RIGHT" - }, - { - "x": 21.642918459081635, - "y": -3770.2256331357567, - "rotation": 0.7975415119720831, - "action": "CARVE_RIGHT" - }, - { - "x": 24.235872409794414, - "y": -3772.745019885177, - "rotation": 0.8516467187839073, - "action": "CARVE_RIGHT" - }, - { - "x": 26.99208093339683, - "y": -3775.1106113876726, - "rotation": 0.9057519255957315, - "action": "CARVE_RIGHT" - }, - { - "x": 29.910941498106695, - "y": -3777.3222480036407, - "rotation": 0.9598571324075557, - "action": "CARVE_RIGHT" - }, - { - "x": 32.99178049294365, - "y": -3779.3798374861362, - "rotation": 1.01396233921938, - "action": "CARVE_RIGHT" - }, - { - "x": 36.23385343683822, - "y": -3781.2833547837827, - "rotation": 1.0680675460312041, - "action": "NOTHING" - }, - { - "x": 39.82143807290413, - "y": -3782.8629295426067, - "rotation": 1.0645768875272155, - "action": "NOTHING" - }, - { - "x": 43.39436389537743, - "y": -3784.4521084917874, - "rotation": 1.0610862290232268, - "action": "NOTHING" - }, - { - "x": 46.95269023703144, - "y": -3786.0508920915663, - "rotation": 1.0575955705192381, - "action": "NOTHING" - }, - { - "x": 50.49647594344468, - "y": -3787.659281131415, - "rotation": 1.0541049120152495, - "action": "NOTHING" - }, - { - "x": 54.02577937436458, - "y": -3789.2772767290408, - "rotation": 1.0506142535112608, - "action": "NOTHING" - }, - { - "x": 57.540658405067525, - "y": -3790.9048803293963, - "rotation": 1.0471235950072721, - "action": "NOTHING" - }, - { - "x": 61.041170427715244, - "y": -3792.5420937036893, - "rotation": 1.0436329365032835, - "action": "NOTHING" - }, - { - "x": 64.5273723527076, - "y": -3794.1889189483963, - "rotation": 1.0401422779992948, - "action": "NOTHING" - }, - { - "x": 67.99932061003182, - "y": -3795.8453584842805, - "rotation": 1.0366516194953062, - "action": "NOTHING" - }, - { - "x": 71.45707115060794, - "y": -3797.5114150554086, - "rotation": 1.0331609609913175, - "action": "NOTHING" - }, - { - "x": 74.90067944763095, - "y": -3799.187091728176, - "rotation": 1.0296703024873288, - "action": "NOTHING" - }, - { - "x": 78.33020049790902, - "y": -3800.8723918903283, - "rotation": 1.0261796439833402, - "action": "NOTHING" - }, - { - "x": 81.74568882319842, - "y": -3802.5673192499917, - "rotation": 1.0226889854793515, - "action": "NOTHING" - }, - { - "x": 85.14719847153471, - "y": -3804.2718778347016, - "rotation": 1.0191983269753628, - "action": "NOTHING" - }, - { - "x": 88.53478301856045, - "y": -3805.9860719904354, - "rotation": 1.0157076684713742, - "action": "NOTHING" - }, - { - "x": 91.9084955688493, - "y": -3807.7099063806495, - "rotation": 1.0122170099673855, - "action": "NOTHING" - }, - { - "x": 95.2683887572267, - "y": -3809.443385985316, - "rotation": 1.0087263514633968, - "action": "NOTHING" - }, - { - "x": 98.61451475008684, - "y": -3811.1865160999655, - "rotation": 1.0052356929594082, - "action": "NOTHING" - }, - { - "x": 101.94692524670624, - "y": -3812.939302334729, - "rotation": 1.0017450344554195, - "action": "NOTHING" - }, - { - "x": 105.26567148055382, - "y": -3814.7017506133852, - "rotation": 0.9982543759514309, - "action": "NOTHING" - }, - { - "x": 108.57080422059738, - "y": -3816.473867172411, - "rotation": 0.9947637174474422, - "action": "NOTHING" - }, - { - "x": 111.86237377260666, - "y": -3818.25565856003, - "rotation": 0.9912730589434535, - "action": "NOTHING" - }, - { - "x": 115.14042998045286, - "y": -3820.0471316352705, - "rotation": 0.9877824004394649, - "action": "NOTHING" - }, - { - "x": 118.40502222740479, - "y": -3821.8482935670195, - "rotation": 0.9842917419354762, - "action": "CARVE_LEFT" - }, - { - "x": 121.18006806590387, - "y": -3824.0999908807858, - "rotation": 0.930186535123652, - "action": "CARVE_LEFT" - }, - { - "x": 123.79260615588593, - "y": -3826.500139382213, - "rotation": 0.8760813283118278, - "action": "CARVE_LEFT" - }, - { - "x": 126.24314185752628, - "y": -3829.0489989202365, - "rotation": 0.8219761215000037, - "action": "CARVE_LEFT" - }, - { - "x": 128.53210667250508, - "y": -3831.746896130181, - "rotation": 0.7678709146881795, - "action": "CARVE_LEFT" - }, - { - "x": 130.65985845998307, - "y": -3834.594224237307, - "rotation": 0.7137657078763553, - "action": "CARVE_LEFT" - }, - { - "x": 132.62668165198457, - "y": -3837.5914428608967, - "rotation": 0.6596605010645311, - "action": "CARVE_LEFT" - }, - { - "x": 134.43278746818905, - "y": -3840.7390778188787, - "rotation": 0.6055552942527069, - "action": "CARVE_LEFT" - }, - { - "x": 136.0783141301332, - "y": -3844.037720932994, - "rotation": 0.5514500874408828, - "action": "CARVE_LEFT" - }, - { - "x": 137.56332707482483, - "y": -3847.4880298344947, - "rotation": 0.4973448806290585, - "action": "CARVE_LEFT" - }, - { - "x": 138.88781916776995, - "y": -3851.090727770382, - "rotation": 0.4432396738172343, - "action": "CARVE_LEFT" - }, - { - "x": 140.05171091541513, - "y": -3854.8466034101752, - "rotation": 0.38913446700541005, - "action": "NOTHING" - }, - { - "x": 141.3347050017056, - "y": -3858.497409611829, - "rotation": 0.3856438085014214, - "action": "NOTHING" - }, - { - "x": 142.60746436062757, - "y": -3862.1629381215034, - "rotation": 0.3821531499974327, - "action": "NOTHING" - }, - { - "x": 143.8699729578321, - "y": -3865.843238911926, - "rotation": 0.37866249149344405, - "action": "CARVE_LEFT" - }, - { - "x": 144.8449393836192, - "y": -3869.7950750038717, - "rotation": 0.3245572846816198, - "action": "CARVE_LEFT" - }, - { - "x": 145.65837921283727, - "y": -3873.90247699924, - "rotation": 0.2704520778697956, - "action": "CARVE_LEFT" - }, - { - "x": 146.30998546888935, - "y": -3878.166439259627, - "rotation": 0.21634687105797137, - "action": "CARVE_LEFT" - }, - { - "x": 146.79937969348012, - "y": -3882.588020771113, - "rotation": 0.16224166424614717, - "action": "CARVE_LEFT" - }, - { - "x": 147.12611215606555, - "y": -3887.1683449537645, - "rotation": 0.10813645743432296, - "action": "CARVE_LEFT" - }, - { - "x": 147.2896620627268, - "y": -3891.908599471664, - "rotation": 0.05403125062249874, - "action": "CARVE_LEFT" - }, - { - "x": 147.28943776456063, - "y": -3896.8096186989583, - "rotation": 6.283111350990261, - "action": "CARVE_LEFT" - }, - { - "x": 147.1248255980942, - "y": -3901.567219915827, - "rotation": 6.229006144178436, - "action": "CARVE_LEFT" - }, - { - "x": 146.7952865491699, - "y": -3906.180161357201, - "rotation": 6.174900937366612, - "action": "CARVE_LEFT" - }, - { - "x": 146.3003560340143, - "y": -3910.6472718089244, - "rotation": 6.1207957305547875, - "action": "CARVE_LEFT" - }, - { - "x": 145.63964368090882, - "y": -3914.9674504020036, - "rotation": 6.066690523742963, - "action": "CARVE_LEFT" - }, - { - "x": 144.81283311246108, - "y": -3919.1396664074205, - "rotation": 6.012585316931139, - "action": "CARVE_LEFT" - }, - { - "x": 143.81968172847488, - "y": -3923.1629590315065, - "rotation": 5.958480110119314, - "action": "CARVE_LEFT" - }, - { - "x": 142.66002048941746, - "y": -3927.0364372118797, - "rotation": 5.90437490330749, - "action": "CARVE_LEFT" - }, - { - "x": 141.33375370048253, - "y": -3930.759279413939, - "rotation": 5.8502696964956655, - "action": "CARVE_LEFT" - }, - { - "x": 139.84085879624726, - "y": -3934.3307334279175, - "rotation": 5.796164489683841, - "action": "CARVE_LEFT" - }, - { - "x": 138.1813861259218, - "y": -3937.7501161664923, - "rotation": 5.742059282872017, - "action": "CARVE_LEFT" - }, - { - "x": 136.35545873918983, - "y": -3941.0168134629494, - "rotation": 5.687954076060192, - "action": "CARVE_LEFT" - }, - { - "x": 134.36327217263846, - "y": -3944.130279869901, - "rotation": 5.633848869248368, - "action": "CARVE_LEFT" - }, - { - "x": 132.205094236776, - "y": -3947.090038458557, - "rotation": 5.5797436624365435, - "action": "CARVE_LEFT" - }, - { - "x": 129.88126480363596, - "y": -3949.8956806185442, - "rotation": 5.525638455624719, - "action": "CARVE_LEFT" - }, - { - "x": 127.39219559496576, - "y": -3952.5468658582777, - "rotation": 5.471533248812895, - "action": "CARVE_LEFT" - }, - { - "x": 124.73836997099882, - "y": -3955.0433216058773, - "rotation": 5.41742804200107, - "action": "CARVE_LEFT" - }, - { - "x": 121.92034271980808, - "y": -3957.3848430106323, - "rotation": 5.363322835189246, - "action": "CARVE_LEFT" - }, - { - "x": 118.93873984723972, - "y": -3959.5712927450104, - "rotation": 5.3092176283774215, - "action": "CARVE_LEFT" - }, - { - "x": 115.7942583674255, - "y": -3961.6026008072095, - "rotation": 5.255112421565597, - "action": "CARVE_LEFT" - }, - { - "x": 112.4876660938721, - "y": -3963.478764324251, - "rotation": 5.201007214753773, - "action": "CARVE_LEFT" - }, - { - "x": 109.01980143112597, - "y": -3965.199847355617, - "rotation": 5.146902007941948, - "action": "CARVE_LEFT" - }, - { - "x": 105.39157316701228, - "y": -3966.76598069742, - "rotation": 5.092796801130124, - "action": "NOTHING" - }, - { - "x": 101.37668461966332, - "y": -3967.968391274357, - "rotation": 5.096287459634112, - "action": "NOTHING" - }, - { - "x": 97.37819670305963, - "y": -3969.1803428518415, - "rotation": 5.099778118138101, - "action": "NOTHING" - }, - { - "x": 93.39603438942729, - "y": -3970.40182504487, - "rotation": 5.103268776642089, - "action": "NOTHING" - }, - { - "x": 89.4301231815459, - "y": -3971.632827829705, - "rotation": 5.106759435146078, - "action": "NOTHING" - }, - { - "x": 85.48038911127006, - "y": -3972.8733415427923, - "rotation": 5.110250093650066, - "action": "NOTHING" - }, - { - "x": 81.54675873805485, - "y": -3974.12335687968, - "rotation": 5.1137407521540545, - "action": "NOTHING" - }, - { - "x": 77.62915914748513, - "y": -3975.382864893943, - "rotation": 5.117231410658043, - "action": "NOTHING" - }, - { - "x": 73.72751794980886, - "y": -3976.6518569961067, - "rotation": 5.120722069162031, - "action": "NOTHING" - }, - { - "x": 69.84176327847428, - "y": -3977.9303249525788, - "rotation": 5.12421272766602, - "action": "NOTHING" - }, - { - "x": 65.97182378867099, - "y": -3979.218260884579, - "rotation": 5.127703386170008, - "action": "NOTHING" - }, - { - "x": 62.117628655874945, - "y": -3980.515657267076, - "rotation": 5.131194044673997, - "action": "NOTHING" - }, - { - "x": 58.27910757439727, - "y": -3981.822506927723, - "rotation": 5.134684703177985, - "action": "NOTHING" - }, - { - "x": 54.45619075593701, - "y": -3983.138803045801, - "rotation": 5.138175361681974, - "action": "NOTHING" - }, - { - "x": 50.648808928137655, - "y": -3984.4645391511613, - "rotation": 5.141666020185962, - "action": "NOTHING" - }, - { - "x": 46.85689333314761, - "y": -3985.799709123172, - "rotation": 5.1451566786899505, - "action": "NOTHING" - }, - { - "x": 43.080375726184435, - "y": -3987.144307189669, - "rotation": 5.148647337193939, - "action": "NOTHING" - }, - { - "x": 39.319188374102914, - "y": -3988.4983279259077, - "rotation": 5.152137995697927, - "action": "NOTHING" - }, - { - "x": 35.573264053966966, - "y": -3989.8617662535194, - "rotation": 5.155628654201916, - "action": "NOTHING" - }, - { - "x": 31.842536051625366, - "y": -3991.2346174394684, - "rotation": 5.159119312705904, - "action": "NOTHING" - }, - { - "x": 28.126938160291232, - "y": -3992.616877095015, - "rotation": 5.162609971209893, - "action": "NOTHING" - }, - { - "x": 24.426404679125323, - "y": -3994.0085411746786, - "rotation": 5.166100629713881, - "action": "CARVE_RIGHT" - }, - { - "x": 21.260201029725444, - "y": -3995.890444325116, - "rotation": 5.220205836525706, - "action": "CARVE_RIGHT" - }, - { - "x": 18.257514060656455, - "y": -3997.919974292773, - "rotation": 5.27431104333753, - "action": "CARVE_RIGHT" - }, - { - "x": 15.41765857000386, - "y": -4000.0972282753028, - "rotation": 5.328416250149354, - "action": "CARVE_RIGHT" - }, - { - "x": 12.740023739244167, - "y": -4002.4223707342508, - "rotation": 5.382521456961179, - "action": "CARVE_RIGHT" - }, - { - "x": 10.224072915830018, - "y": -4004.8956331972877, - "rotation": 5.436626663773003, - "action": "CARVE_RIGHT" - }, - { - "x": 7.869343396371939, - "y": -4007.517314060985, - "rotation": 5.490731870584828, - "action": "CARVE_RIGHT" - }, - { - "x": 5.675446210415119, - "y": -4010.2877783941335, - "rotation": 5.544837077396652, - "action": "CARVE_RIGHT" - }, - { - "x": 3.642065904809676, - "y": -4013.207457741604, - "rotation": 5.598942284208476, - "action": "CARVE_RIGHT" - }, - { - "x": 1.7689603286727975, - "y": -4016.2768499287477, - "rotation": 5.653047491020301, - "action": "CARVE_RIGHT" - }, - { - "x": 0.05596041894124393, - "y": -4019.4965188663377, - "rotation": 5.707152697832125, - "action": "CARVE_RIGHT" - }, - { - "x": -1.497030013487367, - "y": -4022.8670943560455, - "rotation": 5.76125790464395, - "action": "CARVE_RIGHT" - }, - { - "x": -2.890034497026045, - "y": -4026.389271896453, - "rotation": 5.815363111455774, - "action": "CARVE_RIGHT" - }, - { - "x": -4.123004112084219, - "y": -4030.0638124896027, - "rotation": 5.869468318267598, - "action": "CARVE_RIGHT" - }, - { - "x": -5.195817703169401, - "y": -4033.891542448078, - "rotation": 5.923573525079423, - "action": "CARVE_RIGHT" - }, - { - "x": -6.108282090406244, - "y": -4037.8733532026154, - "rotation": 5.977678731891247, - "action": "CARVE_RIGHT" - }, - { - "x": -6.860132280474543, - "y": -4042.01020111025, - "rotation": 6.031783938703072, - "action": "CARVE_RIGHT" - }, - { - "x": -7.451031676967694, - "y": -4046.3031072629856, - "rotation": 6.085889145514896, - "action": "CARVE_RIGHT" - }, - { - "x": -7.880572290173166, - "y": -4050.7531572969965, - "rotation": 6.13999435232672, - "action": "CARVE_RIGHT" - }, - { - "x": -8.1482749462765, - "y": -4055.361501202353, - "rotation": 6.194099559138545, - "action": "CARVE_RIGHT" - }, - { - "x": -8.253589495990337, - "y": -4060.129353133272, - "rotation": 6.248204765950369, - "action": "CARVE_RIGHT" - }, - { - "x": -8.195901074116483, - "y": -4064.9506438488784, - "rotation": 0.019124665582607392, - "action": "CARVE_RIGHT" - }, - { - "x": -7.974617948024573, - "y": -4069.6290546222, - "rotation": 0.0732298723944316, - "action": "CARVE_RIGHT" - }, - { - "x": -7.589222971689825, - "y": -4074.163364368393, - "rotation": 0.1273350792062558, - "action": "CARVE_RIGHT" - }, - { - "x": -7.039273366931646, - "y": -4078.5524224946707, - "rotation": 0.18144028601808002, - "action": "CARVE_RIGHT" - }, - { - "x": -6.324400505253781, - "y": -4082.7951486947086, - "rotation": 0.23554549282990422, - "action": "CARVE_RIGHT" - }, - { - "x": -5.444309690284431, - "y": -4086.8905327436173, - "rotation": 0.28965069964172846, - "action": "CARVE_RIGHT" - }, - { - "x": -4.3987799408147445, - "y": -4090.8376342934757, - "rotation": 0.3437559064535527, - "action": "CARVE_RIGHT" - }, - { - "x": -3.187663774434113, - "y": -4094.635582669424, - "rotation": 0.39786111326537693, - "action": "CARVE_RIGHT" - }, - { - "x": -1.8108869917606865, - "y": -4098.283576666316, - "rotation": 0.45196632007720117, - "action": "CARVE_RIGHT" - }, - { - "x": -0.2684484612655442, - "y": -4101.780884345929, - "rotation": 0.5060715268890253, - "action": "CARVE_RIGHT" - }, - { - "x": 1.4395800953110565, - "y": -4105.12684283473, - "rotation": 0.5601767337008495, - "action": "CARVE_RIGHT" - }, - { - "x": 3.3130543169529063, - "y": -4108.320858122199, - "rotation": 0.6142819405126737, - "action": "CARVE_RIGHT" - }, - { - "x": 5.351757416772111, - "y": -4111.362404859696, - "rotation": 0.6683871473244979, - "action": "CARVE_RIGHT" - }, - { - "x": 7.555400394825956, - "y": -4114.251026159894, - "rotation": 0.7224923541363221, - "action": "CARVE_RIGHT" - }, - { - "x": 9.923622250347913, - "y": -4116.986333396749, - "rotation": 0.7765975609481462, - "action": "CARVE_RIGHT" - }, - { - "x": 12.45599019339435, - "y": -4119.568006006028, - "rotation": 0.8307027677599704, - "action": "CARVE_RIGHT" - }, - { - "x": 15.151999855908464, - "y": -4121.995791286378, - "rotation": 0.8848079745717946, - "action": "CARVE_RIGHT" - }, - { - "x": 18.011075502203013, - "y": -4124.269504200946, - "rotation": 0.9389131813836188, - "action": "CARVE_RIGHT" - }, - { - "x": 21.03257023886335, - "y": -4126.389027179539, - "rotation": 0.993018388195443, - "action": "CARVE_RIGHT" - }, - { - "x": 24.215766224072297, - "y": -4128.354309921328, - "rotation": 1.0471235950072673, - "action": "CARVE_RIGHT" - }, - { - "x": 27.559874876358403, - "y": -4130.165369198099, - "rotation": 1.1012288018190914, - "action": "CARVE_RIGHT" - }, - { - "x": 31.064037082769108, - "y": -4131.822288658035, - "rotation": 1.1553340086309156, - "action": "CARVE_RIGHT" - }, - { - "x": 34.72732340647029, - "y": -4133.325218630042, - "rotation": 1.2094392154427398, - "action": "CARVE_RIGHT" - }, - { - "x": 38.548734293773805, - "y": -4134.674375928616, - "rotation": 1.263544422254564, - "action": "NOTHING" - }, - { - "x": 42.77730006184455, - "y": -4135.639939787707, - "rotation": 1.2600537637505753, - "action": "NOTHING" - }, - { - "x": 46.98850403095236, - "y": -4136.615042389726, - "rotation": 1.2565631052465867, - "action": "NOTHING" - }, - { - "x": 51.18243017458621, - "y": -4137.5996670295035, - "rotation": 1.253072446742598, - "action": "NOTHING" - }, - { - "x": 55.359161911300355, - "y": -4138.593797381391, - "rotation": 1.2495817882386093, - "action": "NOTHING" - }, - { - "x": 59.518782106256864, - "y": -4139.59741749813, - "rotation": 1.2460911297346207, - "action": "NOTHING" - }, - { - "x": 63.661373072763986, - "y": -4140.610511809723, - "rotation": 1.242600471230632, - "action": "NOTHING" - }, - { - "x": 67.78701657381042, - "y": -4141.633065122306, - "rotation": 1.2391098127266433, - "action": "NOTHING" - }, - { - "x": 71.89579382359555, - "y": -4142.665062617026, - "rotation": 1.2356191542226547, - "action": "NOTHING" - }, - { - "x": 75.98778548905558, - "y": -4143.706489848919, - "rotation": 1.232128495718666, - "action": "NOTHING" - }, - { - "x": 80.0630716913856, - "y": -4144.757332745795, - "rotation": 1.2286378372146773, - "action": "NOTHING" - }, - { - "x": 84.12173200755763, - "y": -4145.817577607124, - "rotation": 1.2251471787106887, - "action": "NOTHING" - }, - { "x": 88.16384547183459, "y": -4146.887211102923, "rotation": 1.2216565202067, "action": "NOTHING" }, - { - "x": 92.18949057728035, - "y": -4147.966220272651, - "rotation": 1.2181658617027114, - "action": "NOTHING" - }, - { - "x": 96.19874527726557, - "y": -4149.054592524102, - "rotation": 1.2146752031987227, - "action": "NOTHING" - }, - { - "x": 100.19168698696973, - "y": -4150.152315632304, - "rotation": 1.211184544694734, - "action": "NOTHING" - }, - { - "x": 104.168392584879, - "y": -4151.25937773842, - "rotation": 1.2076938861907454, - "action": "CARVE_LEFT" - }, - { - "x": 107.5830460235628, - "y": -4152.881199932652, - "rotation": 1.1535886793789212, - "action": "CARVE_LEFT" - }, - { - "x": 110.83419735372368, - "y": -4154.649490172479, - "rotation": 1.099483472567097, - "action": "CARVE_LEFT" - }, - { - "x": 113.92265111719983, - "y": -4156.564237675239, - "rotation": 1.0453782657552728, - "action": "CARVE_LEFT" - }, - { - "x": 116.84913712571952, - "y": -4158.625499237657, - "rotation": 0.9912730589434486, - "action": "CARVE_LEFT" - }, - { - "x": 119.61431067926391, - "y": -4160.8333990372075, - "rotation": 0.9371678521316245, - "action": "CARVE_LEFT" - }, - { - "x": 122.21875278383072, - "y": -4163.188128434032, - "rotation": 0.8830626453198003, - "action": "CARVE_LEFT" - }, - { - "x": 124.66297036860054, - "y": -4165.689945773392, - "rotation": 0.8289574385079761, - "action": "CARVE_LEFT" - }, - { - "x": 126.94739650250695, - "y": -4168.339176188675, - "rotation": 0.7748522316961519, - "action": "CARVE_LEFT" - }, - { - "x": 129.07239061021247, - "y": -4171.136211404939, - "rotation": 0.7207470248843277, - "action": "CARVE_LEFT" - }, - { - "x": 131.0382386874916, - "y": -4174.081509542994, - "rotation": 0.6666418180725036, - "action": "CARVE_LEFT" - }, - { - "x": 132.84515351602263, - "y": -4177.175594924032, - "rotation": 0.6125366112606794, - "action": "CARVE_LEFT" - }, - { - "x": 134.49327487758976, - "y": -4180.4190578747875, - "rotation": 0.5584314044488552, - "action": "CARVE_LEFT" - }, - { - "x": 135.98266976769708, - "y": -4183.81255453324, - "rotation": 0.504326197637031, - "action": "CARVE_LEFT" - }, - { - "x": 137.31333260859603, - "y": -4187.356806654848, - "rotation": 0.4502209908252068, - "action": "CARVE_LEFT" - }, - { - "x": 138.48518546172767, - "y": -4191.052601419323, - "rotation": 0.39611578401338254, - "action": "CARVE_LEFT" - }, - { - "x": 139.4980782395817, - "y": -4194.900791237927, - "rotation": 0.3420105772015583, - "action": "CARVE_LEFT" - }, - { - "x": 140.35178891697325, - "y": -4198.902293561309, - "rotation": 0.28790537038973407, - "action": "CARVE_LEFT" - }, - { - "x": 141.0460237417395, - "y": -4203.058090687872, - "rotation": 0.23380016357790986, - "action": "CARVE_LEFT" - }, - { - "x": 141.58041744485726, - "y": -4207.369229572657, - "rotation": 0.17969495676608566, - "action": "CARVE_LEFT" - }, - { - "x": 141.95453344998322, - "y": -4211.83682163677, - "rotation": 0.12558974995426145, - "action": "CARVE_LEFT" - }, - { - "x": 142.1678640824184, - "y": -4216.462042577322, - "rotation": 0.07148454314243724, - "action": "CARVE_LEFT" - }, - { - "x": 142.21983077749826, - "y": -4221.2461321779, - "rotation": 0.017379336330613025, - "action": "CARVE_LEFT" - }, - { - "x": 142.10980660459734, - "y": -4225.985643010645, - "rotation": 6.246459436698375, - "action": "CARVE_LEFT" - }, - { - "x": 141.83721878479088, - "y": -4230.583066578904, - "rotation": 6.192354229886551, - "action": "CARVE_LEFT" - }, - { - "x": 141.4015690721289, - "y": -4235.037199654315, - "rotation": 6.138249023074726, - "action": "CARVE_LEFT" - }, - { - "x": 140.80243353501905, - "y": -4239.346909450262, - "rotation": 6.084143816262902, - "action": "CARVE_LEFT" - }, - { - "x": 140.03946233821065, - "y": -4243.511133416417, - "rotation": 6.030038609451077, - "action": "CARVE_LEFT" - }, - { - "x": 139.11237952537832, - "y": -4247.52887903385, - "rotation": 5.975933402639253, - "action": "CARVE_LEFT" - }, - { - "x": 138.0209828023035, - "y": -4251.399223610693, - "rotation": 5.921828195827429, - "action": "CARVE_LEFT" - }, - { - "x": 136.76514332065258, - "y": -4255.121314078369, - "rotation": 5.867722989015604, - "action": "CARVE_LEFT" - }, - { - "x": 135.34480546234977, - "y": -4258.694366788377, - "rotation": 5.81361778220378, - "action": "CARVE_LEFT" - }, - { - "x": 133.7599866245432, - "y": -4262.117667309635, - "rotation": 5.759512575391955, - "action": "CARVE_LEFT" - }, - { - "x": 132.01077700516285, - "y": -4265.390570226379, - "rotation": 5.705407368580131, - "action": "CARVE_LEFT" - }, - { - "x": 130.0973393890687, - "y": -4268.512498936618, - "rotation": 5.651302161768307, - "action": "CARVE_LEFT" - }, - { - "x": 128.0199089347872, - "y": -4271.482945451136, - "rotation": 5.597196954956482, - "action": "CARVE_LEFT" - }, - { - "x": 125.77879296183495, - "y": -4274.301470193056, - "rotation": 5.543091748144658, - "action": "CARVE_LEFT" - }, - { - "x": 123.37437073862799, - "y": -4276.9677017979375, - "rotation": 5.488986541332833, - "action": "CARVE_LEFT" - }, - { - "x": 120.80709327097475, - "y": -4279.481336914439, - "rotation": 5.434881334521009, - "action": "CARVE_LEFT" - }, - { - "x": 118.07748309115163, - "y": -4281.84214000552, - "rotation": 5.380776127709185, - "action": "CARVE_LEFT" - }, - { - "x": 115.18613404755934, - "y": -4284.049943150186, - "rotation": 5.32667092089736, - "action": "CARVE_LEFT" - }, - { - "x": 112.13371109495853, - "y": -4286.104645845782, - "rotation": 5.272565714085536, - "action": "CARVE_LEFT" - }, - { - "x": 108.92095008528332, - "y": -4288.006214810828, - "rotation": 5.218460507273711, - "action": "CARVE_LEFT" - }, - { - "x": 105.54865755903101, - "y": -4289.754683788394, - "rotation": 5.164355300461887, - "action": "CARVE_LEFT" - }, - { - "x": 102.01771053722655, - "y": -4291.350153350016, - "rotation": 5.1102500936500626, - "action": "CARVE_LEFT" - }, - { - "x": 98.32905631396024, - "y": -4292.792790700149, - "rotation": 5.056144886838238, - "action": "CARVE_LEFT" - }, - { - "x": 94.48371224949716, - "y": -4294.082829481162, - "rotation": 5.002039680026414, - "action": "CARVE_LEFT" - }, - { - "x": 90.48276556395679, - "y": -4295.220569578857, - "rotation": 4.947934473214589, - "action": "CARVE_LEFT" - }, - { - "x": 86.32737313156126, - "y": -4296.206376928539, - "rotation": 4.893829266402765, - "action": "CARVE_LEFT" - }, - { - "x": 82.01876127545087, - "y": -4297.040683321602, - "rotation": 4.8397240595909405, - "action": "CARVE_LEFT" - }, - { - "x": 77.55822556306525, - "y": -4297.723986212658, - "rotation": 4.785618852779116, - "action": "NOTHING" - }, - { - "x": 72.62345148834635, - "y": -4297.958615644095, - "rotation": 4.789109511283105, - "action": "NOTHING" - }, - { - "x": 67.70993883414678, - "y": -4298.203435418315, - "rotation": 4.792600169787093, - "action": "NOTHING" - }, - { - "x": 62.81757294395679, - "y": -4298.458406930099, - "rotation": 4.7960908282910815, - "action": "NOTHING" - }, - { - "x": 57.946239799293934, - "y": -4298.723492016362, - "rotation": 4.79958148679507, - "action": "NOTHING" - }, - { - "x": 53.09582601794352, - "y": -4298.998652954856, - "rotation": 4.803072145299058, - "action": "NOTHING" - }, - { - "x": 48.26621885220367, - "y": -4299.283852462871, - "rotation": 4.806562803803047, - "action": "NOTHING" - }, - { - "x": 43.45730618713503, - "y": -4299.579053695939, - "rotation": 4.810053462307035, - "action": "CARVE_RIGHT" - }, - { - "x": 39.29624936848106, - "y": -4300.465005088824, - "rotation": 4.86415866911886, - "action": "CARVE_RIGHT" - }, - { - "x": 35.30091882704108, - "y": -4301.496033763083, - "rotation": 4.918263875930684, - "action": "CARVE_RIGHT" - }, - { - "x": 31.470152252707095, - "y": -4302.671805259532, - "rotation": 4.972369082742508, - "action": "CARVE_RIGHT" - }, - { - "x": 27.802863106138574, - "y": -4303.992053645248, - "rotation": 5.026474289554333, - "action": "CARVE_RIGHT" - }, - { - "x": 24.29804039755236, - "y": -4305.456581312331, - "rotation": 5.080579496366157, - "action": "CARVE_RIGHT" - }, - { - "x": 20.95474846611914, - "y": -4307.0652587772265, - "rotation": 5.134684703177982, - "action": "CARVE_RIGHT" - }, - { - "x": 17.772126759964916, - "y": -4308.818024480598, - "rotation": 5.188789909989806, - "action": "CARVE_RIGHT" - }, - { - "x": 14.749389616775893, - "y": -4310.714884587748, - "rotation": 5.2428951168016305, - "action": "CARVE_RIGHT" - }, - { - "x": 11.88582604500515, - "y": -4312.755912789593, - "rotation": 5.297000323613455, - "action": "CARVE_RIGHT" - }, - { - "x": 9.180799505679555, - "y": -4314.941250104179, - "rotation": 5.351105530425279, - "action": "CARVE_RIGHT" - }, - { - "x": 6.633747694805326, - "y": -4317.271104678752, - "rotation": 5.405210737237104, - "action": "CARVE_RIGHT" - }, - { - "x": 4.244182326370643, - "y": -4319.745751592369, - "rotation": 5.459315944048928, - "action": "CARVE_RIGHT" - }, - { - "x": 2.0116889159437634, - "y": -4322.3655326590515, - "rotation": 5.5134211508607525, - "action": "CARVE_RIGHT" - }, - { - "x": -0.06407343513494812, - "y": -4325.130856231486, - "rotation": 5.567526357672577, - "action": "CARVE_RIGHT" - }, - { - "x": -1.983372254968632, - "y": -4328.042197005259, - "rotation": 5.621631564484401, - "action": "CARVE_RIGHT" - }, - { - "x": -3.7464019157287547, - "y": -4331.100095823636, - "rotation": 5.675736771296226, - "action": "CARVE_RIGHT" - }, - { - "x": -5.353283847690685, - "y": -4334.305159482877, - "rotation": 5.72984197810805, - "action": "CARVE_RIGHT" - }, - { - "x": -6.804066752681604, - "y": -4337.658060538087, - "rotation": 5.7839471849198745, - "action": "CARVE_RIGHT" - }, - { - "x": -8.09872681694227, - "y": -4341.1595371096055, - "rotation": 5.838052391731699, - "action": "CARVE_RIGHT" - }, - { - "x": -9.237167923404204, - "y": -4344.810392689924, - "rotation": 5.892157598543523, - "action": "CARVE_RIGHT" - }, - { - "x": -10.219221863383828, - "y": -4348.611495951141, - "rotation": 5.946262805355348, - "action": "CARVE_RIGHT" - }, - { - "x": -11.044648547695095, - "y": -4352.563780552943, - "rotation": 6.000368012167172, - "action": "CARVE_RIGHT" - }, - { - "x": -11.713136217182157, - "y": -4356.668244951122, - "rotation": 6.0544732189789965, - "action": "CARVE_RIGHT" - }, - { - "x": -12.224301652673578, - "y": -4360.9259522066095, - "rotation": 6.108578425790821, - "action": "CARVE_RIGHT" - }, - { - "x": -12.57769038435964, - "y": -4365.33802979505, - "rotation": 6.162683632602645, - "action": "CARVE_RIGHT" - }, - { - "x": -12.772776900594247, - "y": -4369.90566941689, - "rotation": 6.21678883941447, - "action": "CARVE_RIGHT" - }, - { - "x": -12.808964856122966, - "y": -4374.630126807999, - "rotation": 6.270894046226294, - "action": "CARVE_RIGHT" - }, - { - "x": -12.685616207718553, - "y": -4379.283153320108, - "rotation": 0.041813945858532264, - "action": "CARVE_RIGHT" - }, - { - "x": -12.402154147901081, - "y": -4383.796456404797, - "rotation": 0.09591915267035647, - "action": "CARVE_RIGHT" - }, - { - "x": -11.958076418032965, - "y": -4388.168828909031, - "rotation": 0.15002435948218068, - "action": "CARVE_RIGHT" - }, - { - "x": -11.352955089651484, - "y": -4392.399134136625, - "rotation": 0.2041295662940049, - "action": "CARVE_RIGHT" - }, - { - "x": -10.586436346402628, - "y": -4396.486305642747, - "rotation": 0.2582347731058291, - "action": "CARVE_RIGHT" - }, - { - "x": -9.65824026657467, - "y": -4400.429347028966, - "rotation": 0.31233997991765333, - "action": "CARVE_RIGHT" - }, - { - "x": -8.56816060622989, - "y": -4404.227331738883, - "rotation": 0.36644518672947757, - "action": "CARVE_RIGHT" - }, - { - "x": -7.316064582932878, - "y": -4407.8794028543025, - "rotation": 0.4205503935413018, - "action": "CARVE_RIGHT" - }, - { - "x": -5.9018926600738135, - "y": -4411.384772891977, - "rotation": 0.47465560035312604, - "action": "CARVE_RIGHT" - }, - { - "x": -4.325658331785189, - "y": -4414.742723600902, - "rotation": 0.5287608071649502, - "action": "CARVE_RIGHT" - }, - { - "x": -2.5874479084503763, - "y": -4417.952605760165, - "rotation": 0.5828660139767744, - "action": "CARVE_RIGHT" - }, - { - "x": -0.6874203028024901, - "y": -4421.013838977359, - "rotation": 0.6369712207885986, - "action": "CARVE_RIGHT" - }, - { - "x": 1.3741931833880088, - "y": -4423.925911487534, - "rotation": 0.6910764276004228, - "action": "CARVE_RIGHT" - }, - { - "x": 3.597089072038539, - "y": -4426.688379952714, - "rotation": 0.7451816344122469, - "action": "CARVE_RIGHT" - }, - { - "x": 5.98089192089399, - "y": -4429.300869261955, - "rotation": 0.7992868412240711, - "action": "CARVE_RIGHT" - }, - { - "x": 8.525154535082237, - "y": -4431.763072331955, - "rotation": 0.8533920480358953, - "action": "CARVE_RIGHT" - }, - { - "x": 11.229358178087118, - "y": -4434.074749908213, - "rotation": 0.9074972548477195, - "action": "CARVE_RIGHT" - }, - { - "x": 14.092912782140404, - "y": -4436.235730366724, - "rotation": 0.9616024616595437, - "action": "CARVE_RIGHT" - }, - { - "x": 17.115157158034318, - "y": -4438.245909516236, - "rotation": 1.015707668471368, - "action": "CARVE_RIGHT" - }, - { - "x": 20.29535920435612, - "y": -4440.1052504010295, - "rotation": 1.0698128752831921, - "action": "CARVE_RIGHT" - }, - { - "x": 23.63271611614628, - "y": -4441.813783104256, - "rotation": 1.1239180820950163, - "action": "NOTHING" - }, - { - "x": 27.32587925240938, - "y": -4443.188329496776, - "rotation": 1.1204274235910276, - "action": "NOTHING" - }, - { - "x": 31.004096453114823, - "y": -4444.572235261748, - "rotation": 1.116936765087039, - "action": "NOTHING" - }, - { - "x": 34.667432489619685, - "y": -4445.965496947165, - "rotation": 1.1134461065830503, - "action": "NOTHING" - }, - { - "x": 38.315951631430956, - "y": -4447.368111441348, - "rotation": 1.1099554480790617, - "action": "CARVE_LEFT" - }, - { - "x": 41.436723857490804, - "y": -4449.255046888699, - "rotation": 1.0558502412672375, - "action": "CARVE_LEFT" - }, - { - "x": 44.395345545259765, - "y": -4451.2885209921515, - "rotation": 1.0017450344554133, - "action": "CARVE_LEFT" - }, - { - "x": 47.19248660338256, - "y": -4453.468644720865, - "rotation": 0.9476398276435891, - "action": "CARVE_LEFT" - }, - { - "x": 49.82874260375076, - "y": -4455.795596265566, - "rotation": 0.8935346208317649, - "action": "CARVE_LEFT" - }, - { - "x": 52.30463499878645, - "y": -4458.269620840898, - "rotation": 0.8394294140199408, - "action": "CARVE_LEFT" - }, - { - "x": 54.620611338129635, - "y": -4460.891030488314, - "rotation": 0.7853242072081166, - "action": "CARVE_LEFT" - }, - { - "x": 56.777045484731005, - "y": -4463.660203879519, - "rotation": 0.7312190003962924, - "action": "CARVE_LEFT" - }, - { - "x": 58.77423783035151, - "y": -4466.5775861204465, - "rotation": 0.6771137935844682, - "action": "CARVE_LEFT" - }, - { - "x": 60.612415510470434, - "y": -4469.643688555778, - "rotation": 0.623008586772644, - "action": "CARVE_LEFT" - }, - { - "x": 62.29173261860346, - "y": -4472.859088574, - "rotation": 0.5689033799608199, - "action": "CARVE_LEFT" - }, - { - "x": 63.812270420032306, - "y": -4476.224429413002, - "rotation": 0.5147981731489957, - "action": "CARVE_LEFT" - }, - { - "x": 65.17403756494743, - "y": -4479.740419966205, - "rotation": 0.46069296633717144, - "action": "CARVE_LEFT" - }, - { - "x": 66.37697030100544, - "y": -4483.407834589225, - "rotation": 0.4065877595253472, - "action": "CARVE_LEFT" - }, - { - "x": 67.42093268530273, - "y": -4487.227512907075, - "rotation": 0.35248255271352297, - "action": "CARVE_LEFT" - }, - { - "x": 68.30571679576677, - "y": -4491.200359621891, - "rotation": 0.29837734590169873, - "action": "CARVE_LEFT" - }, - { - "x": 69.03104294196679, - "y": -4495.327344321194, - "rotation": 0.24427213908987452, - "action": "CARVE_LEFT" - }, - { - "x": 69.59655987534516, - "y": -4499.609501286676, - "rotation": 0.19016693227805032, - "action": "CARVE_LEFT" - }, - { - "x": 70.00184499887122, - "y": -4504.047929303518, - "rotation": 0.1360617254662261, - "action": "CARVE_LEFT" - }, - { - "x": 70.2464045761189, - "y": -4508.643791470227, - "rotation": 0.0819565186544019, - "action": "CARVE_LEFT" - }, - { - "x": 70.32967393976976, - "y": -4513.398315009009, - "rotation": 0.027851311842577685, - "action": "CARVE_LEFT" - }, - { - "x": 70.25102910370254, - "y": -4518.166439954492, - "rotation": 6.256931412210339, - "action": "CARVE_LEFT" - }, - { - "x": 70.0098830262526, - "y": -4522.792676388203, - "rotation": 6.202826205398515, - "action": "CARVE_LEFT" - }, - { - "x": 69.6057232404914, - "y": -4527.275807604075, - "rotation": 6.148720998586691, - "action": "CARVE_LEFT" - }, - { - "x": 69.03811163549464, - "y": -4531.6146873770285, - "rotation": 6.094615791774866, - "action": "CARVE_LEFT" - }, - { - "x": 68.30668423821184, - "y": -4535.808239757411, - "rotation": 6.040510584963042, - "action": "CARVE_LEFT" - }, - { - "x": 67.41115099593583, - "y": -4539.8554588659945, - "rotation": 5.986405378151217, - "action": "CARVE_LEFT" - }, - { - "x": 66.35129555937054, - "y": -4543.755408689538, - "rotation": 5.932300171339393, - "action": "CARVE_LEFT" - }, - { - "x": 65.12697506629559, - "y": -4547.507222876906, - "rotation": 5.878194964527569, - "action": "CARVE_LEFT" - }, - { - "x": 63.73811992582587, - "y": -4551.110104535748, - "rotation": 5.824089757715744, - "action": "CARVE_LEFT" - }, - { - "x": 62.18473360326489, - "y": -4554.563326029737, - "rotation": 5.76998455090392, - "action": "CARVE_LEFT" - }, - { - "x": 60.466892405549984, - "y": -4557.866228776364, - "rotation": 5.715879344092095, - "action": "CARVE_LEFT" - }, - { - "x": 58.58474526728806, - "y": -4561.018223045279, - "rotation": 5.661774137280271, - "action": "CARVE_LEFT" - }, - { - "x": 56.538513537380204, - "y": -4564.0187877572025, - "rotation": 5.607668930468447, - "action": "CARVE_LEFT" - }, - { - "x": 54.328490766233614, - "y": -4566.867470283367, - "rotation": 5.553563723656622, - "action": "CARVE_LEFT" - }, - { - "x": 51.95504249355933, - "y": -4569.563886245526, - "rotation": 5.499458516844798, - "action": "CARVE_LEFT" - }, - { - "x": 49.418606036754205, - "y": -4572.107719316504, - "rotation": 5.445353310032973, - "action": "CARVE_LEFT" - }, - { - "x": 46.71969027986554, - "y": -4574.498721021293, - "rotation": 5.391248103221149, - "action": "CARVE_LEFT" - }, - { - "x": 43.858875463136876, - "y": -4576.7367105386975, - "rotation": 5.337142896409325, - "action": "CARVE_LEFT" - }, - { - "x": 40.83681297313343, - "y": -4578.821574503524, - "rotation": 5.2830376895975, - "action": "CARVE_LEFT" - }, - { - "x": 37.654225133445614, - "y": -4580.753266809312, - "rotation": 5.228932482785676, - "action": "CARVE_LEFT" - }, - { - "x": 34.311904995969044, - "y": -4582.531808411605, - "rotation": 5.174827275973851, - "action": "CARVE_LEFT" - }, - { - "x": 30.81071613275968, - "y": -4584.1572871317685, - "rotation": 5.120722069162027, - "action": "CARVE_LEFT" - }, - { - "x": 27.151592428462386, - "y": -4585.629857461334, - "rotation": 5.066616862350203, - "action": "CARVE_LEFT" - }, - { - "x": 23.335537873311566, - "y": -4586.949740366895, - "rotation": 5.012511655538378, - "action": "CARVE_LEFT" - }, - { - "x": 19.36362635670223, - "y": -4588.117223095527, - "rotation": 4.958406448726554, - "action": "CARVE_LEFT" - }, - { - "x": 15.23700146133006, - "y": -4589.13265898075, - "rotation": 4.904301241914729, - "action": "NOTHING" - }, - { - "x": 10.67106141565294, - "y": -4589.7332938765685, - "rotation": 4.907791900418718, - "action": "NOTHING" - }, - { - "x": 6.124220886890533, - "y": -4590.343650135796, - "rotation": 4.911282558922706, - "action": "NOTHING" - }, - { - "x": 1.596381261307644, - "y": -4590.9637006355115, - "rotation": 4.914773217426695, - "action": "NOTHING" - }, - { - "x": -2.9125554801729914, - "y": -4591.593418662189, - "rotation": 4.918263875930683, - "action": "NOTHING" - }, - { - "x": -7.40268676361711, - "y": -4592.232777910491, - "rotation": 4.921754534434672, - "action": "NOTHING" - }, - { - "x": -11.874109423720956, - "y": -4592.881752482055, - "rotation": 4.92524519293866, - "action": "NOTHING" - }, - { - "x": -16.326919705448972, - "y": -4593.540316884289, - "rotation": 4.9287358514426485, - "action": "NOTHING" - }, - { - "x": -20.761213265667138, - "y": -4594.208446029162, - "rotation": 4.932226509946637, - "action": "NOTHING" - }, - { - "x": -25.177085174771964, - "y": -4594.8861152320105, - "rotation": 4.935717168450625, - "action": "NOTHING" - }, - { - "x": -29.5746299183152, - "y": -4595.573300210338, - "rotation": 4.939207826954614, - "action": "NOTHING" - }, - { - "x": -33.953941398624195, - "y": -4596.269977082619, - "rotation": 4.942698485458602, - "action": "CARVE_RIGHT" - }, - { - "x": -37.730386764264374, - "y": -4597.517512156146, - "rotation": 4.996803692270427, - "action": "CARVE_RIGHT" - }, - { - "x": -41.34295328951772, - "y": -4598.910175238402, - "rotation": 5.050908899082251, - "action": "CARVE_RIGHT" - }, - { - "x": -44.79262163856929, - "y": -4600.447796185977, - "rotation": 5.1050141058940754, - "action": "CARVE_RIGHT" - }, - { - "x": -48.08029723390381, - "y": -4602.130272900365, - "rotation": 5.1591193127059, - "action": "CARVE_RIGHT" - }, - { - "x": -51.20681047606713, - "y": -4603.957571128058, - "rotation": 5.213224519517724, - "action": "CARVE_RIGHT" - }, - { - "x": -54.17291696282477, - "y": -4605.929724261181, - "rotation": 5.267329726329549, - "action": "CARVE_RIGHT" - }, - { - "x": -56.979297707719375, - "y": -4608.046833138683, - "rotation": 5.321434933141373, - "action": "CARVE_RIGHT" - }, - { - "x": -59.62655935802851, - "y": -4610.309065848069, - "rotation": 5.3755401399531975, - "action": "CARVE_RIGHT" - }, - { - "x": -62.11523441212443, - "y": -4612.7166575276815, - "rotation": 5.429645346765022, - "action": "CARVE_RIGHT" - }, - { - "x": -64.44578143623743, - "y": -4615.26991016953, - "rotation": 5.483750553576846, - "action": "CARVE_RIGHT" - }, - { - "x": -66.61858528062427, - "y": -4617.969192422654, - "rotation": 5.537855760388671, - "action": "CARVE_RIGHT" - }, - { - "x": -68.63395729514338, - "y": -4620.814939397034, - "rotation": 5.591960967200495, - "action": "CARVE_RIGHT" - }, - { - "x": -70.49213554423815, - "y": -4623.807652468046, - "rotation": 5.6460661740123195, - "action": "CARVE_RIGHT" - }, - { - "x": -72.19328502133027, - "y": -4626.947899081446, - "rotation": 5.700171380824144, - "action": "CARVE_RIGHT" - }, - { - "x": -73.73749786262421, - "y": -4630.236312558897, - "rotation": 5.754276587635968, - "action": "CARVE_RIGHT" - }, - { - "x": -75.12479356032478, - "y": -4633.673591904035, - "rotation": 5.808381794447793, - "action": "CARVE_RIGHT" - }, - { - "x": -76.35511917526907, - "y": -4637.260501609059, - "rotation": 5.862487001259617, - "action": "CARVE_RIGHT" - }, - { - "x": -77.42834954897452, - "y": -4640.997871461869, - "rotation": 5.9165922080714415, - "action": "CARVE_RIGHT" - }, - { - "x": -78.3442875151044, - "y": -4644.88659635372, - "rotation": 5.970697414883266, - "action": "CARVE_RIGHT" - }, - { - "x": -79.10266411035246, - "y": -4648.927636087417, - "rotation": 6.02480262169509, - "action": "CARVE_RIGHT" - }, - { - "x": -79.70313878474826, - "y": -4653.122015186037, - "rotation": 6.078907828506915, - "action": "CARVE_RIGHT" - }, - { - "x": -80.14529961138453, - "y": -4657.470822702174, - "rotation": 6.133013035318739, - "action": "CARVE_RIGHT" - }, - { - "x": -80.42866349556832, - "y": -4661.975212027714, - "rotation": 6.1871182421305635, - "action": "CARVE_RIGHT" - }, - { - "x": -80.55267638339724, - "y": -4666.6364007041375, - "rotation": 6.241223448942388, - "action": "CARVE_RIGHT" - }, - { - "x": -80.51671590955412, - "y": -4671.388749814964, - "rotation": 0.012143348574626067, - "action": "CARVE_RIGHT" - }, - { - "x": -80.32016774205789, - "y": -4676.001292518047, - "rotation": 0.06624855538645028, - "action": "CARVE_RIGHT" - }, - { - "x": -79.96249220655777, - "y": -4680.472786232597, - "rotation": 0.12035376219827448, - "action": "CARVE_RIGHT" - }, - { - "x": -79.44322406736875, - "y": -4684.802058936857, - "rotation": 0.1744589690100987, - "action": "CARVE_RIGHT" - }, - { - "x": -78.76197230910915, - "y": -4688.9880089623175, - "rotation": 0.2285641758219229, - "action": "CARVE_RIGHT" - }, - { - "x": -77.91841991893875, - "y": -4693.0296047884995, - "rotation": 0.28266938263374713, - "action": "CARVE_RIGHT" - }, - { - "x": -76.91232366939575, - "y": -4696.925884838298, - "rotation": 0.33677458944557137, - "action": "CARVE_RIGHT" - }, - { - "x": -75.74351390183115, - "y": -4700.675957273883, - "rotation": 0.3908797962573956, - "action": "CARVE_RIGHT" - }, - { - "x": -74.4118943104389, - "y": -4704.278999793169, - "rotation": 0.44498500306921984, - "action": "CARVE_RIGHT" - }, - { - "x": -72.91744172688016, - "y": -4707.734259426829, - "rotation": 0.4990902098810441, - "action": "CARVE_RIGHT" - }, - { - "x": -71.26020590550029, - "y": -4711.041052335883, - "rotation": 0.5531954166928683, - "action": "CARVE_RIGHT" - }, - { - "x": -69.44030930913685, - "y": -4714.198763609823, - "rotation": 0.6073006235046925, - "action": "CARVE_RIGHT" - }, - { - "x": -67.45794689551708, - "y": -4717.206847065304, - "rotation": 0.6614058303165167, - "action": "CARVE_RIGHT" - }, - { - "x": -65.31338590424339, - "y": -4720.064825045381, - "rotation": 0.7155110371283409, - "action": "CARVE_RIGHT" - }, - { - "x": -63.00696564436513, - "y": -4722.772288219305, - "rotation": 0.769616243940165, - "action": "CARVE_RIGHT" - }, - { - "x": -60.53909728253532, - "y": -4725.328895382852, - "rotation": 0.8237214507519892, - "action": "CARVE_RIGHT" - }, - { - "x": -57.91026363175059, - "y": -4727.734373259223, - "rotation": 0.8778266575638134, - "action": "CARVE_RIGHT" - }, - { - "x": -55.1210189406729, - "y": -4729.988516300463, - "rotation": 0.9319318643756376, - "action": "CARVE_RIGHT" - }, - { - "x": -52.17198868353149, - "y": -4732.091186489452, - "rotation": 0.9860370711874618, - "action": "CARVE_RIGHT" - }, - { - "x": -49.063869350603504, - "y": -4734.042313142421, - "rotation": 1.040142277999286, - "action": "CARVE_RIGHT" - }, - { - "x": -45.79742823927175, - "y": -4735.841892712016, - "rotation": 1.0942474848111101, - "action": "CARVE_RIGHT" - }, - { - "x": -42.373503245658114, - "y": -4737.489988590902, - "rotation": 1.1483526916229343, - "action": "NOTHING" - }, - { - "x": -38.58456816648045, - "y": -4738.795206017437, - "rotation": 1.1448620331189456, - "action": "NOTHING" - }, - { - "x": -34.81099047077382, - "y": -4740.109794552778, - "rotation": 1.141371374614957, - "action": "NOTHING" - }, - { - "x": -31.05270202978383, - "y": -4741.433748448531, - "rotation": 1.1378807161109683, - "action": "NOTHING" - }, - { - "x": -27.309635225937743, - "y": -4742.767062303486, - "rotation": 1.1343900576069796, - "action": "NOTHING" - }, - { - "x": -23.58172295141777, - "y": -4744.109731062566, - "rotation": 1.130899399102991, - "action": "NOTHING" - }, - { - "x": -19.86889860673824, - "y": -4745.461750015799, - "rotation": 1.1274087405990023, - "action": "NOTHING" - }, - { - "x": -16.171096099326544, - "y": -4746.823114797269, - "rotation": 1.1239180820950136, - "action": "NOTHING" - }, - { - "x": -12.488249842107846, - "y": -4748.193821384087, - "rotation": 1.120427423591025, - "action": "NOTHING" - }, - { - "x": -8.820294752093591, - "y": -4749.573866095355, - "rotation": 1.1169367650870363, - "action": "NOTHING" - }, - { - "x": -5.167166248973766, - "y": -4750.963245591143, - "rotation": 1.1134461065830477, - "action": "NOTHING" - }, - { - "x": -1.5288002537129097, - "y": -4752.3619568714585, - "rotation": 1.109955448079059, - "action": "NOTHING" - }, - { - "x": 2.0948668128501216, - "y": -4753.769997275223, - "rotation": 1.1064647895750703, - "action": "NOTHING" - }, - { - "x": 5.70389803139866, - "y": -4755.187364479255, - "rotation": 1.1029741310710817, - "action": "NOTHING" - }, - { - "x": 9.298355985531005, - "y": -4756.6140564972475, - "rotation": 1.099483472567093, - "action": "NOTHING" - }, - { - "x": 12.878302763149485, - "y": -4758.050071678757, - "rotation": 1.0959928140631043, - "action": "NOTHING" - }, - { - "x": 16.44379995784582, - "y": -4759.495408708192, - "rotation": 1.0925021555591157, - "action": "NOTHING" - }, - { - "x": 19.994908670282776, - "y": -4760.950066603802, - "rotation": 1.089011497055127, - "action": "CARVE_LEFT" - }, - { - "x": 23.029578044276604, - "y": -4762.878939406759, - "rotation": 1.0349062902433028, - "action": "CARVE_LEFT" - }, - { - "x": 25.903629061498144, - "y": -4764.953295311742, - "rotation": 0.9808010834314786, - "action": "CARVE_LEFT" - }, - { - "x": 28.61769738006302, - "y": -4767.173276202473, - "rotation": 0.9266958766196545, - "action": "CARVE_LEFT" - }, - { - "x": 31.17234442337292, - "y": -4769.539091091517, - "rotation": 0.8725906698078303, - "action": "CARVE_LEFT" - }, - { - "x": 33.56805759711604, - "y": -4772.051015922888, - "rotation": 0.8184854629960061, - "action": "CARVE_LEFT" - }, - { - "x": 35.80525050567208, - "y": -4774.709393375208, - "rotation": 0.7643802561841819, - "action": "CARVE_LEFT" - }, - { - "x": 37.88426316792326, - "y": -4777.514632665397, - "rotation": 0.7102750493723577, - "action": "CARVE_LEFT" - }, - { - "x": 39.805362232472994, - "y": -4780.46720935291, - "rotation": 0.6561698425605336, - "action": "CARVE_LEFT" - }, - { - "x": 41.56874119227375, - "y": -4783.567665144512, - "rotation": 0.6020646357487094, - "action": "CARVE_LEFT" - }, - { - "x": 43.17452059866563, - "y": -4786.816607699592, - "rotation": 0.5479594289368852, - "action": "CARVE_LEFT" - }, - { - "x": 44.622748274827316, - "y": -4790.214710436009, - "rotation": 0.49385422212506097, - "action": "CARVE_LEFT" - }, - { - "x": 45.9133995286408, - "y": -4793.76271233648, - "rotation": 0.43974901531323674, - "action": "CARVE_LEFT" - }, - { - "x": 47.04637736497156, - "y": -4797.461417755496, - "rotation": 0.3856438085014125, - "action": "CARVE_LEFT" - }, - { - "x": 48.021512697365665, - "y": -4801.31169622677, - "rotation": 0.33153860168958826, - "action": "CARVE_LEFT" - }, - { - "x": 48.838564559165334, - "y": -4805.314482271226, - "rotation": 0.27743339487776403, - "action": "CARVE_LEFT" - }, - { - "x": 49.49722031404457, - "y": -4809.470775205497, - "rotation": 0.22332818806593982, - "action": "CARVE_LEFT" - }, - { - "x": 49.99709586596626, - "y": -4813.781638950976, - "rotation": 0.1692229812541156, - "action": "CARVE_LEFT" - }, - { - "x": 50.33773586856242, - "y": -4818.248201843373, - "rotation": 0.1151177744422914, - "action": "CARVE_LEFT" - }, - { - "x": 50.51861393393896, - "y": -4822.871656442808, - "rotation": 0.06101256763046719, - "action": "CARVE_LEFT" - }, - { - "x": 50.53913284090661, - "y": -4827.6532593444235, - "rotation": 0.006907360818642974, - "action": "CARVE_LEFT" - }, - { - "x": 50.398661599654446, - "y": -4832.332902956972, - "rotation": 6.235987461186405, - "action": "CARVE_LEFT" - }, - { - "x": 50.0966369581843, - "y": -4836.871324404714, - "rotation": 6.181882254374581, - "action": "CARVE_LEFT" - }, - { - "x": 49.63257017133453, - "y": -4841.267329411002, - "rotation": 6.127777047562756, - "action": "CARVE_LEFT" - }, - { - "x": 49.006046782231756, - "y": -4845.519794116458, - "rotation": 6.073671840750932, - "action": "CARVE_LEFT" - }, - { - "x": 48.21672640434361, - "y": -4849.62766487358, - "rotation": 6.019566633939108, - "action": "CARVE_LEFT" - }, - { - "x": 47.264342504130845, - "y": -4853.589958041912, - "rotation": 5.965461427127283, - "action": "CARVE_LEFT" - }, - { - "x": 46.148702184297356, - "y": -4857.405759783773, - "rotation": 5.911356220315459, - "action": "CARVE_LEFT" - }, - { - "x": 44.86968596763641, - "y": -4861.074225860551, - "rotation": 5.857251013503634, - "action": "CARVE_LEFT" - }, - { - "x": 43.42724758147152, - "y": -4864.594581429554, - "rotation": 5.80314580669181, - "action": "NOTHING" - }, - { - "x": 41.834899648654584, - "y": -4867.980077791378, - "rotation": 5.8066364651957985, - "action": "NOTHING" - }, - { - "x": 40.252919686582686, - "y": -4871.379158040349, - "rotation": 5.810127123699787, - "action": "NOTHING" - }, - { - "x": 38.68131458133342, - "y": -4874.791866454519, - "rotation": 5.813617782203775, - "action": "NOTHING" - }, - { - "x": 37.120091518599814, - "y": -4878.218247505978, - "rotation": 5.817108440707764, - "action": "NOTHING" - }, - { - "x": 35.56925798283151, - "y": -4881.658345860244, - "rotation": 5.820599099211752, - "action": "NOTHING" - }, - { - "x": 34.02882175637823, - "y": -4885.112206375646, - "rotation": 5.824089757715741, - "action": "NOTHING" - }, - { - "x": 32.49879091863561, - "y": -4888.579874102722, - "rotation": 5.827580416219729, - "action": "NOTHING" - }, - { - "x": 30.979173845193348, - "y": -4892.061394283612, - "rotation": 5.8310710747237176, - "action": "NOTHING" - }, - { - "x": 29.469979206985595, - "y": -4895.5568123514495, - "rotation": 5.834561733227706, - "action": "NOTHING" - }, - { - "x": 27.971215969443747, - "y": -4899.066173929763, - "rotation": 5.838052391731694, - "action": "NOTHING" - }, - { - "x": 26.482893391651476, - "y": -4902.589524831871, - "rotation": 5.841543050235683, - "action": "CARVE_RIGHT" - }, - { - "x": 25.30646309287704, - "y": -4906.406000752298, - "rotation": 5.895648257047507, - "action": "CARVE_RIGHT" - }, - { - "x": 24.293235871090534, - "y": -4910.378640298395, - "rotation": 5.949753463859332, - "action": "CARVE_RIGHT" - }, - { - "x": 23.443426746980478, - "y": -4914.508354787463, - "rotation": 6.003858670671156, - "action": "CARVE_RIGHT" - }, - { - "x": 22.757322495392128, - "y": -4918.7961204089415, - "rotation": 6.0579638774829805, - "action": "CARVE_RIGHT" - }, - { - "x": 22.235281435124183, - "y": -4923.242978033227, - "rotation": 6.112069084294805, - "action": "CARVE_RIGHT" - }, - { - "x": 21.877733219303074, - "y": -4927.850033021012, - "rotation": 6.166174291106629, - "action": "CARVE_RIGHT" - }, - { - "x": 21.685178626333343, - "y": -4932.6184550331545, - "rotation": 6.220279497918454, - "action": "CARVE_RIGHT" - }, - { - "x": 21.658189351422568, - "y": -4937.549477841069, - "rotation": 6.274384704730278, - "action": "CARVE_RIGHT" - }, - { - "x": 21.797373839242045, - "y": -4942.385407286312, - "rotation": 0.045304604362516265, - "action": "CARVE_RIGHT" - }, - { - "x": 22.10327505641966, - "y": -4947.075017809542, - "rotation": 0.09940981117434047, - "action": "CARVE_RIGHT" - }, - { - "x": 22.57636153064229, - "y": -4951.617134548969, - "rotation": 0.15351501798616468, - "action": "CARVE_RIGHT" - }, - { - "x": 23.217027569003523, - "y": -4956.010652995864, - "rotation": 0.2076202247979889, - "action": "CARVE_RIGHT" - }, - { - "x": 24.025593475750885, - "y": -4960.25453878935, - "rotation": 0.2617254316098131, - "action": "CARVE_RIGHT" - }, - { - "x": 25.002305769434262, - "y": -4964.347827511764, - "rotation": 0.31583063842163733, - "action": "CARVE_RIGHT" - }, - { - "x": 26.147337399457008, - "y": -4968.289624484576, - "rotation": 0.36993584523346157, - "action": "CARVE_RIGHT" - }, - { - "x": 27.46078796203136, - "y": -4972.079104564864, - "rotation": 0.4240410520452858, - "action": "CARVE_RIGHT" - }, - { - "x": 28.942683915539725, - "y": -4975.715511942352, - "rotation": 0.47814625885711004, - "action": "CARVE_RIGHT" - }, - { - "x": 30.592978795303395, - "y": -4979.198159937005, - "rotation": 0.5322514656689342, - "action": "CARVE_RIGHT" - }, - { - "x": 32.411553427760296, - "y": -4982.526430797171, - "rotation": 0.5863566724807584, - "action": "CARVE_RIGHT" - }, - { - "x": 34.39821614405328, - "y": -4985.6997754982895, - "rotation": 0.6404618792925826, - "action": "CARVE_RIGHT" - }, - { - "x": 36.55270299303052, - "y": -4988.717713542139, - "rotation": 0.6945670861044068, - "action": "CARVE_RIGHT" - }, - { - "x": 38.87467795365964, - "y": -4991.579832756643, - "rotation": 0.7486722929162309, - "action": "CARVE_RIGHT" - }, - { - "x": 41.363733146857, - "y": -4994.285789096224, - "rotation": 0.8027774997280551, - "action": "CARVE_RIGHT" - }, - { - "x": 44.019389046733814, - "y": -4996.835306442706, - "rotation": 0.8568827065398793, - "action": "CARVE_RIGHT" - }, - { - "x": 46.841094691260516, - "y": -4999.228176406756, - "rotation": 0.9109879133517035, - "action": "CARVE_RIGHT" - }, - { - "x": 49.82822789235102, - "y": -5001.464258129882, - "rotation": 0.9650931201635277, - "action": "CARVE_RIGHT" - }, - { - "x": 52.98009544536837, - "y": -5003.543478086968, - "rotation": 1.019198326975352, - "action": "CARVE_RIGHT" - }, - { - "x": 56.29593333805322, - "y": -5005.465829889347, - "rotation": 1.0733035337871761, - "action": "CARVE_RIGHT" - }, - { - "x": 59.77490695887684, - "y": -5007.231374088425, - "rotation": 1.1274087405990003, - "action": "CARVE_RIGHT" - }, - { - "x": 63.41611130482005, - "y": -5008.840237979833, - "rotation": 1.1815139474108245, - "action": "CARVE_RIGHT" - }, - { - "x": 67.21857118857957, - "y": -5010.292615408125, - "rotation": 1.2356191542226487, - "action": "NOTHING" - }, - { - "x": 71.42615795413712, - "y": -5011.363462026702, - "rotation": 1.23212849571866, - "action": "NOTHING" - }, - { - "x": 75.61645818328216, - "y": -5012.443962146929, - "rotation": 1.2286378372146713, - "action": "NOTHING" - }, - { - "x": 79.78955345022885, - "y": -5013.534100879404, - "rotation": 1.2251471787106827, - "action": "NOTHING" - }, - { - "x": 83.94552478050683, - "y": -5014.633863709353, - "rotation": 1.221656520206694, - "action": "NOTHING" - }, - { - "x": 88.08445265248777, - "y": -5015.743236495511, - "rotation": 1.2181658617027054, - "action": "NOTHING" - }, - { - "x": 92.20641699890793, - "y": -5016.862205469004, - "rotation": 1.2146752031987167, - "action": "NOTHING" - }, - { - "x": 96.31149720838661, - "y": -5017.990757232235, - "rotation": 1.211184544694728, - "action": "NOTHING" - }, - { - "x": 100.39977212694065, - "y": -5019.128878757775, - "rotation": 1.2076938861907394, - "action": "NOTHING" - }, - { - "x": 104.47132005949474, - "y": -5020.276557387254, - "rotation": 1.2042032276867507, - "action": "NOTHING" - }, - { - "x": 108.52621877138792, - "y": -5021.433780830255, - "rotation": 1.200712569182762, - "action": "NOTHING" - }, - { - "x": 112.56454548987587, - "y": -5022.600537163217, - "rotation": 1.1972219106787734, - "action": "NOTHING" - }, - { - "x": 116.58637690562935, - "y": -5023.776814828333, - "rotation": 1.1937312521747847, - "action": "NOTHING" - }, - { - "x": 120.59178917422858, - "y": -5024.962602632455, - "rotation": 1.190240593670796, - "action": "NOTHING" - }, - { - "x": 124.58085791765366, - "y": -5026.157889746002, - "rotation": 1.1867499351668074, - "action": "NOTHING" - }, - { - "x": 128.553658225771, - "y": -5027.362665701873, - "rotation": 1.1832592766628187, - "action": "NOTHING" - }, - { - "x": 132.51026465781575, - "y": -5028.576920394357, - "rotation": 1.17976861815883, - "action": "NOTHING" - }, - { - "x": 136.45075124387054, - "y": -5029.800644078055, - "rotation": 1.1762779596548414, - "action": "NOTHING" - }, - { - "x": 140.37519148633987, - "y": -5031.033827366791, - "rotation": 1.1727873011508527, - "action": "NOTHING" - }, - { - "x": 144.28365836142092, - "y": -5032.276461232546, - "rotation": 1.169296642646864, - "action": "NOTHING" - }, - { - "x": 148.1762243205702, - "y": -5033.528537004376, - "rotation": 1.1658059841428754, - "action": "CARVE_LEFT" - }, - { - "x": 151.5133356980761, - "y": -5035.289676361685, - "rotation": 1.1117007773310512, - "action": "CARVE_LEFT" - }, - { - "x": 154.6850813035914, - "y": -5037.199420837205, - "rotation": 1.057595570519227, - "action": "CARVE_LEFT" - }, - { - "x": 157.6922185360967, - "y": -5039.257802393858, - "rotation": 1.0034903637074029, - "action": "CARVE_LEFT" - }, - { - "x": 160.53543019841663, - "y": -5041.464920451912, - "rotation": 0.9493851568955787, - "action": "CARVE_LEFT" - }, - { - "x": 163.2153247152215, - "y": -5043.82094169068, - "rotation": 0.8952799500837545, - "action": "CARVE_LEFT" - }, - { - "x": 165.73243635043065, - "y": -5046.3260998507585, - "rotation": 0.8411747432719303, - "action": "CARVE_LEFT" - }, - { - "x": 168.08722542401935, - "y": -5048.980695536812, - "rotation": 0.7870695364601061, - "action": "CARVE_LEFT" - }, - { - "x": 170.2800785282307, - "y": -5051.785096020907, - "rotation": 0.732964329648282, - "action": "CARVE_LEFT" - }, - { - "x": 172.31130874319385, - "y": -5054.73973504638, - "rotation": 0.6788591228364578, - "action": "CARVE_LEFT" - }, - { - "x": 174.18115585195073, - "y": -5057.845112632249, - "rotation": 0.6247539160246336, - "action": "CARVE_LEFT" - }, - { - "x": 175.8897865548921, - "y": -5061.1017948781655, - "rotation": 0.5706487092128094, - "action": "CARVE_LEFT" - }, - { - "x": 177.43729468360505, - "y": -5064.510413769901, - "rotation": 0.5165435024009852, - "action": "CARVE_LEFT" - }, - { - "x": 178.8237014141331, - "y": -5068.071666985372, - "rotation": 0.462438295589161, - "action": "CARVE_LEFT" - }, - { - "x": 180.04895547965097, - "y": -5071.786317701197, - "rotation": 0.40833308877733676, - "action": "CARVE_LEFT" - }, - { - "x": 181.1129333825549, - "y": -5075.655194399788, - "rotation": 0.3542278819655125, - "action": "CARVE_LEFT" - }, - { - "x": 182.01543960597056, - "y": -5079.679190676978, - "rotation": 0.3001226751536883, - "action": "CARVE_LEFT" - }, - { - "x": 182.75620682467985, - "y": -5083.859265050166, - "rotation": 0.24601746834186408, - "action": "CARVE_LEFT" - }, - { - "x": 183.33489611546833, - "y": -5088.19644076701, - "rotation": 0.19191226153003987, - "action": "CARVE_LEFT" - }, - { - "x": 183.75109716689443, - "y": -5092.6918056146305, - "rotation": 0.13780705471821567, - "action": "CARVE_LEFT" - }, - { - "x": 184.0043284884825, - "y": -5097.346511729349, - "rotation": 0.08370184790639146, - "action": "CARVE_LEFT" - }, - { - "x": 184.09403761934078, - "y": -5102.16177540695, - "rotation": 0.029596641094567243, - "action": "CARVE_LEFT" - }, - { - "x": 184.01961127449417, - "y": -5107.000385836039, - "rotation": 6.258676741462329, - "action": "CARVE_LEFT" - }, - { - "x": 183.7804698594629, - "y": -5111.694934770367, - "rotation": 6.204571534650505, - "action": "CARVE_LEFT" - }, - { - "x": 183.37610832904934, - "y": -5116.244212646748, - "rotation": 6.15046632783868, - "action": "CARVE_LEFT" - }, - { - "x": 182.8060959686822, - "y": -5120.647080358894, - "rotation": 6.096361121026856, - "action": "CARVE_LEFT" - }, - { - "x": 182.07007617636168, - "y": -5124.90246905192, - "rotation": 6.042255914215032, - "action": "CARVE_LEFT" - }, - { - "x": 181.16776624520472, - "y": -5129.009379917415, - "rotation": 5.988150707403207, - "action": "CARVE_LEFT" - }, - { - "x": 180.0989571465879, - "y": -5132.966883989073, - "rotation": 5.934045500591383, - "action": "CARVE_LEFT" - }, - { - "x": 178.8635133138873, - "y": -5136.7741219388845, - "rotation": 5.879940293779558, - "action": "CARVE_LEFT" - }, - { - "x": 177.46137242681286, - "y": -5140.430303873887, - "rotation": 5.825835086967734, - "action": "CARVE_LEFT" - }, - { - "x": 175.8925451963365, - "y": -5143.934709133473, - "rotation": 5.77172988015591, - "action": "CARVE_LEFT" - }, - { - "x": 174.1571151502118, - "y": -5147.286686087252, - "rotation": 5.717624673344085, - "action": "CARVE_LEFT" - }, - { - "x": 172.25523841908404, - "y": -5150.48565193347, - "rotation": 5.663519466532261, - "action": "CARVE_LEFT" - }, - { - "x": 170.1871435231888, - "y": -5153.531092497979, - "rotation": 5.609414259720436, - "action": "CARVE_LEFT" - }, - { - "x": 167.9531311596379, - "y": -5156.42256203376, - "rotation": 5.555309052908612, - "action": "CARVE_LEFT" - }, - { - "x": 165.55357399029066, - "y": -5159.159683020992, - "rotation": 5.501203846096788, - "action": "CARVE_LEFT" - }, - { - "x": 162.9889164302094, - "y": -5161.742145967676, - "rotation": 5.447098639284963, - "action": "CARVE_LEFT" - }, - { - "x": 160.25967443669734, - "y": -5164.169709210802, - "rotation": 5.392993432473139, - "action": "CARVE_LEFT" - }, - { - "x": 157.36643529891737, - "y": -5166.4421987180585, - "rotation": 5.338888225661314, - "action": "CARVE_LEFT" - }, - { - "x": 154.3098574280904, - "y": -5168.559507890094, - "rotation": 5.28478301884949, - "action": "CARVE_LEFT" - }, - { - "x": 151.0906701482715, - "y": -5170.521597363316, - "rotation": 5.230677812037666, - "action": "CARVE_LEFT" - }, - { - "x": 147.70967348770236, - "y": -5172.328494813229, - "rotation": 5.176572605225841, - "action": "CARVE_LEFT" - }, - { - "x": 144.1677379707386, - "y": -5173.980294758319, - "rotation": 5.122467398414017, - "action": "CARVE_LEFT" - }, - { - "x": 140.46580441035053, - "y": -5175.477158364474, - "rotation": 5.068362191602192, - "action": "CARVE_LEFT" - }, - { - "x": 136.6048837011954, - "y": -5176.819313249937, - "rotation": 5.014256984790368, - "action": "CARVE_LEFT" - }, - { - "x": 132.58605661326033, - "y": -5178.007053290801, - "rotation": 4.960151777978544, - "action": "NOTHING" - }, - { - "x": 128.13922490003054, - "y": -5178.791052236254, - "rotation": 4.963642436482532, - "action": "NOTHING" - }, - { - "x": 123.71083215213142, - "y": -5179.584746817121, - "rotation": 4.9671330949865204, - "action": "NOTHING" - }, - { - "x": 119.30078619609293, - "y": -5180.388114584722, - "rotation": 4.970623753490509, - "action": "NOTHING" - }, - { - "x": 114.90899543584771, - "y": -5181.201133486633, - "rotation": 4.974114411994497, - "action": "NOTHING" - }, - { - "x": 110.53536885112936, - "y": -5182.0237818655105, - "rotation": 4.977605070498486, - "action": "NOTHING" - }, - { - "x": 106.17981599587509, - "y": -5182.856038457917, - "rotation": 4.981095729002474, - "action": "NOTHING" - }, - { - "x": 101.8422469966325, - "y": -5183.697882393145, - "rotation": 4.984586387506463, - "action": "NOTHING" - }, - { - "x": 97.52257255097071, - "y": -5184.549293192052, - "rotation": 4.988077046010451, - "action": "NOTHING" - }, - { - "x": 93.22070392589563, - "y": -5185.410250765893, - "rotation": 4.9915677045144395, - "action": "NOTHING" - }, - { - "x": 88.93655295626947, - "y": -5186.280735415158, - "rotation": 4.995058363018428, - "action": "NOTHING" - }, - { - "x": 84.67003204323441, - "y": -5187.160727828417, - "rotation": 4.998549021522416, - "action": "NOTHING" - }, - { - "x": 80.42105415264055, - "y": -5188.050209081157, - "rotation": 5.002039680026405, - "action": "NOTHING" - }, - { - "x": 76.1895328134779, - "y": -5188.949160634634, - "rotation": 5.005530338530393, - "action": "NOTHING" - }, - { - "x": 71.97538211631264, - "y": -5189.857564334723, - "rotation": 5.009020997034382, - "action": "NOTHING" - }, - { - "x": 67.77851671172755, - "y": -5190.775402410771, - "rotation": 5.01251165553837, - "action": "CARVE_RIGHT" - }, - { - "x": 64.16708777531083, - "y": -5192.228778554588, - "rotation": 5.066616862350195, - "action": "CARVE_RIGHT" - }, - { - "x": 60.720440684129116, - "y": -5193.828935450292, - "rotation": 5.120722069162019, - "action": "CARVE_RIGHT" - }, - { - "x": 57.43768256392778, - "y": -5195.575782444864, - "rotation": 5.174827275973843, - "action": "CARVE_RIGHT" - }, - { - "x": 54.31799552899746, - "y": -5197.469296699739, - "rotation": 5.228932482785668, - "action": "CARVE_RIGHT" - }, - { - "x": 51.36063646310164, - "y": -5199.50952299153, - "rotation": 5.283037689597492, - "action": "CARVE_RIGHT" - }, - { - "x": 48.564936801005224, - "y": -5201.696573513289, - "rotation": 5.337142896409317, - "action": "CARVE_RIGHT" - }, - { - "x": 45.930302310602485, - "y": -5204.030627676325, - "rotation": 5.391248103221141, - "action": "CARVE_RIGHT" - }, - { - "x": 43.45621287564284, - "y": -5206.511931912559, - "rotation": 5.445353310032965, - "action": "CARVE_RIGHT" - }, - { - "x": 41.142222279052845, - "y": -5209.14079947743, - "rotation": 5.49945851684479, - "action": "CARVE_RIGHT" - }, - { - "x": 38.98795798685287, - "y": -5211.917610253342, - "rotation": 5.553563723656614, - "action": "CARVE_RIGHT" - }, - { - "x": 36.99312093266683, - "y": -5214.84281055365, - "rotation": 5.607668930468439, - "action": "CARVE_RIGHT" - }, - { - "x": 35.157485302823495, - "y": -5217.916912927191, - "rotation": 5.661774137280263, - "action": "CARVE_RIGHT" - }, - { - "x": 33.480898322047764, - "y": -5221.140495963346, - "rotation": 5.715879344092087, - "action": "CARVE_RIGHT" - }, - { - "x": 31.963280039740305, - "y": -5224.514204097647, - "rotation": 5.769984550903912, - "action": "CARVE_RIGHT" - }, - { - "x": 30.60462311684411, - "y": -5228.038747417914, - "rotation": 5.824089757715736, - "action": "CARVE_RIGHT" - }, - { - "x": 29.404992613296358, - "y": -5231.714901470931, - "rotation": 5.878194964527561, - "action": "CARVE_RIGHT" - }, - { - "x": 28.36452577606403, - "y": -5235.543507069651, - "rotation": 5.932300171339385, - "action": "CARVE_RIGHT" - }, - { - "x": 27.48343182776178, - "y": -5239.525470100933, - "rotation": 5.986405378151209, - "action": "CARVE_RIGHT" - }, - { - "x": 26.76199175585047, - "y": -5243.661761333809, - "rotation": 6.040510584963034, - "action": "CARVE_RIGHT" - }, - { - "x": 26.200558102414913, - "y": -5247.953416228287, - "rotation": 6.094615791774858, - "action": "CARVE_RIGHT" - }, - { - "x": 25.799554754519207, - "y": -5252.401534744667, - "rotation": 6.148720998586683, - "action": "CARVE_RIGHT" - }, - { - "x": 25.559476735138215, - "y": -5257.007281153394, - "rotation": 6.202826205398507, - "action": "CARVE_RIGHT" - }, - { - "x": 25.480889994663624, - "y": -5261.771883845433, - "rotation": 6.2569314122103314, - "action": "CARVE_RIGHT" - }, - { - "x": 25.564418368833003, - "y": -5266.541196396082, - "rotation": 0.027851311842569615, - "action": "CARVE_RIGHT" - }, - { - "x": 25.81064589178097, - "y": -5271.1684032708035, - "rotation": 0.08195651865439382, - "action": "CARVE_RIGHT" - }, - { - "x": 26.220082032020752, - "y": -5275.652290614453, - "rotation": 0.13606172546621803, - "action": "CARVE_RIGHT" - }, - { - "x": 26.79316191115055, - "y": -5279.991715044298, - "rotation": 0.19016693227804224, - "action": "CARVE_RIGHT" - }, - { - "x": 27.530246521958414, - "y": -5284.185603444478, - "rotation": 0.24427213908986645, - "action": "CARVE_RIGHT" - }, - { - "x": 28.43162294592738, - "y": -5288.2329527610245, - "rotation": 0.2983773459016907, - "action": "CARVE_RIGHT" - }, - { - "x": 29.497504570142294, - "y": -5292.132829797446, - "rotation": 0.3524825527135149, - "action": "CARVE_RIGHT" - }, - { - "x": 30.72803130360003, - "y": -5295.884371010871, - "rotation": 0.40658775952533915, - "action": "CARVE_RIGHT" - }, - { - "x": 32.123269792924596, - "y": -5299.486782308755, - "rotation": 0.4606929663371634, - "action": "CARVE_RIGHT" - }, - { - "x": 33.683213637488734, - "y": -5302.9393388461385, - "rotation": 0.5147981731489876, - "action": "CARVE_RIGHT" - }, - { - "x": 35.40778360394358, - "y": -5306.241384823464, - "rotation": 0.5689033799608118, - "action": "CARVE_RIGHT" - }, - { - "x": 37.29682784015793, - "y": -5309.392333284948, - "rotation": 0.6230085867726359, - "action": "CARVE_RIGHT" - }, - { - "x": 39.35012208856871, - "y": -5312.391665917505, - "rotation": 0.6771137935844601, - "action": "CARVE_RIGHT" - }, - { - "x": 41.56736989894414, - "y": -5315.238932850222, - "rotation": 0.7312190003962843, - "action": "CARVE_RIGHT" - }, - { - "x": 43.94820284056122, - "y": -5317.933752454386, - "rotation": 0.7853242072081085, - "action": "CARVE_RIGHT" - }, - { - "x": 46.49218071379901, - "y": -5320.475811144057, - "rotation": 0.8394294140199327, - "action": "CARVE_RIGHT" - }, - { - "x": 49.19879176114932, - "y": -5322.864863177189, - "rotation": 0.8935346208317568, - "action": "CARVE_RIGHT" - }, - { - "x": 52.06745287764631, - "y": -5325.100730457301, - "rotation": 0.947639827643581, - "action": "NOTHING" - }, - { - "x": 55.24156512934711, - "y": -5327.051387790655, - "rotation": 0.9441491691395923, - "action": "NOTHING" - }, - { - "x": 58.40243341420602, - "y": -5329.011975147975, - "rotation": 0.9406585106356037, - "action": "NOTHING" - }, - { - "x": 61.550102306866386, - "y": -5330.9825030555085, - "rotation": 0.937167852131615, - "action": "NOTHING" - }, - { - "x": 64.68461593586308, - "y": -5332.962982338607, - "rotation": 0.9336771936276264, - "action": "NOTHING" - }, - { - "x": 67.80601798487682, - "y": -5334.9534241208175, - "rotation": 0.9301865351236377, - "action": "NOTHING" - }, - { - "x": 70.9143516939852, - "y": -5336.953839822975, - "rotation": 0.926695876619649, - "action": "NOTHING" - }, - { - "x": 74.00965986091023, - "y": -5338.964241162294, - "rotation": 0.9232052181156604, - "action": "NOTHING" - }, - { - "x": 77.09198484226273, - "y": -5340.984640151466, - "rotation": 0.9197145596116717, - "action": "NOTHING" - }, - { - "x": 80.16136855478317, - "y": -5343.015049097762, - "rotation": 0.916223901107683, - "action": "NOTHING" - }, - { - "x": 83.21785247657934, - "y": -5345.055480602132, - "rotation": 0.9127332426036944, - "action": "NOTHING" - }, - { - "x": 86.26147764836067, - "y": -5347.105947558309, - "rotation": 0.9092425840997057, - "action": "NOTHING" - }, - { - "x": 89.2922846746692, - "y": -5349.166463151918, - "rotation": 0.905751925595717, - "action": "NOTHING" - }, - { - "x": 92.31031372510733, - "y": -5351.237040859583, - "rotation": 0.9022612670917284, - "action": "NOTHING" - }, - { - "x": 95.31560453556216, - "y": -5353.317694448044, - "rotation": 0.8987706085877397, - "action": "NOTHING" - }, - { - "x": 98.30819640942666, - "y": -5355.408437973263, - "rotation": 0.895279950083751, - "action": "NOTHING" - }, - { - "x": 101.28812821881749, - "y": -5357.509285779552, - "rotation": 0.8917892915797624, - "action": "NOTHING" - }, - { - "x": 104.25543840578965, - "y": -5359.620252498682, - "rotation": 0.8882986330757737, - "action": "NOTHING" - }, - { - "x": 107.21016498354773, - "y": -5361.741353049014, - "rotation": 0.8848079745717851, - "action": "NOTHING" - }, - { - "x": 110.15234553765406, - "y": -5363.872602634616, - "rotation": 0.8813173160677964, - "action": "NOTHING" - }, - { - "x": 113.08201722723351, - "y": -5366.014016744395, - "rotation": 0.8778266575638077, - "action": "NOTHING" - }, - { - "x": 115.99921678617511, - "y": -5368.165611151226, - "rotation": 0.8743359990598191, - "action": "NOTHING" - }, - { - "x": 118.90398052433045, - "y": -5370.3274019110795, - "rotation": 0.8708453405558304, - "action": "NOTHING" - }, - { - "x": 121.79634432870884, - "y": -5372.499405362161, - "rotation": 0.8673546820518417, - "action": "NOTHING" - }, - { - "x": 124.67634366466929, - "y": -5374.681638124047, - "rotation": 0.8638640235478531, - "action": "NOTHING" - }, - { - "x": 127.54401357710925, - "y": -5376.87411709682, - "rotation": 0.8603733650438644, - "action": "NOTHING" - }, - { - "x": 130.39938869165024, - "y": -5379.076859460214, - "rotation": 0.8568827065398757, - "action": "NOTHING" - }, - { - "x": 133.24250321582016, - "y": -5381.28988267276, - "rotation": 0.8533920480358871, - "action": "CARVE_LEFT" - }, - { - "x": 135.6385604445327, - "y": -5383.915801966944, - "rotation": 0.7992868412240629, - "action": "CARVE_LEFT" - }, - { - "x": 137.87227646116682, - "y": -5386.691716973861, - "rotation": 0.7451816344122387, - "action": "CARVE_LEFT" - }, - { - "x": 139.94398233131005, - "y": -5389.618045189127, - "rotation": 0.6910764276004145, - "action": "CARVE_LEFT" - }, - { - "x": 141.85393577034887, - "y": -5392.6952704323285, - "rotation": 0.6369712207885904, - "action": "CARVE_LEFT" - }, - { - "x": 143.60232135805157, - "y": -5395.923942651837, - "rotation": 0.5828660139767662, - "action": "CARVE_LEFT" - }, - { - "x": 145.18925075256197, - "y": -5399.304677730164, - "rotation": 0.528760807164942, - "action": "CARVE_LEFT" - }, - { - "x": 146.61476290380557, - "y": -5402.838157289855, - "rotation": 0.47465560035311777, - "action": "CARVE_LEFT" - }, - { - "x": 147.87882426630952, - "y": -5406.5251284999085, - "rotation": 0.42055039354129353, - "action": "CARVE_LEFT" - }, - { - "x": 148.98132901143828, - "y": -5410.366403882742, - "rotation": 0.3664451867294693, - "action": "CARVE_LEFT" - }, - { - "x": 149.92209923904608, - "y": -5414.362861121678, - "rotation": 0.31233997991764506, - "action": "CARVE_LEFT" - }, - { - "x": 150.7008851885482, - "y": -5418.51544286897, - "rotation": 0.2582347731058208, - "action": "CARVE_LEFT" - }, - { - "x": 151.31736544941222, - "y": -5422.825156554351, - "rotation": 0.20412956629399662, - "action": "CARVE_LEFT" - }, - { - "x": 151.771147171071, - "y": -5427.293074194116, - "rotation": 0.1500243594821724, - "action": "NOTHING" - }, - { - "x": 152.2644526062057, - "y": -5431.732683002625, - "rotation": 0.14653370097818375, - "action": "NOTHING" - }, - { - "x": 152.74682458150335, - "y": -5436.190731019625, - "rotation": 0.14304304247419508, - "action": "NOTHING" - }, - { - "x": 153.21822590421328, - "y": -5440.667281055117, - "rotation": 0.13955238397020642, - "action": "NOTHING" - }, - { - "x": 153.67861917146527, - "y": -5445.1623960512425, - "rotation": 0.13606172546621775, - "action": "NOTHING" - }, - { - "x": 154.12796677088124, - "y": -5449.676139081846, - "rotation": 0.1325710669622291, - "action": "NOTHING" - }, - { - "x": 154.56623088118533, - "y": -5454.208573352052, - "rotation": 0.12908040845824043, - "action": "CARVE_LEFT" - }, - { - "x": 154.79572776131016, - "y": -5458.942744152934, - "rotation": 0.07497520164641622, - "action": "CARVE_LEFT" - }, - { - "x": 154.8597282141528, - "y": -5463.8392907058, - "rotation": 0.020869994834592002, - "action": "CARVE_LEFT" - }, - { - "x": 154.7576241510546, - "y": -5468.7095090422945, - "rotation": 6.249950095202354, - "action": "CARVE_LEFT" - }, - { - "x": 154.4888562431568, - "y": -5473.433618878488, - "rotation": 6.195844888390529, - "action": "CARVE_LEFT" - }, - { - "x": 154.05293964843045, - "y": -5478.010429891519, - "rotation": 6.141739681578705, - "action": "CARVE_LEFT" - }, - { - "x": 153.44946379319754, - "y": -5482.438822156586, - "rotation": 6.0876344747668805, - "action": "CARVE_LEFT" - }, - { - "x": 152.67809215425234, - "y": -5486.717745941621, - "rotation": 6.033529267955056, - "action": "CARVE_LEFT" - }, - { - "x": 151.7385620415823, - "y": -5490.846221502523, - "rotation": 5.979424061143232, - "action": "CARVE_LEFT" - }, - { - "x": 150.6306843816864, - "y": -5494.823338878958, - "rotation": 5.925318854331407, - "action": "CARVE_LEFT" - }, - { - "x": 149.35434350148958, - "y": -5498.648257690708, - "rotation": 5.871213647519583, - "action": "CARVE_LEFT" - }, - { - "x": 147.90949691285172, - "y": -5502.320206934595, - "rotation": 5.8171084407077585, - "action": "CARVE_LEFT" - }, - { - "x": 146.29617509766942, - "y": -5505.838484781943, - "rotation": 5.763003233895934, - "action": "CARVE_LEFT" - }, - { - "x": 144.51448129356916, - "y": -5509.20245837661, - "rotation": 5.70889802708411, - "action": "CARVE_LEFT" - }, - { - "x": 142.5645912801903, - "y": -5512.4115636335655, - "rotation": 5.654792820272285, - "action": "CARVE_LEFT" - }, - { - "x": 140.44675316605614, - "y": -5515.465305038027, - "rotation": 5.600687613460461, - "action": "CARVE_LEFT" - }, - { - "x": 138.16128717603178, - "y": -5518.363255445138, - "rotation": 5.546582406648636, - "action": "CARVE_LEFT" - }, - { - "x": 135.70858543936708, - "y": -5521.105055880208, - "rotation": 5.492477199836812, - "action": "CARVE_LEFT" - }, - { - "x": 133.08911177832312, - "y": -5523.690415339488, - "rotation": 5.438371993024988, - "action": "CARVE_LEFT" - }, - { - "x": 130.3034014973807, - "y": -5526.119110591502, - "rotation": 5.384266786213163, - "action": "CARVE_LEFT" - }, - { - "x": 127.35206117302943, - "y": -5528.390985978919, - "rotation": 5.330161579401339, - "action": "CARVE_LEFT" - }, - { - "x": 124.23576844413566, - "y": -5530.50595322097, - "rotation": 5.276056372589514, - "action": "CARVE_LEFT" - }, - { - "x": 120.95527180288785, - "y": -5532.463991216406, - "rotation": 5.22195116577769, - "action": "CARVE_LEFT" - }, - { - "x": 117.51139038631787, - "y": -5534.265145847, - "rotation": 5.167845958965866, - "action": "CARVE_LEFT" - }, - { - "x": 113.9050137683967, - "y": -5535.909529781586, - "rotation": 5.113740752154041, - "action": "CARVE_LEFT" - }, - { - "x": 110.13710175270292, - "y": -5537.397322280634, - "rotation": 5.059635545342217, - "action": "CARVE_LEFT" - }, - { - "x": 106.20868416566259, - "y": -5538.728769001371, - "rotation": 5.005530338530392, - "action": "CARVE_LEFT" - }, - { - "x": 102.12086065035895, - "y": -5539.904181803419, - "rotation": 4.951425131718568, - "action": "NOTHING" - }, - { - "x": 97.59774475764418, - "y": -5540.668875496411, - "rotation": 4.9549157902225565, - "action": "NOTHING" - }, - { - "x": 93.09344440409939, - "y": -5541.443383915488, - "rotation": 4.958406448726545, - "action": "NOTHING" - }, - { - "x": 88.6078654779912, - "y": -5542.227683322377, - "rotation": 4.961897107230533, - "action": "NOTHING" - }, - { - "x": 84.14091445046263, - "y": -5543.021750379017, - "rotation": 4.965387765734522, - "action": "NOTHING" - }, - { - "x": 79.69249837391669, - "y": -5543.825562146377, - "rotation": 4.96887842423851, - "action": "NOTHING" - }, - { - "x": 75.26252488040438, - "y": -5544.6390960832605, - "rotation": 4.972369082742499, - "action": "NOTHING" - }, - { - "x": 70.85090218001685, - "y": -5545.462330045131, - "rotation": 4.975859741246487, - "action": "NOTHING" - }, - { - "x": 66.4575390592819, - "y": -5546.295242282928, - "rotation": 4.9793503997504756, - "action": "NOTHING" - }, - { - "x": 62.082344879564744, - "y": -5547.137811441887, - "rotation": 4.982841058254464, - "action": "NOTHING" - }, - { - "x": 57.72522957547298, - "y": -5547.990016560373, - "rotation": 4.986331716758452, - "action": "NOTHING" - }, - { - "x": 53.38610365326581, - "y": -5548.851837068706, - "rotation": 4.989822375262441, - "action": "NOTHING" - }, - { - "x": 49.06487818926752, - "y": -5549.723252787996, - "rotation": 4.993313033766429, - "action": "NOTHING" - }, - { - "x": 44.76146482828507, - "y": -5550.604243928978, - "rotation": 4.996803692270418, - "action": "NOTHING" - }, - { - "x": 40.47577578203006, - "y": -5551.494791090851, - "rotation": 5.000294350774406, - "action": "CARVE_RIGHT" - }, - { - "x": 36.7865109077228, - "y": -5552.93076588992, - "rotation": 5.054399557586231, - "action": "CARVE_RIGHT" - }, - { - "x": 33.26410815461826, - "y": -5554.5151640172635, - "rotation": 5.108504764398055, - "action": "CARVE_RIGHT" - }, - { - "x": 29.9076496608464, - "y": -5556.247872307113, - "rotation": 5.162609971209879, - "action": "CARVE_RIGHT" - }, - { - "x": 26.716292628898422, - "y": -5558.128845476982, - "rotation": 5.216715178021704, - "action": "CARVE_RIGHT" - }, - { - "x": 23.68926910634176, - "y": -5560.158105928194, - "rotation": 5.270820384833528, - "action": "CARVE_RIGHT" - }, - { - "x": 20.825885767136548, - "y": -5562.335743546953, - "rotation": 5.324925591645353, - "action": "CARVE_RIGHT" - }, - { - "x": 18.125523693552044, - "y": -5564.661915505965, - "rotation": 5.379030798457177, - "action": "CARVE_RIGHT" - }, - { - "x": 15.587638158681472, - "y": -5567.136846066605, - "rotation": 5.433136005269001, - "action": "CARVE_RIGHT" - }, - { - "x": 13.211758409553632, - "y": -5569.760826381629, - "rotation": 5.487241212080826, - "action": "CARVE_RIGHT" - }, - { - "x": 10.997487450839735, - "y": -5572.534214298429, - "rotation": 5.54134641889265, - "action": "CARVE_RIGHT" - }, - { - "x": 8.944501829153907, - "y": -5575.45743416283, - "rotation": 5.595451625704475, - "action": "CARVE_RIGHT" - }, - { - "x": 7.052551417945777, - "y": -5578.5309766234295, - "rotation": 5.649556832516299, - "action": "CARVE_RIGHT" - }, - { - "x": 5.321459202983588, - "y": -5581.755398436469, - "rotation": 5.703662039328123, - "action": "CARVE_RIGHT" - }, - { - "x": 3.7511210684263006, - "y": -5585.131322271253, - "rotation": 5.757767246139948, - "action": "CARVE_RIGHT" - }, - { - "x": 2.3415055834830936, - "y": -5588.659436516101, - "rotation": 5.811872452951772, - "action": "CARVE_RIGHT" - }, - { - "x": 1.0926537896587443, - "y": -5592.340495084825, - "rotation": 5.865977659763597, - "action": "CARVE_RIGHT" - }, - { - "x": 0.004678988583332266, - "y": -5596.175317223757, - "rotation": 5.920082866575421, - "action": "CARVE_RIGHT" - }, - { - "x": -0.9222334695752654, - "y": -5600.164787319293, - "rotation": 5.9741880733872454, - "action": "CARVE_RIGHT" - }, - { - "x": -1.6878263971176484, - "y": -5604.30985470598, - "rotation": 6.02829328019907, - "action": "CARVE_RIGHT" - }, - { - "x": -2.291770979239444, - "y": -5608.61153347512, - "rotation": 6.082398487010894, - "action": "CARVE_RIGHT" - }, - { - "x": -2.7336669838796777, - "y": -5613.070902283915, - "rotation": 6.136503693822719, - "action": "CARVE_RIGHT" - }, - { - "x": -3.013042970992488, - "y": -5617.689104165124, - "rotation": 6.190608900634543, - "action": "CARVE_RIGHT" - }, - { - "x": -3.129356501243696, - "y": -5622.467346337261, - "rotation": 6.2447141074463675, - "action": "CARVE_RIGHT" - }, - { - "x": -3.081998388182776, - "y": -5627.318778038881, - "rotation": 0.015634007078605627, - "action": "CARVE_RIGHT" - }, - { - "x": -2.8703751985945627, - "y": -5632.026710482834, - "rotation": 0.06973921389042984, - "action": "CARVE_RIGHT" - }, - { - "x": -2.4939680897138574, - "y": -5636.589921010141, - "rotation": 0.12384442070225404, - "action": "CARVE_RIGHT" - }, - { - "x": -1.9523325904553497, - "y": -5641.007257457438, - "rotation": 0.17794962751407825, - "action": "CARVE_RIGHT" - }, - { - "x": -1.2450983832451026, - "y": -5645.277637951374, - "rotation": 0.23205483432590246, - "action": "CARVE_RIGHT" - }, - { - "x": -0.37196908645202353, - "y": -5649.400050703576, - "rotation": 0.2861600411377267, - "action": "CARVE_RIGHT" - }, - { - "x": 0.6672779625822671, - "y": -5653.373553806172, - "rotation": 0.34026524794955093, - "action": "CARVE_RIGHT" - }, - { - "x": 1.8727919239167496, - "y": -5657.197275027878, - "rotation": 0.39437045476137517, - "action": "CARVE_RIGHT" - }, - { - "x": 3.244648670789074, - "y": -5660.870411610644, - "rotation": 0.4484756615731994, - "action": "CARVE_RIGHT" - }, - { - "x": 4.7828510047999595, - "y": -5664.392230066851, - "rotation": 0.5025808683850236, - "action": "CARVE_RIGHT" - }, - { - "x": 6.487328870505491, - "y": -5667.762065977075, - "rotation": 0.5566860751968478, - "action": "CARVE_RIGHT" - }, - { - "x": 8.357939569418875, - "y": -5670.979323788394, - "rotation": 0.6107912820086719, - "action": "CARVE_RIGHT" - }, - { - "x": 10.394467973423216, - "y": -5674.043476613261, - "rotation": 0.6648964888204961, - "action": "CARVE_RIGHT" - }, - { - "x": 12.596626737596875, - "y": -5676.954066028914, - "rotation": 0.7190016956323203, - "action": "CARVE_RIGHT" - }, - { - "x": 14.96405651245294, - "y": -5679.710701877349, - "rotation": 0.7731069024441445, - "action": "CARVE_RIGHT" - }, - { - "x": 17.496326155594392, - "y": -5682.313062065832, - "rotation": 0.8272121092559687, - "action": "CARVE_RIGHT" - }, - { - "x": 20.19293294278648, - "y": -5684.760892367969, - "rotation": 0.8813173160677928, - "action": "CARVE_RIGHT" - }, - { - "x": 23.05330277844785, - "y": -5687.05400622531, - "rotation": 0.935422522879617, - "action": "CARVE_RIGHT" - }, - { - "x": 26.07679040556198, - "y": -5689.1922845495055, - "rotation": 0.9895277296914412, - "action": "CARVE_RIGHT" - }, - { - "x": 29.262679615010438, - "y": -5691.1756755250035, - "rotation": 1.0436329365032655, - "action": "CARVE_RIGHT" - }, - { - "x": 32.610183454329494, - "y": -5693.004194412289, - "rotation": 1.0977381433150897, - "action": "NOTHING" - }, - { - "x": 36.31444126288366, - "y": -5694.497914808149, - "rotation": 1.094247484811101, - "action": "NOTHING" - }, - { - "x": 40.00357200305119, - "y": -5696.001227508978, - "rotation": 1.0907568263071123, - "action": "NOTHING" - }, - { - "x": 43.677639008505075, - "y": -5697.514130250481, - "rotation": 1.0872661678031237, - "action": "NOTHING" - }, - { - "x": 47.336705114574734, - "y": -5699.036621105759, - "rotation": 1.083775509299135, - "action": "NOTHING" - }, - { - "x": 50.98083265963936, - "y": -5700.568698484295, - "rotation": 1.0802848507951464, - "action": "NOTHING" - }, - { - "x": 54.6100834865176, - "y": -5702.110361130938, - "rotation": 1.0767941922911577, - "action": "NOTHING" - }, - { - "x": 58.22451894385348, - "y": -5703.66160812489, - "rotation": 1.073303533787169, - "action": "NOTHING" - }, - { - "x": 61.82419988749868, - "y": -5705.2224388787, - "rotation": 1.0698128752831804, - "action": "NOTHING" - }, - { - "x": 65.40918668189107, - "y": -5706.7928531372545, - "rotation": 1.0663222167791917, - "action": "NOTHING" - }, - { - "x": 68.9795392014296, - "y": -5708.372850976779, - "rotation": 1.062831558275203, - "action": "NOTHING" - }, - { - "x": 72.53531683184552, - "y": -5709.962432803833, - "rotation": 1.0593408997712144, - "action": "NOTHING" - }, - { - "x": 76.07657847156989, - "y": -5711.561599354315, - "rotation": 1.0558502412672257, - "action": "NOTHING" - }, - { - "x": 79.60338253309752, - "y": -5713.170351692468, - "rotation": 1.052359582763237, - "action": "NOTHING" - }, - { - "x": 83.11578694434716, - "y": -5714.788691209887, - "rotation": 1.0488689242592484, - "action": "NOTHING" - }, - { - "x": 86.6138491500182, - "y": -5716.416619624527, - "rotation": 1.0453782657552597, - "action": "NOTHING" - }, - { - "x": 90.09762611294359, - "y": -5718.054138979722, - "rotation": 1.041887607251271, - "action": "CARVE_LEFT" - }, - { - "x": 93.0680007665651, - "y": -5720.1634260403025, - "rotation": 0.9877824004394469, - "action": "CARVE_LEFT" - }, - { - "x": 95.87401467561584, - "y": -5722.422025436157, - "rotation": 0.9336771936276227, - "action": "CARVE_LEFT" - }, - { - "x": 98.51625738477237, - "y": -5724.830120947705, - "rotation": 0.8795719868157985, - "action": "CARVE_LEFT" - }, - { - "x": 100.99524433220304, - "y": -5727.387963367261, - "rotation": 0.8254667800039743, - "action": "CARVE_LEFT" - }, - { - "x": 103.31141706622755, - "y": -5730.095870301959, - "rotation": 0.7713615731921502, - "action": "CARVE_LEFT" - }, - { - "x": 105.46514346138184, - "y": -5732.95422597721, - "rotation": 0.717256366380326, - "action": "CARVE_LEFT" - }, - { - "x": 107.45671793389003, - "y": -5735.963481040712, - "rotation": 0.6631511595685018, - "action": "CARVE_LEFT" - }, - { - "x": 109.28636165654473, - "y": -5739.124152366994, - "rotation": 0.6090459527566776, - "action": "CARVE_LEFT" - }, - { - "x": 110.95422277299753, - "y": -5742.436822862499, - "rotation": 0.5549407459448534, - "action": "CARVE_LEFT" - }, - { - "x": 112.46037661146106, - "y": -5745.902141271203, - "rotation": 0.5008355391330293, - "action": "CARVE_LEFT" - }, - { - "x": 113.80482589782422, - "y": -5749.520821980773, - "rotation": 0.446730332321205, - "action": "CARVE_LEFT" - }, - { - "x": 114.9875009681821, - "y": -5753.293644829258, - "rotation": 0.3926251255093808, - "action": "CARVE_LEFT" - }, - { - "x": 116.00825998078228, - "y": -5757.221454912311, - "rotation": 0.33851991869755654, - "action": "CARVE_LEFT" - }, - { - "x": 116.86688912738879, - "y": -5761.305162390946, - "rotation": 0.2844147118857323, - "action": "CARVE_LEFT" - }, - { - "x": 117.56310284406545, - "y": -5765.545742299819, - "rotation": 0.2303095050739081, - "action": "CARVE_LEFT" - }, - { - "x": 118.09654402138021, - "y": -5769.944234356045, - "rotation": 0.1762042982620839, - "action": "CARVE_LEFT" - }, - { - "x": 118.46678421403165, - "y": -5774.501742768536, - "rotation": 0.12209909145025968, - "action": "CARVE_LEFT" - }, - { - "x": 118.67332384989962, - "y": -5779.219436047871, - "rotation": 0.06799388463843548, - "action": "CARVE_LEFT" - }, - { - "x": 118.71559243852121, - "y": -5784.098546816682, - "rotation": 0.01388867782661126, - "action": "CARVE_LEFT" - }, - { - "x": 118.59297553892358, - "y": -5788.912203199496, - "rotation": 6.242968778194373, - "action": "CARVE_LEFT" - }, - { - "x": 118.30491774763507, - "y": -5793.580872763556, - "rotation": 6.188863571382549, - "action": "CARVE_LEFT" - }, - { - "x": 117.85093813859136, - "y": -5798.103368835394, - "rotation": 6.134758364570724, - "action": "CARVE_LEFT" - }, - { - "x": 117.23063004467869, - "y": -5802.478575130848, - "rotation": 6.0806531577589, - "action": "CARVE_LEFT" - }, - { - "x": 116.44366083987786, - "y": -5806.705445549755, - "rotation": 6.026547950947076, - "action": "CARVE_LEFT" - }, - { - "x": 115.48977172200735, - "y": -5810.783003971203, - "rotation": 5.972442744135251, - "action": "CARVE_LEFT" - }, - { - "x": 114.36877749606401, - "y": -5814.710344049354, - "rotation": 5.918337537323427, - "action": "CARVE_LEFT" - }, - { - "x": 113.0805663581598, - "y": -5818.486629009817, - "rotation": 5.864232330511602, - "action": "CARVE_LEFT" - }, - { - "x": 111.62509968005284, - "y": -5822.111091446584, - "rotation": 5.810127123699778, - "action": "CARVE_LEFT" - }, - { - "x": 110.00241179427147, - "y": -5825.583033119523, - "rotation": 5.756021916887954, - "action": "CARVE_LEFT" - }, - { - "x": 108.2126097798294, - "y": -5828.901824752422, - "rotation": 5.701916710076129, - "action": "CARVE_LEFT" - }, - { - "x": 106.2558732485308, - "y": -5832.066905831592, - "rotation": 5.647811503264305, - "action": "CARVE_LEFT" - }, - { - "x": 104.13245413186331, - "y": -5835.07778440502, - "rotation": 5.59370629645248, - "action": "CARVE_LEFT" - }, - { - "x": 101.84267646847789, - "y": -5837.934036882074, - "rotation": 5.539601089640656, - "action": "CARVE_LEFT" - }, - { - "x": 99.38693619225359, - "y": -5840.635307833755, - "rotation": 5.485495882828832, - "action": "CARVE_LEFT" - }, - { - "x": 96.76570092094587, - "y": -5843.181309793499, - "rotation": 5.431390676017007, - "action": "CARVE_LEFT" - }, - { - "x": 93.97950974541698, - "y": -5845.571823058527, - "rotation": 5.377285469205183, - "action": "CARVE_LEFT" - }, - { - "x": 91.02897301944657, - "y": -5847.806695491736, - "rotation": 5.323180262393358, - "action": "CARVE_LEFT" - }, - { - "x": 87.91477215012146, - "y": -5849.885842324137, - "rotation": 5.269075055581534, - "action": "CARVE_LEFT" - }, - { - "x": 84.6376593888026, - "y": -5851.809245957836, - "rotation": 5.21496984876971, - "action": "CARVE_LEFT" - }, - { - "x": 81.1984576226679, - "y": -5853.576955769549, - "rotation": 5.160864641957885, - "action": "CARVE_LEFT" - }, - { - "x": 77.59806016682948, - "y": -5855.1890879146695, - "rotation": 5.106759435146061, - "action": "CARVE_LEFT" - }, - { - "x": 73.83743055702364, - "y": -5856.645825131858, - "rotation": 5.052654228334236, - "action": "CARVE_LEFT" - }, - { - "x": 69.91760234287214, - "y": -5857.9474165481815, - "rotation": 4.998549021522412, - "action": "CARVE_LEFT" - }, - { - "x": 65.8396788817133, - "y": -5859.09417748478, - "rotation": 4.944443814710588, - "action": "CARVE_LEFT" - }, - { - "x": 61.6048331330013, - "y": -5860.086489263071, - "rotation": 4.890338607898763, - "action": "NOTHING" - }, - { - "x": 56.91925005551566, - "y": -5860.653067717264, - "rotation": 4.893829266402752, - "action": "NOTHING" - }, - { "x": 52.2533657814388, "y": -5861.229566969987, "rotation": 4.89731992490674, "action": "NOTHING" }, - { - "x": 47.6070786313786, - "y": -5861.815957841756, - "rotation": 4.9008105834107285, - "action": "NOTHING" - }, - { - "x": 42.98028752921799, - "y": -5862.412211568747, - "rotation": 4.904301241914717, - "action": "NOTHING" - }, - { - "x": 38.37289200044552, - "y": -5863.018299801561, - "rotation": 4.907791900418705, - "action": "NOTHING" - }, - { - "x": 33.784792170490256, - "y": -5863.634194603998, - "rotation": 4.911282558922694, - "action": "NOTHING" - }, - { - "x": 29.215888763061177, - "y": -5864.259868451834, - "rotation": 4.914773217426682, - "action": "NOTHING" - }, - { - "x": 24.666083098490905, - "y": -5864.895294231597, - "rotation": 4.918263875930671, - "action": "NOTHING" - }, - { - "x": 20.135277092083882, - "y": -5865.54044523935, - "rotation": 4.921754534434659, - "action": "NOTHING" - }, - { - "x": 15.623373252468895, - "y": -5866.195295179478, - "rotation": 4.925245192938648, - "action": "NOTHING" - }, - { - "x": 11.130274679955967, - "y": -5866.859818163474, - "rotation": 4.928735851442636, - "action": "NOTHING" - }, - { - "x": 6.655885064897641, - "y": -5867.533988708735, - "rotation": 4.9322265099466245, - "action": "CARVE_RIGHT" - }, - { - "x": 2.7963389612495124, - "y": -5868.769823473646, - "rotation": 4.986331716758449, - "action": "CARVE_RIGHT" - }, - { - "x": -0.8968830191009349, - "y": -5870.152766859529, - "rotation": 5.040436923570273, - "action": "CARVE_RIGHT" - }, - { - "x": -4.424785766349224, - "y": -5871.682626915265, - "rotation": 5.094542130382098, - "action": "CARVE_RIGHT" - }, - { - "x": -7.788298854854987, - "y": -5873.359279801915, - "rotation": 5.148647337193922, - "action": "CARVE_RIGHT" - }, - { - "x": -10.988276763112292, - "y": -5875.182669592617, - "rotation": 5.2027525440057465, - "action": "CARVE_RIGHT" - }, - { - "x": -14.025499093116633, - "y": -5877.152808073034, - "rotation": 5.256857750817571, - "action": "CARVE_RIGHT" - }, - { - "x": -16.900670789130167, - "y": -5879.269774542355, - "rotation": 5.310962957629395, - "action": "CARVE_RIGHT" - }, - { - "x": -19.614422355846784, - "y": -5881.533715614838, - "rotation": 5.36506816444122, - "action": "CARVE_RIGHT" - }, - { - "x": -22.1673100759586, - "y": -5883.944845021905, - "rotation": 5.419173371253044, - "action": "CARVE_RIGHT" - }, - { - "x": -24.559816227125445, - "y": -5886.503443414778, - "rotation": 5.4732785780648685, - "action": "CARVE_RIGHT" - }, - { - "x": -26.792349298348917, - "y": -5889.209858167661, - "rotation": 5.527383784876693, - "action": "CARVE_RIGHT" - }, - { - "x": -28.86524420575256, - "y": -5892.064503181462, - "rotation": 5.581488991688517, - "action": "CARVE_RIGHT" - }, - { - "x": -30.778762507769784, - "y": -5895.067858688058, - "rotation": 5.635594198500342, - "action": "CARVE_RIGHT" - }, - { - "x": -32.533092619741005, - "y": -5898.220471055096, - "rotation": 5.689699405312166, - "action": "CARVE_RIGHT" - }, - { - "x": -34.12835002792165, - "y": -5901.522952591339, - "rotation": 5.7438046121239905, - "action": "CARVE_RIGHT" - }, - { - "x": -35.56457750290251, - "y": -5904.975981352538, - "rotation": 5.797909818935815, - "action": "CARVE_RIGHT" - }, - { - "x": -36.841745312444026, - "y": -5908.580300947847, - "rotation": 5.852015025747639, - "action": "CARVE_RIGHT" - }, - { - "x": -37.959751433726076, - "y": -5912.336720346768, - "rotation": 5.906120232559464, - "action": "CARVE_RIGHT" - }, - { - "x": -38.91842176501472, - "y": -5916.2461136866295, - "rotation": 5.960225439371288, - "action": "CARVE_RIGHT" - }, - { - "x": -39.717510336747566, - "y": -5920.309420080595, - "rotation": 6.0143306461831125, - "action": "CARVE_RIGHT" - }, - { - "x": -40.35669952203916, - "y": -5924.527643426201, - "rotation": 6.068435852994937, - "action": "CARVE_RIGHT" - }, - { - "x": -40.83560024660803, - "y": -5928.901852214425, - "rotation": 6.122541059806761, - "action": "CARVE_RIGHT" - }, - { - "x": -41.15375219812687, - "y": -5933.433179339275, - "rotation": 6.176646266618586, - "action": "CARVE_RIGHT" - }, - { - "x": -41.31062403499737, - "y": -5938.122821907909, - "rotation": 6.23075147343041, - "action": "CARVE_RIGHT" - }, - { - "x": -41.30561364077046, - "y": -5942.9627178114315, - "rotation": 0.001671373062648307, - "action": "CARVE_RIGHT" - }, - { - "x": -41.13810115892894, - "y": -5947.6610451637225, - "rotation": 0.05577657987447252, - "action": "CARVE_RIGHT" - }, - { - "x": -40.8075414035091, - "y": -5952.216556257672, - "rotation": 0.10988178668629674, - "action": "CARVE_RIGHT" - }, - { - "x": -40.313463640106086, - "y": -5956.628073957191, - "rotation": 0.16398699349812096, - "action": "CARVE_RIGHT" - }, - { - "x": -39.655471367481425, - "y": -5960.894491491399, - "rotation": 0.21809220030994517, - "action": "CARVE_RIGHT" - }, - { - "x": -38.83324209977111, - "y": -5965.0147722493775, - "rotation": 0.2721974071217694, - "action": "CARVE_RIGHT" - }, - { - "x": -37.84652714929273, - "y": -5968.987949575487, - "rotation": 0.3263026139335936, - "action": "CARVE_RIGHT" - }, - { - "x": -36.69515140994994, - "y": -5972.813126565241, - "rotation": 0.38040782074541785, - "action": "CARVE_RIGHT" - }, - { - "x": -35.379013141232846, - "y": -5976.489475861746, - "rotation": 0.4345130275572421, - "action": "CARVE_RIGHT" - }, - { - "x": -33.8980837528126, - "y": -5980.0162394526915, - "rotation": 0.4886182343690663, - "action": "CARVE_RIGHT" - }, - { - "x": -32.25240758972872, - "y": -5983.392728467905, - "rotation": 0.5427234411808906, - "action": "CARVE_RIGHT" - }, - { - "x": -30.442101718167507, - "y": -5986.618322977454, - "rotation": 0.5968286479927147, - "action": "CARVE_RIGHT" - }, - { - "x": -28.46735571183007, - "y": -5989.69247179031, - "rotation": 0.6509338548045389, - "action": "CARVE_RIGHT" - }, - { - "x": -26.32843143888833, - "y": -5992.614692253556, - "rotation": 0.7050390616163631, - "action": "CARVE_RIGHT" - }, - { - "x": -24.025662849527492, - "y": -5995.384570052153, - "rotation": 0.7591442684281873, - "action": "CARVE_RIGHT" - }, - { - "x": -21.559455764073427, - "y": -5998.00175900925, - "rotation": 0.8132494752400115, - "action": "CARVE_RIGHT" - }, - { - "x": -18.93028766170341, - "y": -6000.465980887045, - "rotation": 0.8673546820518356, - "action": "CARVE_RIGHT" - }, - { - "x": -16.13870746973869, - "y": -6002.777025188188, - "rotation": 0.9214598888636598, - "action": "CARVE_RIGHT" - }, - { - "x": -13.185335353517335, - "y": -6004.93474895774, - "rotation": 0.975565095675484, - "action": "CARVE_RIGHT" - }, - { - "x": -10.070862506845824, - "y": -6006.93907658566, - "rotation": 1.0296703024873082, - "action": "CARVE_RIGHT" - }, - { - "x": -6.796050943027873, - "y": -6008.789999609844, - "rotation": 1.0837755092991324, - "action": "CARVE_RIGHT" - }, - { - "x": -3.361733286468947, - "y": -6010.487576519706, - "rotation": 1.1378807161109565, - "action": "CARVE_RIGHT" - }, - { - "x": 0.23118743514505358, - "y": -6012.031932560291, - "rotation": 1.1919859229227807, - "action": "CARVE_RIGHT" - }, - { - "x": 3.9817379980964467, - "y": -6013.423259536935, - "rotation": 1.246091129734605, - "action": "CARVE_RIGHT" - }, - { - "x": 7.888875189313286, - "y": -6014.661815620448, - "rotation": 1.300196336546429, - "action": "NOTHING" - }, - { - "x": 12.212225457971348, - "y": -6015.507969740352, - "rotation": 1.2967056780424404, - "action": "NOTHING" - }, - { - "x": 16.51775136765474, - "y": -6016.363670521379, - "rotation": 1.2932150195384517, - "action": "NOTHING" - }, - { - "x": 20.80554126817232, - "y": -6017.228898131044, - "rotation": 1.289724361034463, - "action": "NOTHING" - }, - { - "x": 25.075682942555634, - "y": -6018.103633125312, - "rotation": 1.2862337025304744, - "action": "NOTHING" - }, - { - "x": 29.32826360863234, - "y": -6018.987856447447, - "rotation": 1.2827430440264858, - "action": "NOTHING" - }, - { - "x": 33.563369920595434, - "y": -6019.881549426854, - "rotation": 1.279252385522497, - "action": "NOTHING" - }, - { - "x": 37.78108797056829, - "y": -6020.784693777931, - "rotation": 1.2757617270185084, - "action": "NOTHING" - }, - { - "x": 41.98150329016557, - "y": -6021.697271598922, - "rotation": 1.2722710685145198, - "action": "NOTHING" - }, - { "x": 46.16470085205, "y": -6022.61926537077, "rotation": 1.268780410010531, "action": "NOTHING" }, - { - "x": 50.33076507148493, - "y": -6023.550657955981, - "rotation": 1.2652897515065424, - "action": "NOTHING" - }, - { - "x": 54.4797798078829, - "y": -6024.491432597479, - "rotation": 1.2617990930025538, - "action": "NOTHING" - }, - { - "x": 58.61182836634993, - "y": -6025.441572917478, - "rotation": 1.258308434498565, - "action": "NOTHING" - }, - { - "x": 62.72699349922586, - "y": -6026.401062916349, - "rotation": 1.2548177759945764, - "action": "CARVE_LEFT" - }, - { - "x": 66.26630755749841, - "y": -6027.887502388268, - "rotation": 1.2007125691827523, - "action": "CARVE_LEFT" - }, - { - "x": 69.64222824918738, - "y": -6029.519723122493, - "rotation": 1.146607362370928, - "action": "CARVE_LEFT" - }, - { - "x": 72.85562164103368, - "y": -6031.297658658269, - "rotation": 1.092502155559104, - "action": "CARVE_LEFT" - }, - { - "x": 75.9072788912389, - "y": -6033.221310276605, - "rotation": 1.0383969487472797, - "action": "CARVE_LEFT" - }, - { - "x": 78.79791646831556, - "y": -6035.290746801194, - "rotation": 0.9842917419354555, - "action": "CARVE_LEFT" - }, - { - "x": 81.52817636933678, - "y": -6037.506104399877, - "rotation": 0.9301865351236314, - "action": "CARVE_LEFT" - }, - { - "x": 84.0986263375872, - "y": -6039.867586386665, - "rotation": 0.8760813283118072, - "action": "CARVE_LEFT" - }, - { - "x": 86.50976007961684, - "y": -6042.375463024295, - "rotation": 0.821976121499983, - "action": "CARVE_LEFT" - }, - { - "x": 88.761997481699, - "y": -6045.0300713273355, - "rotation": 0.7678709146881588, - "action": "CARVE_LEFT" - }, - { - "x": 90.85568482569438, - "y": -6047.831814865833, - "rotation": 0.7137657078763346, - "action": "CARVE_LEFT" - }, - { - "x": 92.79109500432254, - "y": -6050.781163569499, - "rotation": 0.6596605010645105, - "action": "CARVE_LEFT" - }, - { - "x": 94.5684277358424, - "y": -6053.878653532437, - "rotation": 0.6055552942526863, - "action": "CARVE_LEFT" - }, - { - "x": 96.18780977814342, - "y": -6057.124886818409, - "rotation": 0.5514500874408621, - "action": "CARVE_LEFT" - }, - { - "x": 97.64929514224889, - "y": -6060.520531266636, - "rotation": 0.49734488062903787, - "action": "CARVE_LEFT" - }, - { - "x": 98.95286530523298, - "y": -6064.066320298131, - "rotation": 0.44323967381721363, - "action": "CARVE_LEFT" - }, - { - "x": 100.09842942255298, - "y": -6067.7630527225765, - "rotation": 0.3891344670053894, - "action": "CARVE_LEFT" - }, - { - "x": 101.08582453979845, - "y": -6071.611592545721, - "rotation": 0.33502926019356516, - "action": "CARVE_LEFT" - }, - { - "x": 101.91481580385857, - "y": -6075.612868777315, - "rotation": 0.2809240533817409, - "action": "CARVE_LEFT" - }, - { - "x": 102.5850966735095, - "y": -6079.767875239578, - "rotation": 0.22681884656991672, - "action": "CARVE_LEFT" - }, - { - "x": 103.09628912942304, - "y": -6084.077670376182, - "rotation": 0.1727136397580925, - "action": "CARVE_LEFT" - }, - { - "x": 103.44794388359833, - "y": -6088.543377061777, - "rotation": 0.1186084329462683, - "action": "CARVE_LEFT" - }, - { - "x": 103.63954058821787, - "y": -6093.16618241203, - "rotation": 0.06450322613444409, - "action": "CARVE_LEFT" - }, - { - "x": 103.67048804392964, - "y": -6097.947337594194, - "rotation": 0.010398019322619877, - "action": "CARVE_LEFT" - }, - { - "x": 103.54015601442904, - "y": -6102.645604118282, - "rotation": 6.239478119690382, - "action": "CARVE_LEFT" - }, - { - "x": 103.24797787725424, - "y": -6107.202403802351, - "rotation": 6.185372912878558, - "action": "CARVE_LEFT" - }, - { - "x": 102.79346152613577, - "y": -6111.616539199648, - "rotation": 6.131267706066733, - "action": "CARVE_LEFT" - }, - { - "x": 102.17618915242346, - "y": -6115.886883289455, - "rotation": 6.077162499254909, - "action": "CARVE_LEFT" - }, - { - "x": 101.39581702711438, - "y": -6120.012379271674, - "rotation": 6.0230572924430845, - "action": "CARVE_LEFT" - }, - { - "x": 100.4520752834802, - "y": -6123.992040361973, - "rotation": 5.96895208563126, - "action": "CARVE_LEFT" - }, - { - "x": 99.34476770029262, - "y": -6127.824949587494, - "rotation": 5.914846878819436, - "action": "CARVE_LEFT" - }, - { - "x": 98.07377148564493, - "y": -6131.510259583125, - "rotation": 5.860741672007611, - "action": "CARVE_LEFT" - }, - { - "x": 96.63903706136838, - "y": -6135.047192388321, - "rotation": 5.806636465195787, - "action": "CARVE_LEFT" - }, - { - "x": 95.04058784804178, - "y": -6138.43503924449, - "rotation": 5.7525312583839625, - "action": "CARVE_LEFT" - }, - { - "x": 93.2785200505926, - "y": -6141.6731603929375, - "rotation": 5.698426051572138, - "action": "CARVE_LEFT" - }, - { - "x": 91.3530024444882, - "y": -6144.760984873349, - "rotation": 5.644320844760314, - "action": "CARVE_LEFT" - }, - { - "x": 89.26427616251546, - "y": -6147.698010322848, - "rotation": 5.590215637948489, - "action": "CARVE_LEFT" - }, - { - "x": 87.0126544821474, - "y": -6150.483802775585, - "rotation": 5.536110431136665, - "action": "CARVE_LEFT" - }, - { - "x": 84.59852261349518, - "y": -6153.117996462889, - "rotation": 5.4820052243248405, - "action": "CARVE_LEFT" - }, - { - "x": 82.02233748784387, - "y": -6155.600293613961, - "rotation": 5.427900017513016, - "action": "CARVE_LEFT" - }, - { - "x": 79.28462754677058, - "y": -6157.930464257118, - "rotation": 5.373794810701192, - "action": "CARVE_LEFT" - }, - { - "x": 76.38599253184329, - "y": -6160.108346021579, - "rotation": 5.319689603889367, - "action": "NOTHING" - }, - { - "x": 73.17862540636274, - "y": -6161.997834431893, - "rotation": 5.323180262393356, - "action": "NOTHING" - }, - { - "x": 69.98455023088131, - "y": -6163.8971521478015, - "rotation": 5.326670920897344, - "action": "NOTHING" - }, - { - "x": 66.80372096011405, - "y": -6165.806308653169, - "rotation": 5.330161579401333, - "action": "NOTHING" - }, - { - "x": 63.636091998884545, - "y": -6167.7253137339685, - "rotation": 5.333652237905321, - "action": "NOTHING" - }, - { - "x": 60.48161820086017, - "y": -6169.65417747736, - "rotation": 5.3371428964093095, - "action": "NOTHING" - }, - { - "x": 57.340254867290604, - "y": -6171.592910270774, - "rotation": 5.340633554913298, - "action": "NOTHING" - }, - { - "x": 54.211957745749814, - "y": -6173.541522801002, - "rotation": 5.344124213417286, - "action": "NOTHING" - }, - { - "x": 51.09668302888134, - "y": -6175.500026053281, - "rotation": 5.347614871921275, - "action": "NOTHING" - }, - { - "x": 47.99438735314698, - "y": -6177.4684313103835, - "rotation": 5.351105530425263, - "action": "NOTHING" - }, - { - "x": 44.905027797578846, - "y": -6179.446750151717, - "rotation": 5.354596188929252, - "action": "NOTHING" - }, - { - "x": 41.82856188253468, - "y": -6181.434994452417, - "rotation": 5.35808684743324, - "action": "NOTHING" - }, - { - "x": 38.7649475684566, - "y": -6183.433176382447, - "rotation": 5.361577505937229, - "action": "NOTHING" - }, - { - "x": 35.714143254633115, - "y": -6185.441308405697, - "rotation": 5.365068164441217, - "action": "NOTHING" - }, - { - "x": 32.676107777964475, - "y": -6187.459403279094, - "rotation": 5.3685588229452055, - "action": "NOTHING" - }, - { - "x": 29.650800411731332, - "y": -6189.4874740517025, - "rotation": 5.372049481449194, - "action": "NOTHING" - }, - { - "x": 26.63818086436668, - "y": -6191.525534063837, - "rotation": 5.375540139953182, - "action": "NOTHING" - }, - { - "x": 23.638209278231127, - "y": -6193.573596946172, - "rotation": 5.379030798457171, - "action": "NOTHING" - }, - { - "x": 20.650846228391394, - "y": -6195.631676618858, - "rotation": 5.382521456961159, - "action": "NOTHING" - }, - { - "x": 17.676052721402144, - "y": -6197.699787290636, - "rotation": 5.386012115465148, - "action": "NOTHING" - }, - { - "x": 14.713790194091043, - "y": -6199.777943457958, - "rotation": 5.389502773969136, - "action": "NOTHING" - }, - { - "x": 11.764020512347088, - "y": -6201.866159904108, - "rotation": 5.392993432473125, - "action": "NOTHING" - }, - { - "x": 8.826705969912176, - "y": -6203.964451698326, - "rotation": 5.396484090977113, - "action": "NOTHING" - }, - { - "x": 5.901809287175929, - "y": -6206.072834194936, - "rotation": 5.3999747494811015, - "action": "NOTHING" - }, - { - "x": 2.9892936099737435, - "y": -6208.1913230324735, - "rotation": 5.40346540798509, - "action": "NOTHING" - }, - { - "x": 0.08912250838805358, - "y": -6210.319934132815, - "rotation": 5.406956066489078, - "action": "NOTHING" - }, - { - "x": -2.798740024447176, - "y": -6212.458683700318, - "rotation": 5.410446724993067, - "action": "NOTHING" - }, - { - "x": -5.674329573538755, - "y": -6214.607588220951, - "rotation": 5.413937383497055, - "action": "NOTHING" - }, - { - "x": -8.53768130322338, - "y": -6216.766664461434, - "rotation": 5.417428042001044, - "action": "NOTHING" - }, - { - "x": -11.388829958353544, - "y": -6218.935929468382, - "rotation": 5.420918700505032, - "action": "NOTHING" - }, - { - "x": -14.227809865480278, - "y": -6221.115400567447, - "rotation": 5.4244093590090205, - "action": "NOTHING" - }, - { - "x": -17.054654934032715, - "y": -6223.305095362464, - "rotation": 5.427900017513009, - "action": "NOTHING" - }, - { - "x": -19.86939865749447, - "y": -6225.5050317346, - "rotation": 5.431390676016997, - "action": "NOTHING" - }, - { - "x": -22.672074114576905, - "y": -6227.715227841503, - "rotation": 5.434881334520986, - "action": "NOTHING" - }, - { - "x": -25.46271397038919, - "y": -6229.935702116458, - "rotation": 5.438371993024974, - "action": "NOTHING" - }, - { - "x": -28.241350477605266, - "y": -6232.166473267539, - "rotation": 5.441862651528963, - "action": "NOTHING" - }, - { - "x": -31.008015477627666, - "y": -6234.407560276772, - "rotation": 5.445353310032951, - "action": "NOTHING" - }, - { "x": -33.7627404017482, "y": -6236.65898239929, "rotation": 5.44884396853694, "action": "NOTHING" }, - { - "x": -36.50555627230552, - "y": -6238.920759162501, - "rotation": 5.452334627040928, - "action": "CARVE_RIGHT" - }, - { - "x": -38.813027784433835, - "y": -6241.584985105439, - "rotation": 5.5064398338527525, - "action": "CARVE_RIGHT" - }, - { - "x": -40.959803965176256, - "y": -6244.398080331154, - "rotation": 5.560545040664577, - "action": "CARVE_RIGHT" - }, - { - "x": -42.94617880024649, - "y": -6247.360495793906, - "rotation": 5.614650247476401, - "action": "CARVE_RIGHT" - }, - { - "x": -44.77237303594927, - "y": -6250.472748671261, - "rotation": 5.668755454288226, - "action": "CARVE_RIGHT" - }, - { - "x": -46.438534393455186, - "y": -6253.735422169192, - "rotation": 5.72286066110005, - "action": "CARVE_RIGHT" - }, - { - "x": -47.9447377824872, - "y": -6257.1491653277135, - "rotation": 5.7769658679118745, - "action": "CARVE_RIGHT" - }, - { - "x": -49.290985514420356, - "y": -6260.7146928270495, - "rotation": 5.831071074723699, - "action": "CARVE_RIGHT" - }, - { - "x": -50.477207514796255, - "y": -6264.432784794339, - "rotation": 5.885176281535523, - "action": "CARVE_RIGHT" - }, - { - "x": -51.50326153525387, - "y": -6268.304286610872, - "rotation": 5.939281488347348, - "action": "CARVE_RIGHT" - }, - { - "x": -52.368933364878195, - "y": -6272.3301087198615, - "rotation": 5.993386695159172, - "action": "CARVE_RIGHT" - }, - { - "x": -53.07393704096828, - "y": -6276.511226434739, - "rotation": 6.0474919019709965, - "action": "CARVE_RIGHT" - }, - { - "x": -53.617915059226206, - "y": -6280.848679747983, - "rotation": 6.101597108782821, - "action": "CARVE_RIGHT" - }, - { - "x": -54.00043858336846, - "y": -6285.343573140471, - "rotation": 6.155702315594645, - "action": "CARVE_RIGHT" - }, - { - "x": -54.22100765416133, - "y": -6289.997075391363, - "rotation": 6.20980752240647, - "action": "CARVE_RIGHT" - }, - { - "x": -54.27905139788181, - "y": -6294.810419388505, - "rotation": 6.263912729218294, - "action": "CARVE_RIGHT" - }, - { - "x": -54.17394830887036, - "y": -6299.58931664579, - "rotation": 0.03483262885053229, - "action": "CARVE_RIGHT" - }, - { - "x": -53.905128174538866, - "y": -6304.225007362168, - "rotation": 0.0889378356623565, - "action": "CARVE_RIGHT" - }, - { - "x": -53.47209530584843, - "y": -6308.716290789678, - "rotation": 0.1430430424741807, - "action": "CARVE_RIGHT" - }, - { - "x": -52.87442831872123, - "y": -6313.062036613158, - "rotation": 0.1971482492860049, - "action": "CARVE_RIGHT" - }, - { - "x": -52.11177991605355, - "y": -6317.261184744814, - "rotation": 0.2512534560978291, - "action": "CARVE_RIGHT" - }, - { - "x": -51.183876670328246, - "y": -6321.312745119354, - "rotation": 0.30535866290965336, - "action": "CARVE_RIGHT" - }, - { - "x": -50.090518806825166, - "y": -6325.215797489682, - "rotation": 0.3594638697214776, - "action": "CARVE_RIGHT" - }, - { - "x": -48.83157998742793, - "y": -6328.969491223152, - "rotation": 0.4135690765333018, - "action": "CARVE_RIGHT" - }, - { - "x": -47.407007095025435, - "y": -6332.573045098381, - "rotation": 0.46767428334512606, - "action": "CARVE_RIGHT" - }, - { - "x": -45.81682001850661, - "y": -6336.025747102622, - "rotation": 0.5217794901569502, - "action": "CARVE_RIGHT" - }, - { - "x": -44.06111143834678, - "y": -6339.326954229684, - "rotation": 0.5758846969687744, - "action": "CARVE_RIGHT" - }, - { - "x": -42.14004661278408, - "y": -6342.476092278419, - "rotation": 0.6299899037805986, - "action": "CARVE_RIGHT" - }, - { - "x": -40.053863164584456, - "y": -6345.472655651748, - "rotation": 0.6840951105924228, - "action": "CARVE_RIGHT" - }, - { - "x": -37.80287086839351, - "y": -6348.31620715625, - "rotation": 0.738200317404247, - "action": "CARVE_RIGHT" - }, - { - "x": -35.387451438673864, - "y": -6351.006377802293, - "rotation": 0.7923055242160711, - "action": "CARVE_RIGHT" - }, - { - "x": -32.80805831822631, - "y": -6353.542866604716, - "rotation": 0.8464107310278953, - "action": "CARVE_RIGHT" - }, - { - "x": -30.065216467293318, - "y": -6355.9254403840605, - "rotation": 0.9005159378397195, - "action": "CARVE_RIGHT" - }, - { - "x": -27.1595221532433, - "y": -6358.15393356834, - "rotation": 0.9546211446515437, - "action": "CARVE_RIGHT" - }, - { - "x": -24.091642740834136, - "y": -6360.228247995364, - "rotation": 1.008726351463368, - "action": "CARVE_RIGHT" - }, - { - "x": -20.862316483054396, - "y": -6362.148352715593, - "rotation": 1.0628315582751922, - "action": "CARVE_RIGHT" - }, - { - "x": -17.472352312540774, - "y": -6363.914283795548, - "rotation": 1.1169367650870163, - "action": "CARVE_RIGHT" - }, - { - "x": -13.922629633570157, - "y": -6365.5261441217435, - "rotation": 1.1710419718988405, - "action": "CARVE_RIGHT" - }, - { - "x": -10.214098114624862, - "y": -6366.984103205176, - "rotation": 1.2251471787106647, - "action": "CARVE_RIGHT" - }, - { - "x": -6.347777481529496, - "y": -6368.288396986336, - "rotation": 1.2792523855224889, - "action": "CARVE_RIGHT" - }, - { - "x": -2.3247573111579323, - "y": -6369.439327640761, - "rotation": 1.333357592334313, - "action": "NOTHING" - }, - { - "x": 2.1266996259837985, - "y": -6370.186051485407, - "rotation": 1.3298669338303244, - "action": "NOTHING" - }, - { - "x": 6.559684735048406, - "y": -6370.942435954849, - "rotation": 1.3263762753263357, - "action": "NOTHING" - }, - { - "x": 10.97429108102051, - "y": -6371.708457918896, - "rotation": 1.322885616822347, - "action": "NOTHING" - }, - { - "x": 15.370611149176002, - "y": -6372.484094645431, - "rotation": 1.3193949583183584, - "action": "NOTHING" - }, - { - "x": 19.748736846689532, - "y": -6373.2693237992335, - "rotation": 1.3159042998143697, - "action": "NOTHING" - }, - { - "x": 24.10875950423773, - "y": -6374.064123440796, - "rotation": 1.312413641310381, - "action": "NOTHING" - }, - { - "x": 28.45076987759816, - "y": -6374.868472025147, - "rotation": 1.3089229828063924, - "action": "NOTHING" - }, - { - "x": 32.77485814924403, - "y": -6375.682348400679, - "rotation": 1.3054323243024037, - "action": "NOTHING" - }, - { - "x": 37.081113929934695, - "y": -6376.505731807979, - "rotation": 1.301941665798415, - "action": "NOTHING" - }, - { - "x": 41.369626260301885, - "y": -6377.338601878658, - "rotation": 1.2984510072944264, - "action": "NOTHING" - }, - { - "x": 45.64048361243177, - "y": -6378.18093863419, - "rotation": 1.2949603487904378, - "action": "NOTHING" - }, - { - "x": 49.89377389144281, - "y": -6379.032722484752, - "rotation": 1.291469690286449, - "action": "NOTHING" - }, - { - "x": 54.129584437059385, - "y": -6379.893934228065, - "rotation": 1.2879790317824604, - "action": "NOTHING" - }, - { - "x": 58.34800202518129, - "y": -6380.764555048239, - "rotation": 1.2844883732784718, - "action": "NOTHING" - }, - { - "x": 62.54911286944901, - "y": -6381.6445665146275, - "rotation": 1.280997714774483, - "action": "NOTHING" - }, - { - "x": 66.73300262280492, - "y": -6382.533950580673, - "rotation": 1.2775070562704944, - "action": "NOTHING" - }, - { - "x": 70.89975637905022, - "y": -6383.432689582766, - "rotation": 1.2740163977665058, - "action": "CARVE_LEFT" - }, - { - "x": 74.4856885036893, - "y": -6384.862752323093, - "rotation": 1.2199111909546816, - "action": "CARVE_LEFT" - }, - { - "x": 77.9084399592748, - "y": -6386.438171782983, - "rotation": 1.1658059841428574, - "action": "CARVE_LEFT" - }, - { - "x": 81.16890113431644, - "y": -6388.158859482246, - "rotation": 1.1117007773310332, - "action": "CARVE_LEFT" - }, - { - "x": 84.26788743854956, - "y": -6390.024794746389, - "rotation": 1.057595570519209, - "action": "CARVE_LEFT" - }, - { - "x": 87.20613952197654, - "y": -6392.036024507353, - "rotation": 1.0034903637073849, - "action": "CARVE_LEFT" - }, - { - "x": 89.98432349330731, - "y": -6394.192663104818, - "rotation": 0.9493851568955607, - "action": "CARVE_LEFT" - }, - { - "x": 92.60303113780071, - "y": -6396.494892088035, - "rotation": 0.8952799500837365, - "action": "CARVE_LEFT" - }, - { - "x": 95.06278013450793, - "y": -6398.9429600182175, - "rotation": 0.8411747432719123, - "action": "CARVE_LEFT" - }, - { - "x": 97.36401427291996, - "y": -6401.537182271473, - "rotation": 0.7870695364600881, - "action": "CARVE_LEFT" - }, - { - "x": 99.5071036690204, - "y": -6404.277940842278, - "rotation": 0.732964329648264, - "action": "CARVE_LEFT" - }, - { - "x": 101.49234498074524, - "y": -6407.16568414749, - "rotation": 0.6788591228364398, - "action": "CARVE_LEFT" - }, - { - "x": 103.31996162285131, - "y": -6410.200926830904, - "rotation": 0.6247539160246156, - "action": "CARVE_LEFT" - }, - { - "x": 104.99010398119465, - "y": -6413.384249568349, - "rotation": 0.5706487092127914, - "action": "CARVE_LEFT" - }, - { - "x": 106.50284962642075, - "y": -6416.716298873316, - "rotation": 0.5165435024009672, - "action": "CARVE_LEFT" - }, - { - "x": 107.85820352706791, - "y": -6420.197786903126, - "rotation": 0.462438295589143, - "action": "CARVE_LEFT" - }, - { - "x": 109.05609826208537, - "y": -6423.829491265629, - "rotation": 0.4083330887773188, - "action": "CARVE_LEFT" - }, - { - "x": 110.09639423276778, - "y": -6427.612254826439, - "rotation": 0.35422788196549454, - "action": "CARVE_LEFT" - }, - { - "x": 110.97887987410753, - "y": -6431.546985516699, - "rotation": 0.3001226751536703, - "action": "CARVE_LEFT" - }, - { - "x": 111.70327186556646, - "y": -6435.634656141375, - "rotation": 0.2460174683418461, - "action": "CARVE_LEFT" - }, - { - "x": 112.26921534126848, - "y": -6439.876304188078, - "rotation": 0.1919122615300219, - "action": "CARVE_LEFT" - }, - { - "x": 112.67628409961463, - "y": -6444.2730316364205, - "rotation": 0.13780705471819768, - "action": "CARVE_LEFT" - }, - { - "x": 112.9239808123222, - "y": -6448.826004767885, - "rotation": 0.08370184790637347, - "action": "CARVE_LEFT" - }, - { - "x": 113.01173723288917, - "y": -6453.53645397623, - "rotation": 0.029596641094549257, - "action": "CARVE_LEFT" - }, - { - "x": 112.93892434277421, - "y": -6458.270170380121, - "rotation": 6.2586767414623115, - "action": "CARVE_LEFT" - }, - { - "x": 112.70494686582256, - "y": -6462.863346827355, - "rotation": 6.204571534650487, - "action": "CARVE_LEFT" - }, - { - "x": 112.30928412690076, - "y": -6467.314758767665, - "rotation": 6.150466327838663, - "action": "CARVE_LEFT" - }, - { - "x": 111.751489833089, - "y": -6471.623252156582, - "rotation": 6.096361121026838, - "action": "CARVE_LEFT" - }, - { - "x": 111.0311918554751, - "y": -6475.787743249795, - "rotation": 6.042255914215014, - "action": "CARVE_LEFT" - }, - { - "x": 110.14809201154864, - "y": -6479.807218398083, - "rotation": 5.988150707403189, - "action": "CARVE_LEFT" - }, - { - "x": 109.10196584819357, - "y": -6483.6807338428, - "rotation": 5.934045500591365, - "action": "CARVE_LEFT" - }, - { - "x": 107.89266242527775, - "y": -6487.407415511927, - "rotation": 5.879940293779541, - "action": "CARVE_LEFT" - }, - { - "x": 106.52010409983785, - "y": -6490.986458816685, - "rotation": 5.825835086967716, - "action": "CARVE_LEFT" - }, - { - "x": 104.98428631085807, - "y": -6494.417128448695, - "rotation": 5.771729880155892, - "action": "CARVE_LEFT" - }, - { - "x": 103.28527736464098, - "y": -6497.698758177707, - "rotation": 5.717624673344067, - "action": "CARVE_LEFT" - }, - { - "x": 101.42321822076914, - "y": -6500.830750649875, - "rotation": 5.663519466532243, - "action": "CARVE_LEFT" - }, - { - "x": 99.39832227865573, - "y": -6503.812577186588, - "rotation": 5.609414259720419, - "action": "CARVE_LEFT" - }, - { - "x": 97.21087516468266, - "y": -6506.643777583855, - "rotation": 5.555309052908594, - "action": "CARVE_LEFT" - }, - { - "x": 94.86123451992488, - "y": -6509.323959912234, - "rotation": 5.50120384609677, - "action": "CARVE_LEFT" - }, - { - "x": 92.34982978845882, - "y": -6511.852800317319, - "rotation": 5.447098639284945, - "action": "CARVE_LEFT" - }, - { - "x": 89.677162006254, - "y": -6514.2300428207645, - "rotation": 5.392993432473121, - "action": "CARVE_LEFT" - }, - { - "x": 86.84380359064578, - "y": -6516.4554991218665, - "rotation": 5.338888225661297, - "action": "CARVE_LEFT" - }, - { - "x": 83.8503981303881, - "y": -6518.529048399678, - "rotation": 5.284783018849472, - "action": "CARVE_LEFT" - }, - { - "x": 80.69766017628436, - "y": -6520.450637115672, - "rotation": 5.230677812037648, - "action": "CARVE_LEFT" - }, - { - "x": 77.38637503239515, - "y": -6522.220278816951, - "rotation": 5.176572605225823, - "action": "CARVE_LEFT" - }, - { - "x": 73.91739854782112, - "y": -6523.838053939986, - "rotation": 5.122467398413999, - "action": "CARVE_LEFT" - }, - { - "x": 70.29165690905968, - "y": -6525.304109614905, - "rotation": 5.068362191602175, - "action": "NOTHING" - }, - { - "x": 66.27946586990457, - "y": -6526.406536356398, - "rotation": 5.071852850106163, - "action": "NOTHING" - }, - { - "x": 62.283608385632476, - "y": -6527.518340783853, - "rotation": 5.0753435086101515, - "action": "NOTHING" - }, - { - "x": 58.304007765673234, - "y": -6528.639511195298, - "rotation": 5.07883416711414, - "action": "NOTHING" - }, - { - "x": 54.34058785420154, - "y": -6529.770036253416, - "rotation": 5.082324825618128, - "action": "NOTHING" - }, - { - "x": 50.393273028648046, - "y": -6530.909904984456, - "rotation": 5.085815484122117, - "action": "NOTHING" - }, - { - "x": 46.46198819821445, - "y": -6532.059106777144, - "rotation": 5.089306142626105, - "action": "NOTHING" - }, - { - "x": 42.5466588023925, - "y": -6533.217631381596, - "rotation": 5.092796801130094, - "action": "NOTHING" - }, - { - "x": 38.64721080948697, - "y": -6534.38546890824, - "rotation": 5.096287459634082, - "action": "NOTHING" - }, - { - "x": 34.76357071514254, - "y": -6535.56260982673, - "rotation": 5.099778118138071, - "action": "NOTHING" - }, - { - "x": 30.89566554087463, - "y": -6536.749044964876, - "rotation": 5.103268776642059, - "action": "NOTHING" - }, - { - "x": 27.043422832604115, - "y": -6537.944765507564, - "rotation": 5.1067594351460475, - "action": "NOTHING" - }, - { - "x": 23.206770659195968, - "y": -6539.149762995692, - "rotation": 5.110250093650036, - "action": "NOTHING" - }, - { - "x": 19.385637611001776, - "y": -6540.3640293251, - "rotation": 5.113740752154024, - "action": "NOTHING" - }, - { - "x": 15.579952798406158, - "y": -6541.587556745503, - "rotation": 5.117231410658013, - "action": "NOTHING" - }, - { - "x": 11.789645850377024, - "y": -6542.820337859433, - "rotation": 5.120722069162001, - "action": "NOTHING" - }, - { - "x": 8.014646913019732, - "y": -6544.062365621177, - "rotation": 5.12421272766599, - "action": "NOTHING" - }, - { - "x": 4.254886648135063, - "y": -6545.313633335727, - "rotation": 5.127703386169978, - "action": "NOTHING" - }, - { - "x": 0.5102962317810698, - "y": -6546.574134657721, - "rotation": 5.131194044673967, - "action": "NOTHING" - }, - { - "x": -3.219192647161271, - "y": -6547.843863590395, - "rotation": 5.134684703177955, - "action": "NOTHING" - }, - { - "x": -6.933647788418565, - "y": -6549.12281448454, - "rotation": 5.138175361681943, - "action": "NOTHING" - }, - { - "x": -10.633136481751702, - "y": -6550.410982037453, - "rotation": 5.141666020185932, - "action": "CARVE_RIGHT" - }, - { - "x": -13.801763905026787, - "y": -6552.186080183892, - "rotation": 5.195771226997756, - "action": "CARVE_RIGHT" - }, - { - "x": -16.810256438785245, - "y": -6554.1055772267855, - "rotation": 5.249876433809581, - "action": "CARVE_RIGHT" - }, - { - "x": -19.65931694675619, - "y": -6556.169554222845, - "rotation": 5.303981640621405, - "action": "CARVE_RIGHT" - }, - { - "x": -22.349573863319794, - "y": -6558.378159534765, - "rotation": 5.3580868474332295, - "action": "CARVE_RIGHT" - }, - { - "x": -24.8815814110389, - "y": -6560.731608633339, - "rotation": 5.412192054245054, - "action": "CARVE_RIGHT" - }, - { - "x": -27.255819817593707, - "y": -6563.230183900138, - "rotation": 5.466297261056878, - "action": "CARVE_RIGHT" - }, - { - "x": -29.47269553212113, - "y": -6565.874234430715, - "rotation": 5.520402467868703, - "action": "CARVE_RIGHT" - }, - { - "x": -31.532541440960422, - "y": -6568.664175838362, - "rotation": 5.574507674680527, - "action": "CARVE_RIGHT" - }, - { - "x": -33.43561708280658, - "y": -6571.600490058408, - "rotation": 5.6286128814923515, - "action": "CARVE_RIGHT" - }, - { - "x": -35.182108863273136, - "y": -6574.683725153047, - "rotation": 5.682718088304176, - "action": "CARVE_RIGHT" - }, - { - "x": -36.77213026886586, - "y": -6577.914495116716, - "rotation": 5.736823295116, - "action": "CARVE_RIGHT" - }, - { - "x": -38.20572208036896, - "y": -6581.293479682001, - "rotation": 5.790928501927825, - "action": "CARVE_RIGHT" - }, - { - "x": -39.4828525856453, - "y": -6584.8214241260775, - "rotation": 5.845033708739649, - "action": "CARVE_RIGHT" - }, - { - "x": -40.60341779185219, - "y": -6588.499139077691, - "rotation": 5.8991389155514735, - "action": "CARVE_RIGHT" - }, - { - "x": -41.567241637074304, - "y": -6592.327500324663, - "rotation": 5.953244122363298, - "action": "CARVE_RIGHT" - }, - { - "x": -42.37407620137524, - "y": -6596.30744862193, - "rotation": 6.007349329175122, - "action": "CARVE_RIGHT" - }, - { - "x": -43.02360191726927, - "y": -6600.439989500116, - "rotation": 6.061454535986947, - "action": "CARVE_RIGHT" - }, - { - "x": -43.51542777961481, - "y": -6604.7261930746245, - "rotation": 6.115559742798771, - "action": "CARVE_RIGHT" - }, - { - "x": -43.84909155493115, - "y": -6609.167193855263, - "rotation": 6.1696649496105955, - "action": "CARVE_RIGHT" - }, - { - "x": -44.02405999013991, - "y": -6613.76419055639, - "rotation": 6.22377015642242, - "action": "CARVE_RIGHT" - }, - { - "x": -44.0397290207328, - "y": -6618.518445907588, - "rotation": 6.277875363234244, - "action": "CARVE_RIGHT" - }, - { - "x": -43.89546337246195, - "y": -6623.1627866917115, - "rotation": 0.0487952628664825, - "action": "CARVE_RIGHT" - }, - { - "x": -43.59069727479567, - "y": -6627.666928846478, - "rotation": 0.10290046967830671, - "action": "CARVE_RIGHT" - }, - { - "x": -43.12493947315789, - "y": -6632.029675664831, - "rotation": 0.15700567649013092, - "action": "CARVE_RIGHT" - }, - { - "x": -42.49777301035187, - "y": -6636.249900865635, - "rotation": 0.21111088330195513, - "action": "CARVE_RIGHT" - }, - { - "x": -41.70885500858516, - "y": -6640.326548388256, - "rotation": 0.26521609011377933, - "action": "CARVE_RIGHT" - }, - { - "x": -40.757916452093944, - "y": -6644.258632187708, - "rotation": 0.31932129692560357, - "action": "CARVE_RIGHT" - }, - { - "x": -39.64476197036532, - "y": -6648.045236030354, - "rotation": 0.3734265037374278, - "action": "CARVE_RIGHT" - }, - { - "x": -38.36926962195592, - "y": -6651.685513290176, - "rotation": 0.42753171054925204, - "action": "CARVE_RIGHT" - }, - { - "x": -36.931390678905274, - "y": -6655.178686745591, - "rotation": 0.4816369173610763, - "action": "CARVE_RIGHT" - }, - { - "x": -35.33114941174235, - "y": -6658.524048376842, - "rotation": 0.5357421241729005, - "action": "CARVE_RIGHT" - }, - { - "x": -33.56864287508377, - "y": -6661.720959163926, - "rotation": 0.5898473309847246, - "action": "CARVE_RIGHT" - }, - { - "x": -31.644040693821953, - "y": -6664.768848885088, - "rotation": 0.6439525377965488, - "action": "CARVE_RIGHT" - }, - { - "x": -29.557584849901925, - "y": -6667.667215915866, - "rotation": 0.698057744608373, - "action": "CARVE_RIGHT" - }, - { - "x": -27.309589469684926, - "y": -6670.415627028681, - "rotation": 0.7521629514201972, - "action": "CARVE_RIGHT" - }, - { - "x": -24.900440611897487, - "y": -6673.0137171929855, - "rotation": 0.8062681582320214, - "action": "CARVE_RIGHT" - }, - { - "x": -22.330596056164325, - "y": -6675.461189375953, - "rotation": 0.8603733650438455, - "action": "CARVE_RIGHT" - }, - { - "x": -19.600585092123552, - "y": -6677.757814343719, - "rotation": 0.9144785718556697, - "action": "CARVE_RIGHT" - }, - { - "x": -16.71100830912264, - "y": -6679.903430463164, - "rotation": 0.9685837786674939, - "action": "CARVE_RIGHT" - }, - { - "x": -13.662537386493614, - "y": -6681.897943504247, - "rotation": 1.0226889854793182, - "action": "CARVE_RIGHT" - }, - { - "x": -10.455914884405955, - "y": -6683.741326442872, - "rotation": 1.0767941922911424, - "action": "CARVE_RIGHT" - }, - { - "x": -7.091954035295661, - "y": -6685.433619264303, - "rotation": 1.1308993991029666, - "action": "CARVE_RIGHT" - }, - { - "x": -3.5715385358689677, - "y": -6686.974928767115, - "rotation": 1.1850046059147907, - "action": "CARVE_RIGHT" - }, - { - "x": 0.10437766032080953, - "y": -6688.365428367684, - "rotation": 1.239109812726615, - "action": "NOTHING" - }, - { - "x": 4.172069647946744, - "y": -6689.387106517976, - "rotation": 1.2356191542226262, - "action": "NOTHING" - }, - { - "x": 8.223182250486106, - "y": -6690.418129874978, - "rotation": 1.2321284957186376, - "action": "NOTHING" - }, - { - "x": 12.257794880710005, - "y": -6691.458484788382, - "rotation": 1.228637837214649, - "action": "NOTHING" - }, - { - "x": 16.275986409285544, - "y": -6692.508157978087, - "rotation": 1.2251471787106603, - "action": "NOTHING" - }, - { - "x": 20.277835166283914, - "y": -6693.567136533103, - "rotation": 1.2216565202066716, - "action": "NOTHING" - }, - { - "x": 24.263418942684485, - "y": -6694.635407910438, - "rotation": 1.218165861702683, - "action": "NOTHING" - }, - { - "x": 28.23281499187489, - "y": -6695.712959934003, - "rotation": 1.2146752031986943, - "action": "NOTHING" - }, - { - "x": 32.18610003114712, - "y": -6696.799780793514, - "rotation": 1.2111845446947056, - "action": "NOTHING" - }, - { - "x": 36.12335024318964, - "y": -6697.895859043396, - "rotation": 1.207693886190717, - "action": "NOTHING" - }, - { - "x": 40.04464127757554, - "y": -6699.001183601692, - "rotation": 1.2042032276867283, - "action": "NOTHING" - }, - { - "x": 43.95004825224671, - "y": -6700.1157437489765, - "rotation": 1.2007125691827396, - "action": "NOTHING" - }, - { - "x": 47.83964575499406, - "y": -6701.239529127269, - "rotation": 1.197221910678751, - "action": "NOTHING" - }, - { - "x": 51.713507844933844, - "y": -6702.372529738952, - "rotation": 1.1937312521747623, - "action": "NOTHING" - }, - { - "x": 55.571708053980004, - "y": -6703.514735945692, - "rotation": 1.1902405936707736, - "action": "NOTHING" - }, - { - "x": 59.41431938831261, - "y": -6704.666138467363, - "rotation": 1.186749935166785, - "action": "NOTHING" - }, - { - "x": 63.24141432984242, - "y": -6705.826728380975, - "rotation": 1.1832592766627963, - "action": "NOTHING" - }, - { - "x": 67.05306483767149, - "y": -6706.996497119599, - "rotation": 1.1797686181588076, - "action": "NOTHING" - }, - { - "x": 70.8493423495499, - "y": -6708.175436471305, - "rotation": 1.176277959654819, - "action": "NOTHING" - }, - { - "x": 74.63031778332869, - "y": -6709.363538578098, - "rotation": 1.1727873011508303, - "action": "CARVE_LEFT" - }, - { - "x": 77.87276634145776, - "y": -6711.045305191288, - "rotation": 1.1186820943390061, - "action": "CARVE_LEFT" - }, - { - "x": 80.95560216213212, - "y": -6712.870624157231, - "rotation": 1.064576887527182, - "action": "CARVE_LEFT" - }, - { - "x": 83.87956707996372, - "y": -6714.839541247241, - "rotation": 1.0104716807153578, - "action": "CARVE_LEFT" - }, - { - "x": 86.64532838779621, - "y": -6716.952169640949, - "rotation": 0.9563664739035336, - "action": "CARVE_LEFT" - }, - { - "x": 89.25347905454258, - "y": -6719.208689728142, - "rotation": 0.9022612670917094, - "action": "CARVE_LEFT" - }, - { - "x": 91.70453794242505, - "y": -6721.609348911159, - "rotation": 0.8481560602798852, - "action": "CARVE_LEFT" - }, - { - "x": 93.99895002361887, - "y": -6724.15446140782, - "rotation": 0.794050853468061, - "action": "CARVE_LEFT" - }, - { - "x": 96.13708659630159, - "y": -6726.844408054906, - "rotation": 0.7399456466562369, - "action": "CARVE_LEFT" - }, - { - "x": 98.11924550010922, - "y": -6729.679636112179, - "rotation": 0.6858404398444127, - "action": "CARVE_LEFT" - }, - { - "x": 99.94565133100114, - "y": -6732.660659066934, - "rotation": 0.6317352330325885, - "action": "CARVE_LEFT" - }, - { - "x": 101.61645565553503, - "y": -6735.788056439106, - "rotation": 0.5776300262207643, - "action": "CARVE_LEFT" - }, - { - "x": 103.13173722455346, - "y": -6739.062473586892, - "rotation": 0.5235248194089401, - "action": "CARVE_LEFT" - }, - { - "x": 104.49150218628382, - "y": -6742.484621512931, - "rotation": 0.4694196125971159, - "action": "CARVE_LEFT" - }, - { - "x": 105.69568429885301, - "y": -6746.055276671, - "rotation": 0.41531440578529166, - "action": "CARVE_LEFT" - }, - { - "x": 106.7441451422184, - "y": -6749.775280773253, - "rotation": 0.3612091989734674, - "action": "CARVE_LEFT" - }, - { - "x": 107.63667432951672, - "y": -6753.645540597991, - "rotation": 0.3071039921616432, - "action": "CARVE_LEFT" - }, - { - "x": 108.37298971783238, - "y": -6757.667027797957, - "rotation": 0.25299878534981896, - "action": "CARVE_LEFT" - }, - { - "x": 108.95273761838664, - "y": -6761.840778709164, - "rotation": 0.19889357853799475, - "action": "CARVE_LEFT" - }, - { - "x": 109.37549300614931, - "y": -6766.167894160245, - "rotation": 0.14478837172617054, - "action": "CARVE_LEFT" - }, - { - "x": 109.6407597288745, - "y": -6770.649539282336, - "rotation": 0.09068316491434633, - "action": "CARVE_LEFT" - }, - { - "x": 109.74797071556169, - "y": -6775.286943319481, - "rotation": 0.036577958102522116, - "action": "CARVE_LEFT" - }, - { - "x": 109.6964932671473, - "y": -6779.985597480969, - "rotation": 6.265658058470284, - "action": "CARVE_LEFT" - }, - { - "x": 109.48571455752864, - "y": -6784.545650918662, - "rotation": 6.2115528516584595, - "action": "CARVE_LEFT" - }, - { - "x": 109.11509641599153, - "y": -6788.965862412035, - "rotation": 6.157447644846635, - "action": "CARVE_LEFT" - }, - { - "x": 108.58417510824839, - "y": -6793.245061297588, - "rotation": 6.103342438034811, - "action": "CARVE_LEFT" - }, - { - "x": 107.89256111807835, - "y": -6797.382147263072, - "rotation": 6.049237231222986, - "action": "CARVE_LEFT" - }, - { - "x": 107.03993892956792, - "y": -6801.376090142267, - "rotation": 5.995132024411162, - "action": "CARVE_LEFT" - }, - { - "x": 106.02606680995062, - "y": -6805.22592971033, - "rotation": 5.9410268175993375, - "action": "CARVE_LEFT" - }, - { - "x": 104.85077659304383, - "y": -6808.930775479704, - "rotation": 5.886921610787513, - "action": "CARVE_LEFT" - }, - { - "x": 103.51397346328156, - "y": -6812.489806496577, - "rotation": 5.832816403975689, - "action": "CARVE_LEFT" - }, - { - "x": 102.0156357403413, - "y": -6815.902271137915, - "rotation": 5.778711197163864, - "action": "CARVE_LEFT" - }, - { - "x": 100.35581466436352, - "y": -6819.167486909035, - "rotation": 5.72460599035204, - "action": "CARVE_LEFT" - }, - { - "x": 98.53463418176234, - "y": -6822.284840241746, - "rotation": 5.6705007835402155, - "action": "CARVE_LEFT" - }, - { - "x": 96.55229073162548, - "y": -6825.253786293036, - "rotation": 5.616395576728391, - "action": "CARVE_LEFT" - }, - { - "x": 94.40905303270235, - "y": -6828.073848744313, - "rotation": 5.562290369916567, - "action": "CARVE_LEFT" - }, - { - "x": 92.10526187097844, - "y": -6830.7446196012, - "rotation": 5.508185163104742, - "action": "CARVE_LEFT" - }, - { - "x": 89.64132988783456, - "y": -6833.265758993873, - "rotation": 5.454079956292918, - "action": "CARVE_LEFT" - }, - { - "x": 87.01774136878936, - "y": -6835.636994977953, - "rotation": 5.3999747494810935, - "action": "CARVE_LEFT" - }, - { - "x": 84.23505203282365, - "y": -6837.858123335941, - "rotation": 5.345869542669269, - "action": "NOTHING" - }, - { - "x": 81.1559987544215, - "y": -6839.802801390435, - "rotation": 5.3493602011732575, - "action": "NOTHING" - }, - { - "x": 78.08972672913539, - "y": -6841.75732584588, - "rotation": 5.352850859677246, - "action": "NOTHING" - }, - { - "x": 75.0361938885373, - "y": -6843.721708790497, - "rotation": 5.356341518181234, - "action": "NOTHING" - }, - { - "x": 71.9953586029774, - "y": -6845.695962606498, - "rotation": 5.359832176685223, - "action": "NOTHING" - }, - { - "x": 68.96717968034983, - "y": -6847.680099969182, - "rotation": 5.363322835189211, - "action": "NOTHING" - }, - { "x": 65.95161636486178, "y": -6849.674133846049, "rotation": 5.3668134936932, "action": "NOTHING" }, - { - "x": 62.948628335805886, - "y": -6851.678077495903, - "rotation": 5.370304152197188, - "action": "NOTHING" - }, - { - "x": 59.95817570633593, - "y": -6853.6919444679725, - "rotation": 5.373794810701177, - "action": "NOTHING" - }, - { - "x": 56.98021902224578, - "y": -6855.715748601014, - "rotation": 5.377285469205165, - "action": "NOTHING" - }, - { - "x": 54.01471926075163, - "y": -6857.749504022436, - "rotation": 5.3807761277091535, - "action": "NOTHING" - }, - { - "x": 51.06163782927754, - "y": -6859.793225147418, - "rotation": 5.384266786213142, - "action": "NOTHING" - }, - { - "x": 48.12093656424411, - "y": -6861.8469266780285, - "rotation": 5.38775744471713, - "action": "NOTHING" - }, - { - "x": 45.19257772986057, - "y": -6863.910623602354, - "rotation": 5.391248103221119, - "action": "NOTHING" - }, - { - "x": 42.27652401691995, - "y": -6865.984331193619, - "rotation": 5.394738761725107, - "action": "NOTHING" - }, - { - "x": 39.37273854159762, - "y": -6868.068065009324, - "rotation": 5.398229420229096, - "action": "NOTHING" - }, - { - "x": 36.48118484425292, - "y": -6870.161840890368, - "rotation": 5.401720078733084, - "action": "NOTHING" - }, - { - "x": 33.60182688823412, - "y": -6872.265674960188, - "rotation": 5.405210737237073, - "action": "NOTHING" - }, - { - "x": 30.7346290586865, - "y": -6874.379583623897, - "rotation": 5.408701395741061, - "action": "NOTHING" - }, - { - "x": 27.87955616136367, - "y": -6876.503583567416, - "rotation": 5.4121920542450495, - "action": "NOTHING" - }, - { - "x": 25.036573421442075, - "y": -6878.637691756623, - "rotation": 5.415682712749038, - "action": "NOTHING" - }, - { - "x": 22.205646482338672, - "y": -6880.78192543649, - "rotation": 5.419173371253026, - "action": "NOTHING" - }, - { - "x": 19.38674140453178, - "y": -6882.936302130236, - "rotation": 5.422664029757015, - "action": "NOTHING" - }, - { - "x": 16.579824664385093, - "y": -6885.100839638468, - "rotation": 5.426154688261003, - "action": "NOTHING" - }, - { - "x": 13.784863152974863, - "y": -6887.275556038338, - "rotation": 5.429645346764992, - "action": "NOTHING" - }, - { - "x": 11.001824174920202, - "y": -6889.4604696826955, - "rotation": 5.43313600526898, - "action": "NOTHING" - }, - { - "x": 8.230675447216555, - "y": -6891.655599199238, - "rotation": 5.4366266637729685, - "action": "NOTHING" - }, - { - "x": 5.471385098072284, - "y": -6893.8609634896775, - "rotation": 5.440117322276957, - "action": "NOTHING" - }, - { - "x": 2.7239216657483816, - "y": -6896.076581728894, - "rotation": 5.443607980780945, - "action": "NOTHING" - }, - { - "x": -0.011745902598701452, - "y": -6898.3024733641005, - "rotation": 5.447098639284934, - "action": "NOTHING" - }, - { - "x": -2.7356482520711207, - "y": -6900.538658114011, - "rotation": 5.450589297788922, - "action": "NOTHING" - }, - { - "x": -5.447815621180605, - "y": -6902.785155968004, - "rotation": 5.454079956292911, - "action": "NOTHING" - }, - { - "x": -8.148277842996333, - "y": -6905.041987185295, - "rotation": 5.457570614796899, - "action": "NOTHING" - }, - { - "x": -10.83706434628972, - "y": -6907.309172294106, - "rotation": 5.461061273300888, - "action": "NOTHING" - }, - { - "x": -13.514204156676149, - "y": -6909.586732090846, - "rotation": 5.464551931804876, - "action": "NOTHING" - }, - { - "x": -16.179725897753606, - "y": -6911.874687639281, - "rotation": 5.4680425903088645, - "action": "NOTHING" - }, - { - "x": -18.833657792238284, - "y": -6914.173060269715, - "rotation": 5.471533248812853, - "action": "NOTHING" - }, - { - "x": -21.47602766309712, - "y": -6916.481871578177, - "rotation": 5.475023907316841, - "action": "NOTHING" - }, - { - "x": -24.106862934677302, - "y": -6918.801143425596, - "rotation": 5.47851456582083, - "action": "CARVE_RIGHT" - }, - { - "x": -26.315318612276812, - "y": -6921.511311660658, - "rotation": 5.532619772632654, - "action": "CARVE_RIGHT" - }, - { - "x": -28.364803253336593, - "y": -6924.3692032350755, - "rotation": 5.586724979444479, - "action": "CARVE_RIGHT" - }, - { - "x": -30.255568560358533, - "y": -6927.3753072628515, - "rotation": 5.640830186256303, - "action": "CARVE_RIGHT" - }, - { - "x": -31.987793122576907, - "y": -6930.530178966683, - "rotation": 5.6949353930681275, - "action": "CARVE_RIGHT" - }, - { - "x": -33.56158262988282, - "y": -6933.834439483373, - "rotation": 5.749040599879952, - "action": "CARVE_RIGHT" - }, - { - "x": -34.97697008616128, - "y": -6937.28877566979, - "rotation": 5.803145806691776, - "action": "CARVE_RIGHT" - }, - { - "x": -36.233916022042386, - "y": -6940.893939909351, - "rotation": 5.857251013503601, - "action": "CARVE_RIGHT" - }, - { - "x": -37.33230870706825, - "y": -6944.650749919045, - "rotation": 5.911356220315425, - "action": "CARVE_RIGHT" - }, - { - "x": -38.27196436127713, - "y": -6948.560088556987, - "rotation": 5.9654614271272495, - "action": "CARVE_RIGHT" - }, - { - "x": -39.05262736620633, - "y": -6952.6229036305, - "rotation": 6.019566633939074, - "action": "CARVE_RIGHT" - }, - { - "x": -39.67397047531544, - "y": -6956.840207704732, - "rotation": 6.073671840750898, - "action": "CARVE_RIGHT" - }, - { - "x": -40.13559502383138, - "y": -6961.2130779117915, - "rotation": 6.127777047562723, - "action": "CARVE_RIGHT" - }, - { - "x": -40.437031138016806, - "y": -6965.742655760418, - "rotation": 6.181882254374547, - "action": "CARVE_RIGHT" - }, - { - "x": -40.57773794386343, - "y": -6970.430146946173, - "rotation": 6.2359874611863715, - "action": "CARVE_RIGHT" - }, - { - "x": -40.55710456461711, - "y": -6975.238425780438, - "rotation": 0.0069073608186096536, - "action": "CARVE_RIGHT" - }, - { - "x": -40.37451571876016, - "y": -6979.905609926984, - "rotation": 0.06101256763043387, - "action": "CARVE_RIGHT" - }, - { - "x": -40.029430782886706, - "y": -6984.4304559742795, - "rotation": 0.11511777444225808, - "action": "CARVE_RIGHT" - }, - { - "x": -39.52138357274071, - "y": -6988.811791070168, - "rotation": 0.1692229812540823, - "action": "CARVE_RIGHT" - }, - { - "x": -38.84998212485594, - "y": -6993.048512716084, - "rotation": 0.2233281880659065, - "action": "CARVE_RIGHT" - }, - { - "x": -38.01490847879654, - "y": -6997.13958856184, - "rotation": 0.2774333948777307, - "action": "CARVE_RIGHT" - }, - { - "x": -37.01591845999647, - "y": -7001.084056200974, - "rotation": 0.33153860168955496, - "action": "CARVE_RIGHT" - }, - { - "x": -35.85284146319629, - "y": -7004.881022966652, - "rotation": 0.3856438085013792, - "action": "CARVE_RIGHT" - }, - { - "x": -34.5255802364757, - "y": -7008.529665728136, - "rotation": 0.43974901531320343, - "action": "CARVE_RIGHT" - }, - { - "x": -33.034110665880235, - "y": -7012.029230687809, - "rotation": 0.49385422212502766, - "action": "CARVE_RIGHT" - }, - { - "x": -31.378481560640633, - "y": -7015.379033178756, - "rotation": 0.5479594289368519, - "action": "CARVE_RIGHT" - }, - { - "x": -29.558814438983184, - "y": -7018.578457462898, - "rotation": 0.6020646357486761, - "action": "CARVE_RIGHT" - }, - { - "x": -27.575303314529595, - "y": -7021.626956529684, - "rotation": 0.6561698425605003, - "action": "CARVE_RIGHT" - }, - { - "x": -25.42821448328479, - "y": -7024.524051895333, - "rotation": 0.7102750493723244, - "action": "CARVE_RIGHT" - }, - { - "x": -23.117886311211073, - "y": -7027.269333402624, - "rotation": 0.7643802561841486, - "action": "CARVE_RIGHT" - }, - { - "x": -20.644729022387125, - "y": -7029.8624590212385, - "rotation": 0.8184854629959728, - "action": "CARVE_RIGHT" - }, - { - "x": -18.009224487750277, - "y": -7032.303154648649, - "rotation": 0.872590669807797, - "action": "CARVE_RIGHT" - }, - { - "x": -15.211926014420534, - "y": -7034.59121391156, - "rotation": 0.9266958766196212, - "action": "NOTHING" - }, - { - "x": -12.11684080533726, - "y": -7036.601470439855, - "rotation": 0.9232052181156325, - "action": "NOTHING" - }, - { - "x": -9.034737450165572, - "y": -7038.621724157742, - "rotation": 0.9197145596116438, - "action": "NOTHING" - }, - { - "x": -5.965574036945181, - "y": -7040.651987375218, - "rotation": 0.9162239011076552, - "action": "NOTHING" - }, - { - "x": -2.9093090923338907, - "y": -7042.692272695947, - "rotation": 0.9127332426036665, - "action": "NOTHING" - }, - { - "x": 0.13409841962666658, - "y": -7044.742593016371, - "rotation": 0.9092425840996778, - "action": "NOTHING" - }, - { - "x": 3.1646890987419902, - "y": -7046.802961524811, - "rotation": 0.9057519255956892, - "action": "NOTHING" - }, - { - "x": 6.182503109892369, - "y": -7048.8733917005775, - "rotation": 0.9022612670917005, - "action": "NOTHING" - }, - { - "x": 9.187580184257245, - "y": -7050.9538973130875, - "rotation": 0.8987706085877119, - "action": "NOTHING" - }, - { - "x": 12.179959620536307, - "y": -7053.044492420973, - "rotation": 0.8952799500837232, - "action": "NOTHING" - }, - { - "x": 15.159680286167296, - "y": -7055.145191371203, - "rotation": 0.8917892915797345, - "action": "NOTHING" - }, - { - "x": 18.126780618540554, - "y": -7057.256008798197, - "rotation": 0.8882986330757459, - "action": "NOTHING" - }, - { - "x": 21.08129862621032, - "y": -7059.376959622957, - "rotation": 0.8848079745717572, - "action": "NOTHING" - }, - { - "x": 24.023271890102755, - "y": -7061.508059052178, - "rotation": 0.8813173160677685, - "action": "NOTHING" - }, - { - "x": 26.952737564720767, - "y": -7063.64932257739, - "rotation": 0.8778266575637799, - "action": "NOTHING" - }, - { - "x": 29.869732379345564, - "y": -7065.800765974076, - "rotation": 0.8743359990597912, - "action": "NOTHING" - }, - { - "x": 32.774292639235014, - "y": -7067.96240530081, - "rotation": 0.8708453405558025, - "action": "NOTHING" - }, - { - "x": 35.66645422681876, - "y": -7070.134256898389, - "rotation": 0.8673546820518139, - "action": "NOTHING" - }, - { - "x": 38.54625260289016, - "y": -7072.316337388971, - "rotation": 0.8638640235478252, - "action": "NOTHING" - }, - { - "x": 41.41372280779504, - "y": -7074.508663675213, - "rotation": 0.8603733650438365, - "action": "NOTHING" - }, - { - "x": 44.26889946261718, - "y": -7076.7112529394135, - "rotation": 0.8568827065398479, - "action": "NOTHING" - }, - { - "x": 47.1118167703607, - "y": -7078.924122642656, - "rotation": 0.8533920480358592, - "action": "NOTHING" - }, - { - "x": 49.94250851712925, - "y": -7081.147290523955, - "rotation": 0.8499013895318706, - "action": "NOTHING" - }, - { - "x": 52.76100807330203, - "y": -7083.380774599409, - "rotation": 0.8464107310278819, - "action": "NOTHING" - }, - { - "x": 55.567348394706634, - "y": -7085.624593161345, - "rotation": 0.8429200725238932, - "action": "NOTHING" - }, - { - "x": 58.36156202378878, - "y": -7087.878764777476, - "rotation": 0.8394294140199046, - "action": "NOTHING" - }, - { - "x": 61.14368109077888, - "y": -7090.1433082900585, - "rotation": 0.8359387555159159, - "action": "NOTHING" - }, - { - "x": 63.91373731485548, - "y": -7092.418242815048, - "rotation": 0.8324480970119272, - "action": "NOTHING" - }, - { - "x": 66.6717620053056, - "y": -7094.703587741261, - "rotation": 0.8289574385079386, - "action": "NOTHING" - }, - { - "x": 69.41778606268187, - "y": -7096.999362729538, - "rotation": 0.8254667800039499, - "action": "NOTHING" - }, - { - "x": 72.15183997995672, - "y": -7099.3055877119095, - "rotation": 0.8219761214999612, - "action": "CARVE_LEFT" - }, - { - "x": 74.45023117531997, - "y": -7102.014595361461, - "rotation": 0.7678709146881371, - "action": "CARVE_LEFT" - }, - { - "x": 76.5867258710653, - "y": -7104.873623107894, - "rotation": 0.7137657078763129, - "action": "CARVE_LEFT" - }, - { - "x": 78.56161146087061, - "y": -7107.883127924237, - "rotation": 0.6596605010644887, - "action": "CARVE_LEFT" - }, - { - "x": 80.37510211634579, - "y": -7111.043632990958, - "rotation": 0.6055552942526645, - "action": "CARVE_LEFT" - }, - { - "x": 82.02733900126306, - "y": -7114.355727501102, - "rotation": 0.5514500874408403, - "action": "CARVE_LEFT" - }, - { - "x": 83.51839048519928, - "y": -7117.820066465965, - "rotation": 0.4973448806290161, - "action": "CARVE_LEFT" - }, - { - "x": 84.84825235659142, - "y": -7121.437370521308, - "rotation": 0.44323967381719187, - "action": "CARVE_LEFT" - }, - { - "x": 86.01684803520702, - "y": -7125.2084257340985, - "rotation": 0.38913446700536763, - "action": "CARVE_LEFT" - }, - { - "x": 87.02402878403106, - "y": -7129.134083409789, - "rotation": 0.3350292601935434, - "action": "CARVE_LEFT" - }, - { - "x": 87.86957392057072, - "y": -7133.2152599001265, - "rotation": 0.28092405338171916, - "action": "CARVE_LEFT" - }, - { - "x": 88.55319102757973, - "y": -7137.452936411491, - "rotation": 0.22681884656989496, - "action": "CARVE_LEFT" - }, - { - "x": 89.0745161632037, - "y": -7141.848158813759, - "rotation": 0.17271363975807075, - "action": "CARVE_LEFT" - }, - { - "x": 89.43311407054802, - "y": -7146.402037449707, - "rotation": 0.11860843294624654, - "action": "CARVE_LEFT" - }, - { - "x": 89.6284783866698, - "y": -7151.115746944919, - "rotation": 0.06450322613442233, - "action": "CARVE_LEFT" - }, - { - "x": 89.6600318509955, - "y": -7155.990526018242, - "rotation": 0.010398019322598116, - "action": "CARVE_LEFT" - }, - { - "x": 89.52715812003797, - "y": -7160.780416918277, - "rotation": 6.23947811969036, - "action": "CARVE_LEFT" - }, - { - "x": 89.22930441832662, - "y": -7165.4257325020535, - "rotation": 6.1853729128785355, - "action": "CARVE_LEFT" - }, - { - "x": 88.76599244089137, - "y": -7169.92528855665, - "rotation": 6.131267706066711, - "action": "CARVE_LEFT" - }, - { - "x": 88.13681813482361, - "y": -7174.277971252, - "rotation": 6.077162499254887, - "action": "CARVE_LEFT" - }, - { - "x": 87.34145148143782, - "y": -7178.482736935594, - "rotation": 6.023057292443062, - "action": "CARVE_LEFT" - }, - { - "x": 86.3796362790322, - "y": -7182.538611927763, - "rotation": 5.968952085631238, - "action": "CARVE_LEFT" - }, - { - "x": 85.25118992624701, - "y": -7186.4446923175, - "rotation": 5.9148468788194135, - "action": "CARVE_LEFT" - }, - { - "x": 83.9560032060187, - "y": -7190.200143758863, - "rotation": 5.860741672007589, - "action": "CARVE_LEFT" - }, - { - "x": 82.49404007012853, - "y": -7193.804201267921, - "rotation": 5.806636465195765, - "action": "CARVE_LEFT" - }, - { - "x": 80.86533742434389, - "y": -7197.256169020261, - "rotation": 5.75253125838394, - "action": "CARVE_LEFT" - }, - { - "x": 79.07000491415093, - "y": -7200.555420149057, - "rotation": 5.698426051572116, - "action": "CARVE_LEFT" - }, - { - "x": 77.10822471107686, - "y": -7203.701396543682, - "rotation": 5.6443208447602915, - "action": "CARVE_LEFT" - }, - { - "x": 74.98025129960037, - "y": -7206.6936086488795, - "rotation": 5.590215637948467, - "action": "CARVE_LEFT" - }, - { - "x": 72.6864112646486, - "y": -7209.531635264483, - "rotation": 5.536110431136643, - "action": "CARVE_LEFT" - }, - { - "x": 70.22710307967918, - "y": -7212.215123345686, - "rotation": 5.482005224324818, - "action": "CARVE_LEFT" - }, - { - "x": 67.60279689534563, - "y": -7214.74378780386, - "rotation": 5.427900017512994, - "action": "CARVE_LEFT" - }, - { - "x": 64.81403432874485, - "y": -7217.117411307919, - "rotation": 5.3737948107011695, - "action": "CARVE_LEFT" - }, - { - "x": 61.86142825324487, - "y": -7219.335844086227, - "rotation": 5.319689603889345, - "action": "CARVE_LEFT" - }, - { - "x": 58.74566258889149, - "y": -7221.399003729053, - "rotation": 5.265584397077521, - "action": "CARVE_LEFT" - }, - { - "x": 55.46749209339235, - "y": -7223.306874991567, - "rotation": 5.211479190265696, - "action": "CARVE_LEFT" - }, - { - "x": 52.027742153676655, - "y": -7225.059509597373, - "rotation": 5.157373983453872, - "action": "CARVE_LEFT" - }, - { - "x": 48.42730857802926, - "y": -7226.657026042584, - "rotation": 5.1032687766420475, - "action": "CARVE_LEFT" - }, - { - "x": 44.667157388797555, - "y": -7228.09960940044, - "rotation": 5.049163569830223, - "action": "CARVE_LEFT" - }, - { - "x": 40.74832461566951, - "y": -7229.387511126453, - "rotation": 4.995058363018399, - "action": "NOTHING" - }, - { - "x": 36.412039837127146, - "y": -7230.281892704471, - "rotation": 4.998549021522387, - "action": "NOTHING" - }, - { - "x": 32.093640709295165, - "y": -7231.185906602626, - "rotation": 5.002039680026376, - "action": "NOTHING" - }, - { - "x": 27.793039591256317, - "y": -7232.099533581218, - "rotation": 5.005530338530364, - "action": "NOTHING" - }, - { - "x": 23.510149407158796, - "y": -7233.022754787551, - "rotation": 5.009020997034352, - "action": "NOTHING" - }, - { - "x": 19.244883644646933, - "y": -7233.955551754788, - "rotation": 5.012511655538341, - "action": "NOTHING" - }, - { - "x": 14.997156353296063, - "y": -7234.8979064007935, - "rotation": 5.016002314042329, - "action": "NOTHING" - }, - { - "x": 10.76688214305155, - "y": -7235.8498010269905, - "rotation": 5.019492972546318, - "action": "NOTHING" - }, - { - "x": 6.553976182671956, - "y": -7236.811218317217, - "rotation": 5.022983631050306, - "action": "NOTHING" - }, - { - "x": 2.358354198176351, - "y": -7237.782141336583, - "rotation": 5.026474289554295, - "action": "NOTHING" - }, - { - "x": -1.8200675287042465, - "y": -7238.762553530333, - "rotation": 5.029964948058283, - "action": "NOTHING" - }, - { - "x": -5.981372162071322, - "y": -7239.752438722717, - "rotation": 5.0334556065622715, - "action": "NOTHING" - }, - { "x": -10.1256423133992, "y": -7240.75178111585, "rotation": 5.03694626506626, "action": "NOTHING" }, - { - "x": -14.252960043071292, - "y": -7241.760565288591, - "rotation": 5.040436923570248, - "action": "CARVE_RIGHT" - }, - { - "x": -17.801251694412127, - "y": -7243.299266906067, - "rotation": 5.094542130382073, - "action": "CARVE_RIGHT" - }, - { - "x": -21.18418280166485, - "y": -7244.98559933798, - "rotation": 5.148647337193897, - "action": "CARVE_RIGHT" - }, - { - "x": -24.402612016536757, - "y": -7246.8195029275485, - "rotation": 5.202752544005722, - "action": "CARVE_RIGHT" - }, - { - "x": -27.457323100573518, - "y": -7248.800985742871, - "rotation": 5.256857750817546, - "action": "CARVE_RIGHT" - }, - { - "x": -30.34902514396432, - "y": -7250.93012337789, - "rotation": 5.31096295762937, - "action": "CARVE_RIGHT" - }, - { - "x": -33.078352783746766, - "y": -7253.207058753903, - "rotation": 5.365068164441195, - "action": "CARVE_RIGHT" - }, - { - "x": -35.64586642141307, - "y": -7255.6320019216155, - "rotation": 5.419173371253019, - "action": "CARVE_RIGHT" - }, - { - "x": -38.05205243991911, - "y": -7258.205229863747, - "rotation": 5.473278578064844, - "action": "CARVE_RIGHT" - }, - { - "x": -40.29732342009799, - "y": -7260.927086298172, - "rotation": 5.527383784876668, - "action": "CARVE_RIGHT" - }, - { - "x": -42.38201835647959, - "y": -7263.797981481609, - "rotation": 5.581488991688492, - "action": "CARVE_RIGHT" - }, - { - "x": -44.30640287251774, - "y": -7266.81839201385, - "rotation": 5.635594198500317, - "action": "CARVE_RIGHT" - }, - { - "x": -46.07066943522652, - "y": -7269.988860642527, - "rotation": 5.689699405312141, - "action": "CARVE_RIGHT" - }, - { - "x": -47.67493756922733, - "y": -7273.309996068416, - "rotation": 5.743804612123966, - "action": "CARVE_RIGHT" - }, - { - "x": -49.119254070208186, - "y": -7276.782472751281, - "rotation": 5.79790981893579, - "action": "CARVE_RIGHT" - }, - { - "x": -50.40359321779682, - "y": -7280.40703071625, - "rotation": 5.8520150257476145, - "action": "CARVE_RIGHT" - }, - { - "x": -51.52785698784921, - "y": -7284.1844753607265, - "rotation": 5.906120232559439, - "action": "CARVE_RIGHT" - }, - { - "x": -52.49187526415497, - "y": -7288.115677261831, - "rotation": 5.960225439371263, - "action": "CARVE_RIGHT" - }, - { - "x": -53.295406049561194, - "y": -7292.201571984375, - "rotation": 6.014330646183088, - "action": "CARVE_RIGHT" - }, - { - "x": -53.93813567651628, - "y": -7296.443159889367, - "rotation": 6.068435852994912, - "action": "CARVE_RIGHT" - }, - { - "x": -54.4196790170353, - "y": -7300.84150594304, - "rotation": 6.1225410598067365, - "action": "CARVE_RIGHT" - }, - { - "x": -54.739579692088334, - "y": -7305.397739526411, - "rotation": 6.176646266618561, - "action": "CARVE_RIGHT" - }, - { - "x": -54.89731028041345, - "y": -7310.113054245365, - "rotation": 6.230751473430385, - "action": "CARVE_RIGHT" - }, - { - "x": -54.89227257297491, - "y": -7314.979333921392, - "rotation": 0.001671373062623438, - "action": "CARVE_RIGHT" - }, - { - "x": -54.72385060778368, - "y": -7319.7031701220485, - "rotation": 0.05577657987444765, - "action": "CARVE_RIGHT" - }, - { - "x": -54.39150308055686, - "y": -7324.2833188621935, - "rotation": 0.10988178668627187, - "action": "CARVE_RIGHT" - }, - { - "x": -53.894763125760704, - "y": -7328.7186067155635, - "rotation": 0.1639869934980961, - "action": "CARVE_RIGHT" - }, - { - "x": -53.23323809825573, - "y": -7333.007930608999, - "rotation": 0.2180922003099203, - "action": "CARVE_RIGHT" - }, - { - "x": -52.406609355542294, - "y": -7337.150257617231, - "rotation": 0.2721974071217445, - "action": "CARVE_RIGHT" - }, - { - "x": -51.41463204060504, - "y": -7341.14462475823, - "rotation": 0.32630261393356874, - "action": "CARVE_RIGHT" - }, - { - "x": -50.25713486535471, - "y": -7344.990138789124, - "rotation": 0.380407820745393, - "action": "CARVE_RIGHT" - }, - { - "x": -48.9340198946656, - "y": -7348.685976002664, - "rotation": 0.4345130275572172, - "action": "CARVE_RIGHT" - }, - { - "x": -47.44526233100732, - "y": -7352.231382024254, - "rotation": 0.48861823436904145, - "action": "CARVE_RIGHT" - }, - { - "x": -45.79091029966899, - "y": -7355.625671609541, - "rotation": 0.5427234411808657, - "action": "CARVE_RIGHT" - }, - { - "x": -43.97108463457454, - "y": -7358.8682284425495, - "rotation": 0.5968286479926899, - "action": "CARVE_RIGHT" - }, - { - "x": -41.98597866468752, - "y": -7361.9585049343805, - "rotation": 0.650933854804514, - "action": "CARVE_RIGHT" - }, - { - "x": -39.83585800100372, - "y": -7364.896022022456, - "rotation": 0.7050390616163382, - "action": "CARVE_RIGHT" - }, - { - "x": -37.52106032413022, - "y": -7367.6803689703165, - "rotation": 0.7591442684281624, - "action": "CARVE_RIGHT" - }, - { - "x": -35.0419951724492, - "y": -7370.311203167968, - "rotation": 0.8132494752399866, - "action": "CARVE_RIGHT" - }, - { - "x": -32.39914373086507, - "y": -7372.788249932776, - "rotation": 0.8673546820518108, - "action": "CARVE_RIGHT" - }, - { - "x": -29.593058620133263, - "y": -7375.111302310905, - "rotation": 0.921459888863635, - "action": "CARVE_RIGHT" - }, - { - "x": -26.624363686769243, - "y": -7377.280220879305, - "rotation": 0.9755650956754591, - "action": "CARVE_RIGHT" - }, - { - "x": -23.493753793536147, - "y": -7379.29493354824, - "rotation": 1.0296703024872833, - "action": "CARVE_RIGHT" - }, - { - "x": -20.20199461050957, - "y": -7381.15543536436, - "rotation": 1.0837755092991075, - "action": "CARVE_RIGHT" - }, - { - "x": -16.749922406717925, - "y": -7382.86178831431, - "rotation": 1.1378807161109317, - "action": "CARVE_RIGHT" - }, - { - "x": -13.1384438423569, - "y": -7384.4141211288825, - "rotation": 1.1919859229227558, - "action": "CARVE_RIGHT" - }, - { - "x": -9.368535761576444, - "y": -7385.812629087705, - "rotation": 1.24609112973458, - "action": "NOTHING" - }, - { - "x": -5.196923924190362, - "y": -7386.832820619237, - "rotation": 1.2426004712305914, - "action": "NOTHING" - }, - { - "x": -1.0424047429797918, - "y": -7387.862530857134, - "rotation": 1.2391098127266027, - "action": "NOTHING" - }, - { - "x": 3.0951034946327782, - "y": -7388.901744685487, - "rotation": 1.235619154222614, - "action": "NOTHING" - }, - { - "x": 7.215681952471534, - "y": -7389.950447363297, - "rotation": 1.2321284957186254, - "action": "NOTHING" - }, - { - "x": 11.319411247133562, - "y": -7391.008624523353, - "rotation": 1.2286378372146367, - "action": "NOTHING" - }, - { - "x": 15.406371449511012, - "y": -7392.0762621711165, - "rotation": 1.225147178710648, - "action": "NOTHING" - }, - { - "x": 19.47664208630922, - "y": -7393.153346683604, - "rotation": 1.2216565202066594, - "action": "NOTHING" - }, - { - "x": 23.53030214156078, - "y": -7394.239864808279, - "rotation": 1.2181658617026707, - "action": "NOTHING" - }, - { - "x": 27.567430058135606, - "y": -7395.335803661946, - "rotation": 1.214675203198682, - "action": "NOTHING" - }, - { - "x": 31.588103739246954, - "y": -7396.44115072964, - "rotation": 1.2111845446946934, - "action": "NOTHING" - }, - { - "x": 35.592400549953446, - "y": -7397.555893863531, - "rotation": 1.2076938861907047, - "action": "NOTHING" - }, - { - "x": 39.58039731865712, - "y": -7398.6800212818225, - "rotation": 1.204203227686716, - "action": "NOTHING" - }, - { - "x": 43.55217033859744, - "y": -7399.813521567656, - "rotation": 1.2007125691827274, - "action": "NOTHING" - }, - { - "x": 47.507795369341395, - "y": -7400.956383668019, - "rotation": 1.1972219106787387, - "action": "NOTHING" - }, - { - "x": 51.44734763826957, - "y": -7402.108596892657, - "rotation": 1.19373125217475, - "action": "CARVE_LEFT" - }, - { - "x": 54.828367023320695, - "y": -7403.772474634039, - "rotation": 1.1396260453629259, - "action": "CARVE_LEFT" - }, - { - "x": 58.04567072862675, - "y": -7405.583180830424, - "rotation": 1.0855208385511017, - "action": "CARVE_LEFT" - }, - { - "x": 61.10004583286431, - "y": -7407.540720510895, - "rotation": 1.0314156317392775, - "action": "CARVE_LEFT" - }, - { - "x": 63.99220473497335, - "y": -7409.645166238068, - "rotation": 0.9773104249274533, - "action": "CARVE_LEFT" - }, - { - "x": 66.72278537238297, - "y": -7411.8966579095795, - "rotation": 0.9232052181156292, - "action": "CARVE_LEFT" - }, - { - "x": 69.29235143863838, - "y": -7414.2954025601275, - "rotation": 0.869100011303805, - "action": "CARVE_LEFT" - }, - { - "x": 71.70139260043062, - "y": -7416.841674164053, - "rotation": 0.8149948044919808, - "action": "CARVE_LEFT" - }, - { - "x": 73.95032471403083, - "y": -7419.535813438463, - "rotation": 0.7608895976801566, - "action": "CARVE_LEFT" - }, - { - "x": 76.03949004113039, - "y": -7422.3782276469055, - "rotation": 0.7067843908683324, - "action": "CARVE_LEFT" - }, - { - "x": 77.96915746408868, - "y": -7425.369390403571, - "rotation": 0.6526791840565083, - "action": "CARVE_LEFT" - }, - { - "x": 79.73952270058987, - "y": -7428.509841478048, - "rotation": 0.5985739772446841, - "action": "CARVE_LEFT" - }, - { - "x": 81.35070851771046, - "y": -7431.800186600604, - "rotation": 0.5444687704328599, - "action": "CARVE_LEFT" - }, - { - "x": 82.80276494539898, - "y": -7435.241097268015, - "rotation": 0.49036356362103567, - "action": "CARVE_LEFT" - }, - { - "x": 84.09566948936948, - "y": -7438.833310549917, - "rotation": 0.43625835680921143, - "action": "CARVE_LEFT" - }, - { - "x": 85.22932734341038, - "y": -7442.577628895702, - "rotation": 0.3821531499973872, - "action": "CARVE_LEFT" - }, - { - "x": 86.20357160111004, - "y": -7446.474919941943, - "rotation": 0.32804794318556296, - "action": "CARVE_LEFT" - }, - { - "x": 87.01816346700092, - "y": -7450.526116320346, - "rotation": 0.2739427363737387, - "action": "CARVE_LEFT" - }, - { - "x": 87.67279246712351, - "y": -7454.732215466237, - "rotation": 0.21983752956191452, - "action": "CARVE_LEFT" - }, - { - "x": 88.16707665901184, - "y": -7459.094279427575, - "rotation": 0.1657323227500903, - "action": "CARVE_LEFT" - }, - { - "x": 88.50056284110185, - "y": -7463.61343467449, - "rotation": 0.1116271159382661, - "action": "CARVE_LEFT" - }, - { - "x": 88.67272676156442, - "y": -7468.290871909349, - "rotation": 0.05752190912644189, - "action": "CARVE_LEFT" - }, - { - "x": 88.68297332656428, - "y": -7473.127845877344, - "rotation": 0.003416702314617673, - "action": "CARVE_LEFT" - }, - { - "x": 88.53067931830411, - "y": -7477.842254564162, - "rotation": 6.2324968026823795, - "action": "CARVE_LEFT" - }, - { - "x": 88.21529294988986, - "y": -7482.413868890026, - "rotation": 6.178391595870555, - "action": "CARVE_LEFT" - }, - { - "x": 87.73633690519615, - "y": -7486.841505484642, - "rotation": 6.124286389058731, - "action": "CARVE_LEFT" - }, - { - "x": 87.09340812042126, - "y": -7491.124051360973, - "rotation": 6.070181182246906, - "action": "CARVE_LEFT" - }, - { - "x": 86.28617756624271, - "y": -7495.260463709942, - "rotation": 6.016075975435082, - "action": "CARVE_LEFT" - }, - { - "x": 85.31439003057216, - "y": -7499.249769695697, - "rotation": 5.9619707686232575, - "action": "CARVE_LEFT" - }, - { - "x": 84.17786390190767, - "y": -7503.091066251439, - "rotation": 5.907865561811433, - "action": "CARVE_LEFT" - }, - { - "x": 82.87649095328212, - "y": -7506.78351987581, - "rotation": 5.853760354999609, - "action": "CARVE_LEFT" - }, - { - "x": 81.41023612680583, - "y": -7510.326366429841, - "rotation": 5.799655148187784, - "action": "CARVE_LEFT" - }, - { - "x": 79.77913731880221, - "y": -7513.718910934449, - "rotation": 5.74554994137596, - "action": "CARVE_LEFT" - }, - { - "x": 77.98330516553455, - "y": -7516.960527368497, - "rotation": 5.6914447345641355, - "action": "CARVE_LEFT" - }, - { - "x": 76.0229228295225, - "y": -7520.0506584674085, - "rotation": 5.637339527752311, - "action": "CARVE_LEFT" - }, - { - "x": 73.89824578644684, - "y": -7522.988815522326, - "rotation": 5.583234320940487, - "action": "CARVE_LEFT" - }, - { - "x": 71.60960161264065, - "y": -7525.77457817983, - "rotation": 5.529129114128662, - "action": "CARVE_LEFT" - }, - { - "x": 69.15738977316568, - "y": -7528.4075942422005, - "rotation": 5.475023907316838, - "action": "CARVE_LEFT" - }, - { - "x": 66.54208141047212, - "y": -7530.887579468229, - "rotation": 5.4209187005050135, - "action": "CARVE_LEFT" - }, - { - "x": 63.76421913364038, - "y": -7533.21431737458, - "rotation": 5.366813493693189, - "action": "CARVE_LEFT" - }, - { - "x": 60.824416808203246, - "y": -7535.387659037691, - "rotation": 5.312708286881365, - "action": "NOTHING" - }, - { - "x": 57.57151212467417, - "y": -7537.268393616711, - "rotation": 5.316198945385353, - "action": "NOTHING" - }, - { - "x": 54.33210199223416, - "y": -7539.15897825833, - "rotation": 5.3196896038893415, - "action": "NOTHING" - }, - { "x": 51.106139072348896, "y": -7541.059421616, "rotation": 5.32318026239333, "action": "NOTHING" }, - { - "x": 47.893576480316774, - "y": -7542.969732647922, - "rotation": 5.326670920897318, - "action": "NOTHING" - }, - { - "x": 44.69436778399391, - "y": -7544.889920616118, - "rotation": 5.330161579401307, - "action": "NOTHING" - }, - { - "x": 41.50846700252263, - "y": -7546.819995085506, - "rotation": 5.333652237905295, - "action": "NOTHING" - }, - { - "x": 38.335828605063334, - "y": -7548.759965922982, - "rotation": 5.337142896409284, - "action": "NOTHING" - }, - { - "x": 35.17640750952977, - "y": -7550.709843296497, - "rotation": 5.340633554913272, - "action": "NOTHING" - }, - { - "x": 32.03015908132768, - "y": -7552.669637674144, - "rotation": 5.344124213417261, - "action": "NOTHING" - }, - { - "x": 28.897039132096857, - "y": -7554.6393598232435, - "rotation": 5.347614871921249, - "action": "NOTHING" - }, - { - "x": 25.777003918456508, - "y": -7556.619020809433, - "rotation": 5.3511055304252375, - "action": "NOTHING" - }, - { - "x": 22.670010140754037, - "y": -7558.608631995758, - "rotation": 5.354596188929226, - "action": "NOTHING" - }, - { - "x": 19.576014941817174, - "y": -7560.608205041764, - "rotation": 5.358086847433214, - "action": "NOTHING" - }, - { - "x": 16.494975905709406, - "y": -7562.6177519026, - "rotation": 5.361577505937203, - "action": "NOTHING" - }, - { - "x": 13.426851056488779, - "y": -7564.637284828108, - "rotation": 5.365068164441191, - "action": "NOTHING" - }, - { - "x": 10.371598856970015, - "y": -7566.666816361934, - "rotation": 5.36855882294518, - "action": "NOTHING" - }, - { - "x": 7.329178207489947, - "y": -7568.706359340627, - "rotation": 5.372049481449168, - "action": "NOTHING" - }, - { - "x": 4.299548444676258, - "y": -7570.755926892748, - "rotation": 5.375540139953157, - "action": "NOTHING" - }, - { - "x": 1.2826693402195297, - "y": -7572.815532437976, - "rotation": 5.379030798457145, - "action": "NOTHING" - }, - { - "x": -1.7214989003514312, - "y": -7574.885189686223, - "rotation": 5.3825214569611335, - "action": "NOTHING" - }, - { - "x": -4.712995638890969, - "y": -7576.964912636749, - "rotation": 5.386012115465122, - "action": "NOTHING" - }, - { - "x": -7.691859805854692, - "y": -7579.054715577277, - "rotation": 5.38950277396911, - "action": "NOTHING" - }, - { - "x": -10.658129901514314, - "y": -7581.154613083111, - "rotation": 5.392993432473099, - "action": "NOTHING" - }, - { - "x": -13.611843997169244, - "y": -7583.264620016261, - "rotation": 5.396484090977087, - "action": "NOTHING" - }, - { - "x": -16.55303973635491, - "y": -7585.384751524565, - "rotation": 5.399974749481076, - "action": "NOTHING" - }, - { - "x": -19.48175433604788, - "y": -7587.515023040817, - "rotation": 5.403465407985064, - "action": "NOTHING" - }, - { - "x": -22.3980245878677, - "y": -7589.655450281895, - "rotation": 5.406956066489053, - "action": "CARVE_RIGHT" - }, - { - "x": -24.859919996381045, - "y": -7592.215254491314, - "rotation": 5.461061273300877, - "action": "CARVE_RIGHT" - }, - { - "x": -27.159502507882664, - "y": -7594.924734223411, - "rotation": 5.515166480112701, - "action": "CARVE_RIGHT" - }, - { - "x": -29.29713338981959, - "y": -7597.784279655857, - "rotation": 5.569271686924526, - "action": "CARVE_RIGHT" - }, - { - "x": -31.273100471388567, - "y": -7600.794347370397, - "rotation": 5.62337689373635, - "action": "CARVE_RIGHT" - }, - { - "x": -33.08761835836013, - "y": -7603.9554601574455, - "rotation": 5.677482100548175, - "action": "CARVE_RIGHT" - }, - { - "x": -34.74082864731291, - "y": -7607.268206821222, - "rotation": 5.731587307359999, - "action": "CARVE_RIGHT" - }, - { - "x": -36.232800139279696, - "y": -7610.733241985422, - "rotation": 5.785692514171823, - "action": "CARVE_RIGHT" - }, - { - "x": -37.56352905280684, - "y": -7614.351285899426, - "rotation": 5.839797720983648, - "action": "CARVE_RIGHT" - }, - { - "x": -38.732939236428535, - "y": -7618.1231242450385, - "rotation": 5.893902927795472, - "action": "CARVE_RIGHT" - }, - { - "x": -39.74088238055745, - "y": -7622.049607943763, - "rotation": 5.948008134607297, - "action": "CARVE_RIGHT" - }, - { - "x": -40.58713822879339, - "y": -7626.131652964606, - "rotation": 6.002113341419121, - "action": "NOTHING" - }, - { - "x": -41.51700171552394, - "y": -7630.142868163088, - "rotation": 6.0056039999231094, - "action": "NOTHING" - }, - { - "x": -42.43641887123762, - "y": -7634.170372728436, - "rotation": 6.009094658427098, - "action": "NOTHING" - }, - { - "x": -43.345363909133894, - "y": -7638.2142226469405, - "rotation": 6.012585316931086, - "action": "NOTHING" - }, - { - "x": -44.24381079824961, - "y": -7642.274474060326, - "rotation": 6.016075975435075, - "action": "NOTHING" - }, - { - "x": -45.13173326416536, - "y": -7646.351183265254, - "rotation": 6.019566633939063, - "action": "NOTHING" - }, - { - "x": -46.009104789709866, - "y": -7650.444406712827, - "rotation": 6.023057292443052, - "action": "NOTHING" - }, - { - "x": -46.875898615662436, - "y": -7654.55420100809, - "rotation": 6.02654795094704, - "action": "NOTHING" - }, - { - "x": -47.73208774145355, - "y": -7658.680622909538, - "rotation": 6.0300386094510285, - "action": "NOTHING" - }, - { - "x": -48.577644925863495, - "y": -7662.823729328623, - "rotation": 6.033529267955017, - "action": "NOTHING" - }, - { - "x": -49.41254268771913, - "y": -7666.983577329261, - "rotation": 6.037019926459005, - "action": "NOTHING" - }, - { - "x": -50.23675330658871, - "y": -7671.160224127344, - "rotation": 6.040510584962994, - "action": "NOTHING" - }, - { - "x": -51.05024882347482, - "y": -7675.3537270902525, - "rotation": 6.044001243466982, - "action": "NOTHING" - }, - { - "x": -51.85300104150545, - "y": -7679.564143736364, - "rotation": 6.047491901970971, - "action": "NOTHING" - }, - { - "x": -52.64498152662318, - "y": -7683.7915317345705, - "rotation": 6.050982560474959, - "action": "NOTHING" - }, - { - "x": -53.42616160827242, - "y": -7688.035948903795, - "rotation": 6.054473218978948, - "action": "NOTHING" - }, - { - "x": -54.19651238008489, - "y": -7692.297453212504, - "rotation": 6.057963877482936, - "action": "NOTHING" - }, - { - "x": -54.95600470056309, - "y": -7696.576102778231, - "rotation": 6.0614545359869245, - "action": "NOTHING" - }, - { - "x": -55.70460919376203, - "y": -7700.871955867094, - "rotation": 6.064945194490913, - "action": "NOTHING" - }, - { - "x": -56.44229624996901, - "y": -7705.185070893317, - "rotation": 6.068435852994901, - "action": "NOTHING" - }, - { - "x": -57.169036026381605, - "y": -7709.515506418752, - "rotation": 6.07192651149889, - "action": "NOTHING" - }, - { - "x": -57.884798447783744, - "y": -7713.863321152405, - "rotation": 6.075417170002878, - "action": "NOTHING" - }, - { - "x": -58.58955320721999, - "y": -7718.2285739499575, - "rotation": 6.078907828506867, - "action": "NOTHING" - }, - { - "x": -59.28326976666795, - "y": -7722.611323813299, - "rotation": 6.082398487010855, - "action": "NOTHING" - }, - { - "x": -59.96591735770884, - "y": -7727.01162989005, - "rotation": 6.085889145514844, - "action": "NOTHING" - }, - { - "x": -60.63746498219626, - "y": -7731.429551473093, - "rotation": 6.089379804018832, - "action": "NOTHING" - }, - { - "x": -61.29788141292311, - "y": -7735.865148000104, - "rotation": 6.0928704625228205, - "action": "NOTHING" - }, - { - "x": -61.947135194286666, - "y": -7740.318479053087, - "rotation": 6.096361121026809, - "action": "NOTHING" - }, - { - "x": -62.585194642951876, - "y": -7744.789604357901, - "rotation": 6.099851779530797, - "action": "NOTHING" - }, - { - "x": -63.212027848512825, - "y": -7749.278583783802, - "rotation": 6.103342438034786, - "action": "NOTHING" - }, - { - "x": -63.82760267415241, - "y": -7753.785477342975, - "rotation": 6.106833096538774, - "action": "NOTHING" - }, - { - "x": -64.43188675730016, - "y": -7758.310345190074, - "rotation": 6.110323755042763, - "action": "NOTHING" - }, - { - "x": -65.02484751028832, - "y": -7762.853247621759, - "rotation": 6.113814413546751, - "action": "NOTHING" - }, - { - "x": -65.60645212100613, - "y": -7767.414245076237, - "rotation": 6.11730507205074, - "action": "NOTHING" - }, - { - "x": -66.17666755355225, - "y": -7771.993398132806, - "rotation": 6.120795730554728, - "action": "NOTHING" - }, - { - "x": -66.73546054888547, - "y": -7776.590767511392, - "rotation": 6.1242863890587165, - "action": "NOTHING" - }, - { - "x": -67.28279762547365, - "y": -7781.206414072101, - "rotation": 6.127777047562705, - "action": "NOTHING" - } - ] -} diff --git a/src/public/ghosts/soelden.json b/src/public/ghosts/soelden.json deleted file mode 100644 index 69abc1c..0000000 --- a/src/public/ghosts/soelden.json +++ /dev/null @@ -1,17427 +0,0 @@ -{ - "date": "2024-04-09T19:27:37.314Z", - "eventId": "event1712690752782", - "trackName": "soelden", - "trackVersion": 4, - "trackStyle": "GS", - "skier": "Emilie Hugas", - "totalTime": 48852.10000014305, - "timedSectors": [ - { "sectorNumber": 1, "time": 19800.5 }, - { "sectorNumber": 2, "time": 33183.90000009537 }, - { "sectorNumber": 3, "time": 48851.300000190735 } - ], - "positions": [ - { "x": 0, "y": 0, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.021000000000000005, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.06295380000000002, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.12581530164000004, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.20953850797639206, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.314077523258844, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.43938655270767457, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.5854199022917177, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.752131978506676, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.9394772881539614, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.1474104381200227, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.3758861351561587, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.6248591856588153, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.894284495450366, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -2.1841170695603753, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -2.4943120120073425, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -2.8248245255809263, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -3.1756099116246483, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -3.546623569819074, "rotation": 0, "action": "CARVE_RIGHT" }, - { - "x": 0.0011547106341897942, - "y": -3.9359879246556444, - "rotation": 0.004779469215862112, - "action": "CARVE_RIGHT" - }, - { - "x": 0.003641780329141519, - "y": -4.343428521799155, - "rotation": 0.009809108968230413, - "action": "CARVE_RIGHT" - }, - { - "x": 0.0076463937431964415, - "y": -4.768660845249853, - "rotation": 0.015087502666189459, - "action": "CARVE_RIGHT" - }, - { - "x": 0.013361049838787657, - "y": -5.211390549085603, - "rotation": 0.02061319399436652, - "action": "CARVE_RIGHT" - }, - { - "x": 0.020985334469832334, - "y": -5.671313694751502, - "rotation": 0.026384687251135273, - "action": "CARVE_RIGHT" - }, - { - "x": 0.030725687678702318, - "y": -6.148116993711184, - "rotation": 0.03240044769285859, - "action": "CARVE_RIGHT" - }, - { - "x": 0.042795165900280235, - "y": -6.641478055271261, - "rotation": 0.038658901884097936, - "action": "CARVE_RIGHT" - }, - { - "x": 0.057413199273454674, - "y": -7.151065639387595, - "rotation": 0.04515843805371589, - "action": "CARVE_RIGHT" - }, - { - "x": 0.07480534426310091, - "y": -7.676539914259596, - "rotation": 0.051897406456797475, - "action": "CARVE_RIGHT" - }, - { - "x": 0.09520303179813235, - "y": -8.217552718516252, - "rotation": 0.058874119742315205, - "action": "CARVE_RIGHT" - }, - { - "x": 0.11884331113359059, - "y": -8.773747827795411, - "rotation": 0.06608685332646189, - "action": "CARVE_RIGHT" - }, - { - "x": 0.14596858964696866, - "y": -9.344761225515631, - "rotation": 0.07353384577157436, - "action": "CARVE_RIGHT" - }, - { - "x": 0.17682636878103028, - "y": -9.930221377638015, - "rotation": 0.08121329917057075, - "action": "CARVE_RIGHT" - }, - { - "x": 0.21166897634729936, - "y": -10.529749511213543, - "rotation": 0.08912337953682269, - "action": "CARVE_RIGHT" - }, - { - "x": 0.2507532954061451, - "y": -11.14295989650981, - "rotation": 0.09726221719938355, - "action": "CARVE_RIGHT" - }, - { - "x": 0.2943404899409806, - "y": -11.769460132509469, - "rotation": 0.10562790720349294, - "action": "CARVE_RIGHT" - }, - { - "x": 0.3426957275455258, - "y": -12.408851435571375, - "rotation": 0.11421850971627649, - "action": "CARVE_RIGHT" - }, - { - "x": 0.3960878993443574, - "y": -13.060728931044125, - "rotation": 0.12303205043756016, - "action": "CARVE_RIGHT" - }, - { - "x": 0.45478933736808086, - "y": -13.724681947620647, - "rotation": 0.1320665210157166, - "action": "CARVE_RIGHT" - }, - { - "x": 0.519075529605411, - "y": -14.400294314221554, - "rotation": 0.14131987946846106, - "action": "CARVE_RIGHT" - }, - { - "x": 0.5892248329552396, - "y": -15.087144659194168, - "rotation": 0.15079005060851375, - "action": "CARVE_RIGHT" - }, - { - "x": 0.6655181843023988, - "y": -15.78480671161352, - "rotation": 0.160474926474044, - "action": "CARVE_RIGHT" - }, - { - "x": 0.7482388099412997, - "y": -16.49284960447113, - "rotation": 0.17037236676381223, - "action": "CARVE_RIGHT" - }, - { - "x": 0.837671933571939, - "y": -17.21083817953703, - "rotation": 0.18048019927692416, - "action": "CARVE_RIGHT" - }, - { - "x": 0.9341044830929168, - "y": -17.938333293680333, - "rotation": 0.19079622035711113, - "action": "CARVE_RIGHT" - }, - { - "x": 1.037824796416102, - "y": -18.674892126433555, - "rotation": 0.20131819534145068, - "action": "CARVE_RIGHT" - }, - { - "x": 1.1491223265274202, - "y": -19.420068488586097, - "rotation": 0.2120438590134397, - "action": "CARVE_RIGHT" - }, - { - "x": 1.2682873460179145, - "y": -20.173413131592444, - "rotation": 0.22297091606033295, - "action": "CARVE_RIGHT" - }, - { - "x": 1.3956106513087538, - "y": -20.934474057581134, - "rotation": 0.23409704153465868, - "action": "CARVE_RIGHT" - }, - { - "x": 1.5313832667932303, - "y": -21.70279682975103, - "rotation": 0.24541988131982265, - "action": "CARVE_RIGHT" - }, - { - "x": 1.6758961491179991, - "y": -22.47792488294214, - "rotation": 0.25693705259971134, - "action": "CARVE_RIGHT" - }, - { - "x": 1.8294398918248767, - "y": -23.2593998341691, - "rotation": 0.2686461443322048, - "action": "CARVE_RIGHT" - }, - { - "x": 1.992304430573418, - "y": -24.046761792906317, - "rotation": 0.2805447177265089, - "action": "CARVE_RIGHT" - }, - { - "x": 2.1647787491632573, - "y": -24.839549670915016, - "rotation": 0.29263030672421647, - "action": "CARVE_RIGHT" - }, - { - "x": 2.3471505865737976, - "y": -25.63730149140355, - "rotation": 0.30490041848400595, - "action": "CARVE_RIGHT" - }, - { - "x": 2.5397061452373095, - "y": -26.43955469731384, - "rotation": 0.3173525338698866, - "action": "CARVE_RIGHT" - }, - { - "x": 2.742729800759802, - "y": -27.24584645852826, - "rotation": 0.32998410794289784, - "action": "CARVE_RIGHT" - }, - { - "x": 2.9565038133022137, - "y": -28.055713977792973, - "rotation": 0.342792570456171, - "action": "CARVE_RIGHT" - }, - { - "x": 3.1813080408324947, - "y": -28.868694795155577, - "rotation": 0.3557753263532602, - "action": "CARVE_RIGHT" - }, - { - "x": 3.4174196544570523, - "y": -29.6843270907167, - "rotation": 0.3689297562696499, - "action": "CARVE_RIGHT" - }, - { - "x": 3.6651128560377755, - "y": -30.502149985497397, - "rotation": 0.3822532170373454, - "action": "CARVE_RIGHT" - }, - { - "x": 3.924658598298478, - "y": -31.32170384022628, - "rotation": 0.39574304219245265, - "action": "CARVE_RIGHT" - }, - { - "x": 4.196324307622088, - "y": -32.142530551852666, - "rotation": 0.4093965424856538, - "action": "CARVE_RIGHT" - }, - { - "x": 4.480373609737259, - "y": -32.96417384759442, - "rotation": 0.4232110063954834, - "action": "CARVE_RIGHT" - }, - { - "x": 4.777066058490302, - "y": -33.78617957633177, - "rotation": 0.43718370064431156, - "action": "CARVE_RIGHT" - }, - { - "x": 5.086656867895452, - "y": -34.608095997160994, - "rotation": 0.45131187071693846, - "action": "CARVE_RIGHT" - }, - { - "x": 5.409396647653436, - "y": -35.42947406492467, - "rotation": 0.4655927413817059, - "action": "CARVE_RIGHT" - }, - { - "x": 5.745531142325176, - "y": -36.24986771253808, - "rotation": 0.4800235172140301, - "action": "CARVE_RIGHT" - }, - { - "x": 6.095300974344204, - "y": -37.06883412993441, - "rotation": 0.4946013831222601, - "action": "CARVE_RIGHT" - }, - { - "x": 6.458941391047964, - "y": -37.88593403945442, - "rotation": 0.5093235048757669, - "action": "CARVE_RIGHT" - }, - { - "x": 6.8366820159047075, - "y": -38.700731967509526, - "rotation": 0.5241870296351668, - "action": "CARVE_RIGHT" - }, - { - "x": 7.228746604109071, - "y": -39.51279651235059, - "rotation": 0.5391890864845827, - "action": "CARVE_RIGHT" - }, - { - "x": 7.635352802715725, - "y": -40.321700607778084, - "rotation": 0.554326786965848, - "action": "CARVE_RIGHT" - }, - { - "x": 8.056711915476656, - "y": -41.12702178263283, - "rotation": 0.5695972256145565, - "action": "NOTHING" - }, - { - "x": 8.526223880712028, - "y": -41.89855866495925, - "rotation": 0.5661065671105678, - "action": "NOTHING" - }, - { - "x": 8.99702803062018, - "y": -42.67972366494741, - "rotation": 0.5626159086065792, - "action": "NOTHING" - }, - { - "x": 9.469081192323856, - "y": -43.47057961006343, - "rotation": 0.5591252501025905, - "action": "NOTHING" - }, - { - "x": 9.942340009200594, - "y": -44.2711894476322, - "rotation": 0.5556345915986018, - "action": "NOTHING" - }, - { - "x": 10.416760941407373, - "y": -45.081616244462225, - "rotation": 0.5521439330946132, - "action": "NOTHING" - }, - { - "x": 10.892300266403824, - "y": -45.90192318647149, - "rotation": 0.5486532745906245, - "action": "NOTHING" - }, - { - "x": 11.368914079474028, - "y": -46.73217357831449, - "rotation": 0.5451626160866359, - "action": "NOTHING" - }, - { - "x": 11.846558294246911, - "y": -47.57243084301019, - "rotation": 0.5416719575826472, - "action": "NOTHING" - }, - { - "x": 12.325188643215224, - "y": -48.422758521571204, - "rotation": 0.5381812990786585, - "action": "NOTHING" - }, - { - "x": 12.804760678253118, - "y": -49.28322027263389, - "rotation": 0.5346906405746699, - "action": "NOTHING" - }, - { - "x": 13.285229771132324, - "y": -50.1538798720896, - "rotation": 0.5311999820706812, - "action": "NOTHING" - }, - { - "x": 13.766551114036929, - "y": -51.034801212716914, - "rotation": 0.5277093235666925, - "action": "NOTHING" - }, - { - "x": 14.248679720076765, - "y": -51.926048303815, - "rotation": 0.5242186650627039, - "action": "CARVE_RIGHT" - }, - { - "x": 14.700249231491696, - "y": -52.85570933295723, - "rotation": 0.5414506899257384, - "action": "CARVE_RIGHT" - }, - { - "x": 15.16970986204546, - "y": -53.7786686126172, - "rotation": 0.558813062992622, - "action": "CARVE_RIGHT" - }, - { - "x": 15.657289974134953, - "y": -54.694459178460384, - "rotation": 0.5763025073108335, - "action": "CARVE_RIGHT" - }, - { - "x": 16.163208695334625, - "y": -55.60262152424098, - "rotation": 0.5939157312526542, - "action": "CARVE_RIGHT" - }, - { - "x": 16.687675681330877, - "y": -56.502703867904984, - "rotation": 0.6116494291143442, - "action": "CARVE_RIGHT" - }, - { - "x": 17.230890886005596, - "y": -57.394262411151345, - "rotation": 0.6295002817164259, - "action": "CARVE_RIGHT" - }, - { - "x": 17.793044338818394, - "y": -58.27686159230446, - "rotation": 0.6474649570049669, - "action": "CARVE_RIGHT" - }, - { - "x": 18.37431592963144, - "y": -59.150074332356645, - "rotation": 0.6655401106537571, - "action": "CARVE_RIGHT" - }, - { - "x": 18.97487520111508, - "y": -60.01348227404434, - "rotation": 0.6837223866672756, - "action": "CARVE_RIGHT" - }, - { - "x": 19.594881148866577, - "y": -60.86667601382748, - "rotation": 0.70200841798434, - "action": "CARVE_RIGHT" - }, - { - "x": 20.23448202936842, - "y": -61.70925532664655, - "rotation": 0.7203948270823334, - "action": "CARVE_RIGHT" - }, - { - "x": 20.89381517590674, - "y": -62.54082938333777, - "rotation": 0.738878226581904, - "action": "CARVE_RIGHT" - }, - { - "x": 21.57300682256436, - "y": -63.36101696059212, - "rotation": 0.7574552198520327, - "action": "NOTHING" - }, - { - "x": 22.328194765408032, - "y": -64.11856988202821, - "rotation": 0.753964561348044, - "action": "NOTHING" - }, - { - "x": 23.083891452901355, - "y": -64.88341368433774, - "rotation": 0.7504739028440554, - "action": "NOTHING" - }, - { - "x": 23.840074824997124, - "y": -65.65559838388738, - "rotation": 0.7469832443400667, - "action": "NOTHING" - }, - { "x": 24.59672257531952, "y": -66.435174160027, "rotation": 0.743492585836078, "action": "NOTHING" }, - { - "x": 25.353812151861938, - "y": -67.22219135458673, - "rotation": 0.7400019273320894, - "action": "NOTHING" - }, - { - "x": 26.1113207576829, - "y": -68.01670047137546, - "rotation": 0.7365112688281007, - "action": "NOTHING" - }, - { - "x": 26.869225351600154, - "y": -68.81875217568083, - "rotation": 0.733020610324112, - "action": "NOTHING" - }, - { - "x": 27.62750264888284, - "y": -69.6283972937705, - "rotation": 0.7295299518201234, - "action": "NOTHING" - }, - { - "x": 28.386129121941842, - "y": -70.44568681239502, - "rotation": 0.7260392933161347, - "action": "NOTHING" - }, - { - "x": 29.145081001018255, - "y": -71.2706718782919, - "rotation": 0.722548634812146, - "action": "NOTHING" - }, - { - "x": 29.90433427487001, - "y": -72.10340379769126, - "rotation": 0.7190579763081574, - "action": "NOTHING" - }, - { - "x": 30.663864691456634, - "y": -72.94393403582275, - "rotation": 0.7155673178041687, - "action": "NOTHING" - }, - { "x": 31.4236477586222, "y": -73.79231421642397, "rotation": 0.71207665930018, "action": "NOTHING" }, - { - "x": 32.18365874477638, - "y": -74.64859612125025, - "rotation": 0.7085860007961914, - "action": "NOTHING" - }, - { - "x": 32.943872679573744, - "y": -75.51283168958575, - "rotation": 0.7050953422922027, - "action": "NOTHING" - }, - { - "x": 33.70426435459114, - "y": -76.38507301775606, - "rotation": 0.7016046837882141, - "action": "NOTHING" - }, - { - "x": 34.46480832400332, - "y": -77.2653723586421, - "rotation": 0.6981140252842254, - "action": "NOTHING" - }, - { - "x": 35.22547890525671, - "y": -78.15378212119543, - "rotation": 0.6946233667802367, - "action": "NOTHING" - }, - { - "x": 35.98625017974136, - "y": -79.05035486995497, - "rotation": 0.6911327082762481, - "action": "NOTHING" - }, - { - "x": 36.74709599346112, - "y": -79.955143324565, - "rotation": 0.6876420497722594, - "action": "NOTHING" - }, - { - "x": 37.50798995770197, - "y": -80.86820035929458, - "rotation": 0.6841513912682707, - "action": "NOTHING" - }, - { - "x": 38.268905449698565, - "y": -81.78957900255838, - "rotation": 0.6806607327642821, - "action": "NOTHING" - }, - { - "x": 39.02981561329897, - "y": -82.71933243643879, - "rotation": 0.6771700742602934, - "action": "NOTHING" - }, - { - "x": 39.79069335962765, - "y": -83.65751399620943, - "rotation": 0.6736794157563047, - "action": "NOTHING" - }, - { - "x": 40.55151136774661, - "y": -84.60417716986001, - "rotation": 0.6701887572523161, - "action": "NOTHING" - }, - { - "x": 41.312242085314786, - "y": -85.5593755976225, - "rotation": 0.6666980987483274, - "action": "NOTHING" - }, - { - "x": 42.07285772924565, - "y": -86.52316307149876, - "rotation": 0.6632074402443388, - "action": "NOTHING" - }, - { - "x": 42.83333028636304, - "y": -87.4955935347893, - "rotation": 0.6597167817403501, - "action": "NOTHING" - }, - { - "x": 43.59363151405524, - "y": -88.47672108162364, - "rotation": 0.6562261232363614, - "action": "NOTHING" - }, - { - "x": 44.353732940927266, - "y": -89.46659995649179, - "rotation": 0.6527354647323728, - "action": "CARVE_RIGHT" - }, - { - "x": 45.06384445134222, - "y": -90.51032158366758, - "rotation": 0.6745537306586828, - "action": "CARVE_RIGHT" - }, - { - "x": 45.80014969669428, - "y": -91.53703593244501, - "rotation": 0.6964693317570432, - "action": "CARVE_RIGHT" - }, - { - "x": 46.562806413067186, - "y": -92.54628677134113, - "rotation": 0.7184782795365529, - "action": "CARVE_RIGHT" - }, - { - "x": 47.351956372878576, - "y": -93.53763213790694, - "rotation": 0.7405765782046179, - "action": "CARVE_RIGHT" - }, - { - "x": 48.16772520552651, - "y": -94.51064455943012, - "rotation": 0.7627602253711795, - "action": "CARVE_RIGHT" - }, - { - "x": 49.01022222982399, - "y": -95.46491126268161, - "rotation": 0.785025212752529, - "action": "CARVE_RIGHT" - }, - { - "x": 49.879540298311234, - "y": -96.40003437261345, - "rotation": 0.8073675268745893, - "action": "CARVE_RIGHT" - }, - { - "x": 50.775755653527035, - "y": -97.31563109992352, - "rotation": 0.8297831497755432, - "action": "CARVE_RIGHT" - }, - { - "x": 51.698927796311736, - "y": -98.21133391741054, - "rotation": 0.8522680597076886, - "action": "NOTHING" - }, - { - "x": 52.72385911776777, - "y": -99.01861687312511, - "rotation": 0.8487774012036999, - "action": "NOTHING" - }, - { - "x": 53.747966791390915, - "y": -99.83249796882902, - "rotation": 0.8452867426997113, - "action": "NOTHING" - }, - { - "x": 54.77124238593677, - "y": -100.65301883978985, - "rotation": 0.8417960841957226, - "action": "NOTHING" - }, - { - "x": 55.79367718369977, - "y": -101.48022131209423, - "rotation": 0.8383054256917339, - "action": "NOTHING" - }, - { - "x": 56.81526218132156, - "y": -102.31414740206296, - "rotation": 0.8348147671877453, - "action": "NOTHING" - }, - { - "x": 57.83598809059731, - "y": -103.15483931566786, - "rotation": 0.8313241086837566, - "action": "NOTHING" - }, - { - "x": 58.85584533927982, - "y": -104.00233944795023, - "rotation": 0.827833450179768, - "action": "NOTHING" - }, - { - "x": 59.87482407188141, - "y": -104.85669038244102, - "rotation": 0.8243427916757793, - "action": "NOTHING" - }, - { - "x": 60.89291415047378, - "y": -105.71793489058247, - "rotation": 0.8208521331717906, - "action": "NOTHING" - }, - { - "x": 61.91010515548557, - "y": -106.5861159311516, - "rotation": 0.817361474667802, - "action": "NOTHING" - }, - { - "x": 62.926386386497924, - "y": -107.46127664968516, - "rotation": 0.8138708161638133, - "action": "NOTHING" - }, - { - "x": 63.94174686303782, - "y": -108.34346037790628, - "rotation": 0.8103801576598246, - "action": "NOTHING" - }, - { - "x": 64.95617532536929, - "y": -109.23271063315273, - "rotation": 0.806889499155836, - "action": "NOTHING" - }, - { - "x": 65.96966023528255, - "y": -110.12907111780676, - "rotation": 0.8033988406518473, - "action": "NOTHING" - }, - { - "x": 66.98218977688094, - "y": -111.0325857187266, - "rotation": 0.7999081821478586, - "action": "NOTHING" - }, - { - "x": 67.99375185736585, - "y": -111.94329850667954, - "rotation": 0.79641752364387, - "action": "NOTHING" - }, - { - "x": 69.00433410781943, - "y": -112.86125373577661, - "rotation": 0.7929268651398813, - "action": "NOTHING" - }, - { - "x": 70.01392388398524, - "y": -113.78649584290886, - "rotation": 0.7894362066358926, - "action": "NOTHING" - }, - { - "x": 71.02250826704686, - "y": -114.71906944718523, - "rotation": 0.785945548131904, - "action": "NOTHING" - }, - { - "x": 72.03007406440429, - "y": -115.65901934937203, - "rotation": 0.7824548896279153, - "action": "NOTHING" - }, - { - "x": 73.03660781044834, - "y": -116.60639053133397, - "rotation": 0.7789642311239267, - "action": "NOTHING" - }, - { - "x": 74.04209576733298, - "y": -117.56122815547678, - "rotation": 0.775473572619938, - "action": "NOTHING" - }, - { - "x": 75.04652392574546, - "y": -118.52357756419147, - "rotation": 0.7719829141159493, - "action": "NOTHING" - }, - { - "x": 76.04987800567453, - "y": -119.4934842793, - "rotation": 0.7684922556119607, - "action": "CARVE_LEFT" - }, - { - "x": 76.92699513163838, - "y": -120.58645245340685, - "rotation": 0.7440297680277665, - "action": "CARVE_LEFT" - }, - { - "x": 77.77806969604231, - "y": -121.71002401800072, - "rotation": 0.7194877278767164, - "action": "CARVE_LEFT" - }, - { - "x": 78.60294076898428, - "y": -122.86466292506815, - "rotation": 0.6948620834897647, - "action": "CARVE_LEFT" - }, - { - "x": 79.40142733148373, - "y": -124.05085220666652, - "rotation": 0.6701487777130304, - "action": "CARVE_LEFT" - }, - { - "x": 80.17332808753821, - "y": -125.26909420221449, - "rotation": 0.6453437472211316, - "action": "CARVE_LEFT" - }, - { - "x": 80.91842126290344, - "y": -126.51991079804986, - "rotation": 0.6204429218309682, - "action": "CARVE_LEFT" - }, - { - "x": 81.63646439049079, - "y": -127.80384367936254, - "rotation": 0.5954422238158323, - "action": "CARVE_LEFT" - }, - { - "x": 82.32719408226765, - "y": -129.12145459461777, - "rotation": 0.5703375672197298, - "action": "CARVE_LEFT" - }, - { - "x": 82.99032578753693, - "y": -130.47332563259326, - "rotation": 0.5451248571717917, - "action": "CARVE_LEFT" - }, - { - "x": 83.6255535374637, - "y": -131.8600595121618, - "rotation": 0.5197999892006593, - "action": "CARVE_LEFT" - }, - { - "x": 84.23254967570767, - "y": -133.28227988495925, - "rotation": 0.49435884854872403, - "action": "CARVE_LEFT" - }, - { - "x": 84.81096457501151, - "y": -134.7406316510859, - "rotation": 0.4687973094861049, - "action": "CARVE_LEFT" - }, - { - "x": 85.36042633958587, - "y": -136.23578128799753, - "rotation": 0.44311123462424445, - "action": "CARVE_LEFT" - }, - { - "x": 85.88054049312301, - "y": -137.76841719275131, - "rotation": 0.4172964742290083, - "action": "CARVE_LEFT" - }, - { - "x": 86.3708896522617, - "y": -139.33925003777944, - "rotation": 0.3913488655331684, - "action": "CARVE_LEFT" - }, - { - "x": 86.83103318531687, - "y": -140.94901314037233, - "rotation": 0.3652642320481551, - "action": "CARVE_LEFT" - }, - { - "x": 87.26050685607811, - "y": -142.59846284606215, - "rotation": 0.33903838287496, - "action": "CARVE_LEFT" - }, - { - "x": 87.65882245247168, - "y": -144.2883789261054, - "rotation": 0.3126671120140728, - "action": "CARVE_LEFT" - }, - { - "x": 88.02546739987129, - "y": -146.0195649892729, - "rotation": 0.2861461976743359, - "action": "CARVE_LEFT" - }, - { - "x": 88.35990435883302, - "y": -147.7928489081639, - "rotation": 0.2594714015805999, - "action": "CARVE_LEFT" - }, - { - "x": 88.66157080702021, - "y": -149.60908326027024, - "rotation": 0.2326384682800629, - "action": "CARVE_LEFT" - }, - { - "x": 88.92987860507415, - "y": -151.46914578402584, - "rotation": 0.2056431244471782, - "action": "CARVE_LEFT" - }, - { - "x": 89.16421354617644, - "y": -153.3739398500858, - "rotation": 0.17848107818701237, - "action": "CARVE_LEFT" - }, - { - "x": 89.36393488903866, - "y": -155.32439494808884, - "rotation": 0.1511480183369384, - "action": "CARVE_LEFT" - }, - { - "x": 89.52837487404479, - "y": -157.32146718916638, - "rotation": 0.12363961376654657, - "action": "CARVE_LEFT" - }, - { - "x": 89.65683822226137, - "y": -159.36613982447147, - "rotation": 0.09595151267565671, - "action": "CARVE_LEFT" - }, - { - "x": 89.74860161701969, - "y": -161.45942378001007, - "rotation": 0.0680793418903149, - "action": "CARVE_LEFT" - }, - { - "x": 89.8029131677637, - "y": -163.6023582080676, - "rotation": 0.040018706156658146, - "action": "CARVE_LEFT" - }, - { - "x": 89.81899185584632, - "y": -165.79601105553374, - "rotation": 0.011765187432529703, - "action": "CARVE_LEFT" - }, - { - "x": 89.79603156835323, - "y": -167.99851019175966, - "rotation": 6.266499651356314, - "action": "CARVE_LEFT" - }, - { - "x": 89.73323653915405, - "y": -170.1789269873866, - "rotation": 6.23785276509681, - "action": "CARVE_LEFT" - }, - { - "x": 89.62983531677844, - "y": -172.33612904196613, - "rotation": 6.209015200758623, - "action": "CARVE_LEFT" - }, - { - "x": 89.48508139502319, - "y": -174.46900549515203, - "rotation": 6.179992344302939, - "action": "CARVE_LEFT" - }, - { - "x": 89.2982538242203, - "y": -176.5764676683887, - "rotation": 6.150789601753252, - "action": "CARVE_LEFT" - }, - { - "x": 89.06865780279385, - "y": -178.65744968843688, - "rotation": 6.121412398220185, - "action": "CARVE_LEFT" - }, - { - "x": 88.79562524874797, - "y": -180.7109090923929, - "rotation": 6.091866176925177, - "action": "CARVE_LEFT" - }, - { - "x": 88.4785153507442, - "y": -182.73582741387094, - "rotation": 6.062156398223194, - "action": "CARVE_LEFT" - }, - { - "x": 88.1167150984418, - "y": -184.73121075003337, - "rotation": 6.032288538624639, - "action": "CARVE_LEFT" - }, - { - "x": 87.70963979179015, - "y": -186.6960903091682, - "rotation": 6.00226808981664, - "action": "CARVE_LEFT" - }, - { - "x": 87.25673352897856, - "y": -188.62952293852732, - "rotation": 5.972100557683864, - "action": "CARVE_LEFT" - }, - { - "x": 86.75746967276449, - "y": -190.53059163215423, - "rotation": 5.941791461329046, - "action": "CARVE_LEFT" - }, - { - "x": 86.21135129491762, - "y": -192.39840601844492, - "rotation": 5.911346332093404, - "action": "CARVE_LEFT" - }, - { - "x": 85.61791159853314, - "y": -194.23210282720063, - "rotation": 5.880770712577088, - "action": "CARVE_LEFT" - }, - { - "x": 84.97671431798416, - "y": -196.03084633594625, - "rotation": 5.850070155659854, - "action": "CARVE_LEFT" - }, - { - "x": 84.2873540962996, - "y": -197.79382879530345, - "rotation": 5.819250223522121, - "action": "CARVE_LEFT" - }, - { - "x": 83.54945683977029, - "y": -199.5202708332231, - "rotation": 5.788316486666575, - "action": "CARVE_LEFT" - }, - { - "x": 82.76268004960276, - "y": -201.20942183789674, - "rotation": 5.757274522940497, - "action": "CARVE_LEFT" - }, - { - "x": 81.92671313045682, - "y": -202.86056031918247, - "rotation": 5.726129916558978, - "action": "CARVE_LEFT" - }, - { - "x": 81.04127767571947, - "y": -204.47299424839582, - "rotation": 5.694888257129183, - "action": "CARVE_LEFT" - }, - { - "x": 80.10612772938491, - "y": -206.0460613763323, - "rotation": 5.663555138675828, - "action": "CARVE_LEFT" - }, - { - "x": 79.12105002442668, - "y": -207.57912952940316, - "rotation": 5.632136158668056, - "action": "CARVE_LEFT" - }, - { - "x": 78.08586419756497, - "y": -209.07159688378218, - "rotation": 5.600636917047843, - "action": "CARVE_LEFT" - }, - { - "x": 77.00042298034889, - "y": -210.52289221747594, - "rotation": 5.569063015260126, - "action": "CARVE_LEFT" - }, - { - "x": 75.86461236649008, - "y": -211.93247514024694, - "rotation": 5.537420055284806, - "action": "CARVE_LEFT" - }, - { - "x": 74.67835175540107, - "y": -213.29983630133282, - "rotation": 5.505713638670778, - "action": "CARVE_LEFT" - }, - { - "x": 73.44159407190811, - "y": -214.62449757492206, - "rotation": 5.473949365572175, - "action": "NOTHING" - }, - { - "x": 72.0706903558352, - "y": -215.8297439621234, - "rotation": 5.477440024076164, - "action": "NOTHING" - }, - { - "x": 70.70306121784952, - "y": -217.0428528880901, - "rotation": 5.480930682580152, - "action": "NOTHING" - }, - { - "x": 69.33871005192641, - "y": -218.26386353491017, - "rotation": 5.484421341084141, - "action": "NOTHING" - }, - { - "x": 67.97764055487899, - "y": -219.49281528579002, - "rotation": 5.487911999588129, - "action": "NOTHING" - }, - { - "x": 66.61985672550207, - "y": -220.7297477244362, - "rotation": 5.491402658092118, - "action": "NOTHING" - }, - { "x": 65.2653628637184, "y": -221.974700634439, "rotation": 5.494893316596106, "action": "NOTHING" }, - { - "x": 63.914163569727016, - "y": -223.22771399865744, - "rotation": 5.4983839751000945, - "action": "NOTHING" - }, - { - "x": 62.56626374315416, - "y": -224.48882799860652, - "rotation": 5.501874633604083, - "action": "NOTHING" - }, - { - "x": 61.221668582206235, - "y": -225.75808301384572, - "rotation": 5.505365292108071, - "action": "NOTHING" - }, - { - "x": 59.88038358282518, - "y": -227.03551962136947, - "rotation": 5.50885595061206, - "action": "NOTHING" - }, - { - "x": 58.54241453784608, - "y": -228.3211785949993, - "rotation": 5.512346609116048, - "action": "NOTHING" - }, - { - "x": 57.20776753615699, - "y": -229.6151009047777, - "rotation": 5.515837267620037, - "action": "NOTHING" - }, - { - "x": 55.876448961861136, - "y": -230.9173277163637, - "rotation": 5.519327926124025, - "action": "NOTHING" - }, - { - "x": 54.548465493441235, - "y": -232.22790039043016, - "rotation": 5.522818584628014, - "action": "NOTHING" - }, - { - "x": 53.22382410292615, - "y": -233.54686048206278, - "rotation": 5.526309243132002, - "action": "NOTHING" - }, - { - "x": 51.90253205505978, - "y": -234.87424974016076, - "rotation": 5.5297999016359904, - "action": "NOTHING" - }, - { - "x": 50.58459690647213, - "y": -236.2101101068392, - "rotation": 5.533290560139979, - "action": "NOTHING" - }, - { - "x": 49.270026504852694, - "y": -237.55448371683323, - "rotation": 5.536781218643967, - "action": "NOTHING" - }, - { - "x": 47.95882898812599, - "y": -238.9074128969037, - "rotation": 5.540271877147956, - "action": "NOTHING" - }, - { - "x": 46.651012783629334, - "y": -240.2689401652447, - "rotation": 5.543762535651944, - "action": "NOTHING" - }, - { - "x": 45.346586607292885, - "y": -241.63910823089256, - "rotation": 5.547253194155933, - "action": "NOTHING" - }, - { - "x": 44.0455594628218, - "y": -243.01795999313688, - "rotation": 5.550743852659921, - "action": "NOTHING" - }, - { - "x": 42.74794064088066, - "y": -244.40553854093284, - "rotation": 5.5542345111639095, - "action": "NOTHING" - }, - { - "x": 41.453739718280055, - "y": -245.80188715231532, - "rotation": 5.557725169667898, - "action": "NOTHING" - }, - { - "x": 40.162966557165404, - "y": -247.20704929381475, - "rotation": 5.561215828171886, - "action": "NOTHING" - }, - { - "x": 38.87563130420791, - "y": -248.62106861987456, - "rotation": 5.564706486675875, - "action": "NOTHING" - }, - { - "x": 37.59174438979769, - "y": -250.0439889722703, - "rotation": 5.568197145179863, - "action": "NOTHING" - }, - { - "x": 36.311316527239164, - "y": -251.47585437953035, - "rotation": 5.571687803683852, - "action": "NOTHING" - }, - { - "x": 35.03435871194849, - "y": -252.91670905635826, - "rotation": 5.57517846218784, - "action": "NOTHING" - }, - { - "x": 33.76088222065325, - "y": -254.3665974030569, - "rotation": 5.578669120691829, - "action": "NOTHING" - }, - { - "x": 32.49089861059425, - "y": -255.825564004954, - "rotation": 5.582159779195817, - "action": "CARVE_RIGHT" - }, - { - "x": 31.400950202579594, - "y": -257.4568149013088, - "rotation": 5.61610277539847, - "action": "CARVE_RIGHT" - }, - { - "x": 30.364217724210118, - "y": -259.1433672991262, - "rotation": 5.650117719073037, - "action": "CARVE_RIGHT" - }, - { - "x": 29.38091834123353, - "y": -260.88586480168664, - "rotation": 5.684210310064271, - "action": "CARVE_RIGHT" - }, - { - "x": 28.45130749250557, - "y": -262.6849865910613, - "rotation": 5.718386249049856, - "action": "CARVE_RIGHT" - }, - { - "x": 27.575679111346254, - "y": -264.54144770899927, - "rotation": 5.752651238520363, - "action": "CARVE_RIGHT" - }, - { - "x": 26.754365872363195, - "y": -266.45599936126456, - "rotation": 5.787010983757356, - "action": "CARVE_RIGHT" - }, - { - "x": 25.987739463836856, - "y": -268.4294292455258, - "rotation": 5.821471193809829, - "action": "CARVE_RIGHT" - }, - { - "x": 25.27621088577981, - "y": -270.462561902915, - "rotation": 5.856037582469142, - "action": "CARVE_RIGHT" - }, - { - "x": 24.620230773799115, - "y": -272.556259093388, - "rotation": 5.890715869242627, - "action": "CARVE_RIGHT" - }, - { - "x": 24.02028974890802, - "y": -274.7114201950356, - "rotation": 5.925511780326046, - "action": "CARVE_RIGHT" - }, - { - "x": 23.476918793450434, - "y": -276.9289826275096, - "rotation": 5.960431049575046, - "action": "CARVE_RIGHT" - }, - { - "x": 22.990689653318697, - "y": -279.20992229974416, - "rotation": 5.995479419475813, - "action": "CARVE_RIGHT" - }, - { - "x": 22.562215266662506, - "y": -281.5552540821688, - "rotation": 6.030662642115062, - "action": "CARVE_RIGHT" - }, - { - "x": 22.192150219304136, - "y": -283.96603230362484, - "rotation": 6.065986480149556, - "action": "CARVE_RIGHT" - }, - { - "x": 21.881191227092508, - "y": -286.4433512732144, - "rotation": 6.10145670777531, - "action": "CARVE_RIGHT" - }, - { - "x": 21.63007764544611, - "y": -288.9883458273256, - "rotation": 6.1370791116966465, - "action": "CARVE_RIGHT" - }, - { - "x": 21.4395920063524, - "y": -291.60219190209557, - "rotation": 6.172859492095281, - "action": "CARVE_RIGHT" - }, - { - "x": 21.310560583108966, - "y": -294.2861071315873, - "rotation": 6.208803663599586, - "action": "CARVE_RIGHT" - }, - { - "x": 21.243853983109645, - "y": -297.0413514719751, - "rotation": 6.244917456254222, - "action": "CARVE_RIGHT" - }, - { - "x": 21.240387768996598, - "y": -299.86922785204786, - "rotation": 6.281206716490282, - "action": "CARVE_RIGHT" - }, - { - "x": 21.301103424552853, - "y": -302.65770597711565, - "rotation": 0.03449200091654259, - "action": "CARVE_RIGHT" - }, - { - "x": 21.426902495069594, - "y": -305.39901230500175, - "rotation": 0.07113792543139966, - "action": "CARVE_RIGHT" - }, - { - "x": 21.618643451833517, - "y": -308.09183098109315, - "rotation": 0.10795248588031246, - "action": "CARVE_RIGHT" - }, - { - "x": 21.87714103503238, - "y": -310.73488562390446, - "rotation": 0.1449289709788154, - "action": "CARVE_RIGHT" - }, - { - "x": 22.203165629338336, - "y": -313.326939995381, - "rotation": 0.1820606563202458, - "action": "CARVE_RIGHT" - }, - { - "x": 22.59744267249962, - "y": -315.86679864059573, - "rotation": 0.2193408055627048, - "action": "CARVE_RIGHT" - }, - { - "x": 23.06065209724709, - "y": -318.3533074965401, - "rotation": 0.25676267161546285, - "action": "CARVE_RIGHT" - }, - { - "x": 23.593427806797617, - "y": -320.7853544697319, - "rotation": 0.294319497824606, - "action": "CARVE_RIGHT" - }, - { - "x": 24.19635718421208, - "y": -323.1618699823862, - "rotation": 0.33200451915772083, - "action": "CARVE_RIGHT" - }, - { - "x": 24.86998063584104, - "y": -325.48182748691767, - "rotation": 0.36981096338741615, - "action": "CARVE_RIGHT" - }, - { - "x": 25.614791169066752, - "y": -327.7442439485653, - "rotation": 0.40773205227347986, - "action": "CARVE_RIGHT" - }, - { - "x": 26.431234004525464, - "y": -329.9481802959543, - "rotation": 0.44576100274347097, - "action": "CARVE_RIGHT" - }, - { - "x": 27.319706222969344, - "y": -332.09274183943114, - "rotation": 0.4838910280715461, - "action": "CARVE_RIGHT" - }, - { - "x": 28.280556446902807, - "y": -334.1770786570331, - "rotation": 0.522115339055322, - "action": "CARVE_RIGHT" - }, - { - "x": 29.31408455710324, - "y": -336.20038594797353, - "rotation": 0.5604271451905758, - "action": "CARVE_RIGHT" - }, - { - "x": 30.420541444111667, - "y": -338.1619043535491, - "rotation": 0.5988196558435841, - "action": "CARVE_RIGHT" - }, - { - "x": 31.6001287947542, - "y": -340.0609202453981, - "rotation": 0.6372860814209065, - "action": "CARVE_RIGHT" - }, - { - "x": 32.85299891373071, - "y": -341.8967659810594, - "rotation": 0.6758196345364157, - "action": "CARVE_RIGHT" - }, - { - "x": 34.179254580282674, - "y": -343.6688201268074, - "rotation": 0.71441353117538, - "action": "CARVE_RIGHT" - }, - { - "x": 35.578948939927805, - "y": -345.3765076477589, - "rotation": 0.7530609918554044, - "action": "CARVE_RIGHT" - }, - { - "x": 37.052085431224874, - "y": -347.0193000652703, - "rotation": 0.7917552427840371, - "action": "CARVE_RIGHT" - }, - { - "x": 38.598617747508, - "y": -348.59671558166764, - "rotation": 0.8304895170128488, - "action": "CARVE_RIGHT" - }, - { - "x": 40.21844983350576, - "y": -350.10831917237255, - "rotation": 0.8692570555877954, - "action": "CARVE_RIGHT" - }, - { - "x": 41.911435916736565, - "y": -351.5537226455093, - "rotation": 0.908051108695672, - "action": "CARVE_RIGHT" - }, - { - "x": 43.67738057354824, - "y": -352.93258466910214, - "rotation": 0.9468649368064708, - "action": "NOTHING" - }, - { - "x": 45.633447477150376, - "y": -354.1371647990887, - "rotation": 0.9433742783024821, - "action": "NOTHING" - }, - { - "x": 47.58343977845095, - "y": -355.34916958540254, - "rotation": 0.9398836197984934, - "action": "NOTHING" - }, - { - "x": 49.527376332548606, - "y": -356.5686242762317, - "rotation": 0.9363929612945048, - "action": "NOTHING" - }, - { - "x": 51.46527562679039, - "y": -357.79555436632023, - "rotation": 0.9329023027905161, - "action": "NOTHING" - }, - { - "x": 53.39715578180578, - "y": -359.0299855962178, - "rotation": 0.9294116442865274, - "action": "NOTHING" - }, - { - "x": 55.32303455253801, - "y": -360.2719439515307, - "rotation": 0.9259209857825388, - "action": "NOTHING" - }, - { - "x": 57.24292932927256, - "y": -361.5214556621757, - "rotation": 0.9224303272785501, - "action": "NOTHING" - }, - { - "x": 59.1568571386629, - "y": -362.77854720163515, - "rotation": 0.9189396687745615, - "action": "NOTHING" - }, - { - "x": 61.064834644753525, - "y": -364.043245286215, - "rotation": 0.9154490102705728, - "action": "NOTHING" - }, - { - "x": 62.96687815000022, - "y": -365.3155768743043, - "rotation": 0.9119583517665841, - "action": "NOTHING" - }, - { - "x": 64.8630035962876, - "y": -366.59556916563736, - "rotation": 0.9084676932625955, - "action": "NOTHING" - }, - { - "x": 66.75322656594389, - "y": -367.88324960055724, - "rotation": 0.9049770347586068, - "action": "NOTHING" - }, - { - "x": 68.63756228275308, - "y": -369.1786458592819, - "rotation": 0.9014863762546181, - "action": "NOTHING" - }, - { - "x": 70.51602561296423, - "y": -370.4817858611724, - "rotation": 0.8979957177506295, - "action": "NOTHING" - }, - { - "x": 72.38863106629817, - "y": -371.7926977640027, - "rotation": 0.8945050592466408, - "action": "NOTHING" - }, - { - "x": 74.25539279695148, - "y": -373.11140996323195, - "rotation": 0.8910144007426521, - "action": "NOTHING" - }, - { - "x": 76.11632460459778, - "y": -374.4379510912787, - "rotation": 0.8875237422386635, - "action": "NOTHING" - }, - { - "x": 77.97143993538626, - "y": -375.7723500167972, - "rotation": 0.8840330837346748, - "action": "NOTHING" - }, - { - "x": 79.82075188293769, - "y": -377.1146358439555, - "rotation": 0.8805424252306862, - "action": "NOTHING" - }, - { - "x": 81.66427318933758, - "y": -378.46483791171596, - "rotation": 0.8770517667266975, - "action": "NOTHING" - }, - { - "x": 83.50201624612684, - "y": -379.8229857931174, - "rotation": 0.8735611082227088, - "action": "NOTHING" - }, - { - "x": 85.33399309528964, - "y": -381.18910929455967, - "rotation": 0.8700704497187202, - "action": "NOTHING" - }, - { - "x": 87.16021543023872, - "y": -382.56323845508973, - "rotation": 0.8665797912147315, - "action": "NOTHING" - }, - { - "x": 88.98069459679802, - "y": -383.94540354569034, - "rotation": 0.8630891327107428, - "action": "NOTHING" - }, - { - "x": 90.79544159418262, - "y": -385.33563506857035, - "rotation": 0.8595984742067542, - "action": "NOTHING" - }, - { - "x": 92.60446707597622, - "y": -386.73396375645694, - "rotation": 0.8561078157027655, - "action": "NOTHING" - }, - { - "x": 94.40778135110575, - "y": -388.1404205718902, - "rotation": 0.8526171571987768, - "action": "NOTHING" - }, - { - "x": 96.20539438481362, - "y": -389.55503670651945, - "rotation": 0.8491264986947882, - "action": "NOTHING" - }, - { - "x": 97.99731579962712, - "y": -390.9778435804015, - "rotation": 0.8456358401907995, - "action": "NOTHING" - }, - { - "x": 99.78355487632541, - "y": -392.40887284130116, - "rotation": 0.8421451816868109, - "action": "NOTHING" - }, - { - "x": 101.56412055490384, - "y": -393.8481563639933, - "rotation": 0.8386545231828222, - "action": "NOTHING" - }, - { - "x": 103.33902143553564, - "y": -395.2957262495675, - "rotation": 0.8351638646788335, - "action": "NOTHING" - }, - { - "x": 105.1082657795311, - "y": -396.75161482473385, - "rotation": 0.8316732061748449, - "action": "NOTHING" - }, - { - "x": 106.8718615102941, - "y": -398.2158546411315, - "rotation": 0.8281825476708562, - "action": "NOTHING" - }, - { - "x": 108.62981621427618, - "y": -399.6884784746386, - "rotation": 0.8246918891668675, - "action": "NOTHING" - }, - { - "x": 110.38213714192791, - "y": -401.1695193246845, - "rotation": 0.8212012306628789, - "action": "NOTHING" - }, - { - "x": 112.12883120864785, - "y": -402.6590104135637, - "rotation": 0.8177105721588902, - "action": "NOTHING" - }, - { - "x": 113.86990499572882, - "y": -404.1569851857519, - "rotation": 0.8142199136549015, - "action": "NOTHING" - }, - { - "x": 115.60536475130169, - "y": -405.66347730722396, - "rotation": 0.8107292551509129, - "action": "NOTHING" - }, - { - "x": 117.33521639127675, - "y": -407.17852066477343, - "rotation": 0.8072385966469242, - "action": "NOTHING" - }, - { - "x": 119.05946550028227, - "y": -408.7021493653347, - "rotation": 0.8037479381429355, - "action": "NOTHING" - }, - { - "x": 120.77811733260087, - "y": -410.2343977353065, - "rotation": 0.8002572796389469, - "action": "NOTHING" - }, - { - "x": 122.49117681310311, - "y": -411.7753003198773, - "rotation": 0.7967666211349582, - "action": "NOTHING" - }, - { - "x": 124.19864853817869, - "y": -413.32489188235303, - "rotation": 0.7932759626309696, - "action": "NOTHING" - }, - { - "x": 125.90053677666515, - "y": -414.8832074034864, - "rotation": 0.7897853041269809, - "action": "NOTHING" - }, - { - "x": 127.59684547077406, - "y": -416.45028208080805, - "rotation": 0.7862946456229922, - "action": "NOTHING" - }, - { - "x": 129.28757823701466, - "y": -418.02615132795995, - "rotation": 0.7828039871190036, - "action": "NOTHING" - }, - { - "x": 130.97273836711514, - "y": -419.61085077403027, - "rotation": 0.7793133286150149, - "action": "NOTHING" - }, - { - "x": 132.65232882894134, - "y": -421.20441626289033, - "rotation": 0.7758226701110262, - "action": "NOTHING" - }, - { - "x": 134.326352267413, - "y": -422.8068838525335, - "rotation": 0.7723320116070376, - "action": "NOTHING" - }, - { - "x": 135.99481100541755, - "y": -424.4182898144157, - "rotation": 0.7688413531030489, - "action": "NOTHING" - }, - { - "x": 137.6577070447215, - "y": -426.03867063279813, - "rotation": 0.7653506945990602, - "action": "NOTHING" - }, - { - "x": 139.3150420668793, - "y": -427.66806300409166, - "rotation": 0.7618600360950716, - "action": "NOTHING" - }, - { - "x": 140.96681743413976, - "y": -429.30650383620286, - "rotation": 0.7583693775910829, - "action": "CARVE_LEFT" - }, - { - "x": 142.37507875806014, - "y": -431.17415826150193, - "rotation": 0.7175603647321227, - "action": "CARVE_LEFT" - }, - { - "x": 143.7049454816516, - "y": -433.1186759040671, - "rotation": 0.6767032030424545, - "action": "CARVE_LEFT" - }, - { - "x": 144.95630450711914, - "y": -435.1406990340794, - "rotation": 0.6357909619383258, - "action": "CARVE_LEFT" - }, - { - "x": 146.12898763576226, - "y": -437.2409205874022, - "rotation": 0.5948167165973697, - "action": "CARVE_LEFT" - }, - { - "x": 147.2227714340198, - "y": -439.4200843829093, - "rotation": 0.5537735467533205, - "action": "CARVE_LEFT" - }, - { - "x": 148.23737706240988, - "y": -441.67898537391886, - "rotation": 0.5126545354941674, - "action": "CARVE_LEFT" - }, - { - "x": 149.17247006736494, - "y": -444.01846993375045, - "rotation": 0.4714527680635291, - "action": "CARVE_LEFT" - }, - { - "x": 150.02766013593617, - "y": -446.43943617544505, - "rotation": 0.4301613306650364, - "action": "CARVE_LEFT" - }, - { - "x": 150.80250081331627, - "y": -448.94283430571215, - "rotation": 0.38877330926951115, - "action": "CARVE_LEFT" - }, - { - "x": 151.49648918310453, - "y": -451.52966701319025, - "rotation": 0.3472817884247286, - "action": "CARVE_LEFT" - }, - { - "x": 152.10906551021284, - "y": -454.2009898911314, - "rotation": 0.30567985006755394, - "action": "CARVE_LEFT" - }, - { - "x": 152.63961284628607, - "y": -456.95791189464273, - "rotation": 0.2639605723382418, - "action": "CARVE_LEFT" - }, - { - "x": 153.0874565974852, - "y": -459.80159583264157, - "rotation": 0.22211702839669073, - "action": "CARVE_LEFT" - }, - { - "x": 153.45186405445648, - "y": -462.7332588947044, - "rotation": 0.1801422852404445, - "action": "CARVE_LEFT" - }, - { - "x": 153.73204388428476, - "y": -465.75417321301217, - "rotation": 0.13802940252423182, - "action": "CARVE_LEFT" - }, - { - "x": 153.92714558420354, - "y": -468.865666459618, - "rotation": 0.09577143138083904, - "action": "CARVE_LEFT" - }, - { - "x": 154.03625889680984, - "y": -472.06912247928796, - "rotation": 0.05336141324310907, - "action": "CARVE_LEFT" - }, - { - "x": 154.058413186506, - "y": -475.3659819581867, - "rotation": 0.010792378666861259, - "action": "CARVE_LEFT" - }, - { - "x": 153.9925936586278, - "y": -478.63498539920334, - "rotation": 6.251242653334114, - "action": "CARVE_LEFT" - }, - { - "x": 153.83782804529488, - "y": -481.8336049365266, - "rotation": 6.208345630628546, - "action": "CARVE_LEFT" - }, - { - "x": 153.59320447313473, - "y": -484.96039434801116, - "rotation": 6.165294361928746, - "action": "CARVE_LEFT" - }, - { - "x": 153.2578721197182, - "y": -488.0139633058742, - "rotation": 6.122096600961066, - "action": "CARVE_LEFT" - }, - { - "x": 152.83104182518795, - "y": -490.99297804818286, - "rotation": 6.078760109622884, - "action": "CARVE_LEFT" - }, - { - "x": 152.31198665880592, - "y": -493.89616200845916, - "rotation": 6.035292656627857, - "action": "CARVE_LEFT" - }, - { - "x": 151.70004244017704, - "y": -496.72229640316056, - "rotation": 5.9917020161529795, - "action": "CARVE_LEFT" - }, - { - "x": 150.99460821493957, - "y": -499.4702207768246, - "rotation": 5.947995966487677, - "action": "CARVE_LEFT" - }, - { - "x": 150.1951466847443, - "y": -502.1388335046946, - "rotation": 5.904182288685167, - "action": "CARVE_LEFT" - }, - { - "x": 149.3011845913774, - "y": -504.7270922526752, - "rotation": 5.860268765216306, - "action": "CARVE_LEFT" - }, - { - "x": 148.31231305491423, - "y": -507.2340143944953, - "rotation": 5.816263178626158, - "action": "CARVE_LEFT" - }, - { - "x": 147.22818786582323, - "y": -509.6586773859863, - "rotation": 5.7721733101935015, - "action": "CARVE_LEFT" - }, - { - "x": 146.04852973097172, - "y": -512.0002190964141, - "rotation": 5.72800693859351, - "action": "CARVE_LEFT" - }, - { - "x": 144.77312447351713, - "y": -514.2578380968313, - "rotation": 5.683771838563816, - "action": "CARVE_LEFT" - }, - { - "x": 143.40182318669943, - "y": -516.4307939054487, - "rotation": 5.639475779574191, - "action": "CARVE_LEFT" - }, - { - "x": 141.93454234158224, - "y": -518.5184071900509, - "rotation": 5.5951265245000625, - "action": "CARVE_LEFT" - }, - { - "x": 140.37126384882174, - "y": -520.5200599275139, - "rotation": 5.550731828300079, - "action": "NOTHING" - }, - { - "x": 138.64072807612453, - "y": -522.3705112059321, - "rotation": 5.5542224868040675, - "action": "NOTHING" - }, - { - "x": 136.91663097858236, - "y": -524.2306292139559, - "rotation": 5.557713145308056, - "action": "NOTHING" - }, - { - "x": 135.19897122105937, - "y": -526.1004512310299, - "rotation": 5.561203803812044, - "action": "NOTHING" - }, - { - "x": 133.48774778759127, - "y": -527.980014747393, - "rotation": 5.564694462316033, - "action": "NOTHING" - }, - { - "x": 131.78295998048029, - "y": -529.8693574634277, - "rotation": 5.568185120820021, - "action": "NOTHING" - }, - { - "x": 130.0846074193924, - "y": -531.7685172890093, - "rotation": 5.57167577932401, - "action": "NOTHING" - }, - { - "x": 128.39269004045724, - "y": -533.6775323428589, - "rotation": 5.575166437827998, - "action": "NOTHING" - }, - { - "x": 126.7072080953702, - "y": -535.5964409518964, - "rotation": 5.578657096331987, - "action": "NOTHING" - }, - { - "x": 125.02816215049715, - "y": -537.5252816505972, - "rotation": 5.582147754835975, - "action": "NOTHING" - }, - { - "x": 123.35555308598136, - "y": -539.464093180349, - "rotation": 5.5856384133399635, - "action": "NOTHING" - }, - { - "x": 121.689382094853, - "y": -541.4129144888112, - "rotation": 5.589129071843952, - "action": "NOTHING" - }, - { - "x": 120.02965068214098, - "y": -543.3717847292768, - "rotation": 5.59261973034794, - "action": "NOTHING" - }, - { - "x": 118.37636066398717, - "y": -545.3407432600344, - "rotation": 5.596110388851929, - "action": "NOTHING" - }, - { - "x": 116.729514166763, - "y": -547.3198296437339, - "rotation": 5.599601047355917, - "action": "NOTHING" - }, - { - "x": 115.08911362618849, - "y": -549.3090836467525, - "rotation": 5.603091705859906, - "action": "NOTHING" - }, - { - "x": 113.45516178645362, - "y": -551.3085452385635, - "rotation": 5.606582364363894, - "action": "NOTHING" - }, - { - "x": 111.82766169934203, - "y": -553.3182545911063, - "rotation": 5.610073022867883, - "action": "NOTHING" - }, - { - "x": 110.20661672335721, - "y": -555.3382520781583, - "rotation": 5.613563681371871, - "action": "NOTHING" - }, - { - "x": 108.59203052285088, - "y": -557.3685782747092, - "rotation": 5.6170543398758594, - "action": "NOTHING" - }, - { - "x": 106.98390706715384, - "y": -559.4092739563357, - "rotation": 5.620544998379848, - "action": "NOTHING" - }, - { - "x": 105.38225062970912, - "y": -561.4603800985797, - "rotation": 5.624035656883836, - "action": "NOTHING" - }, - { - "x": 103.7870657872075, - "y": -563.5219378763267, - "rotation": 5.627526315387825, - "action": "NOTHING" - }, - { - "x": 102.1983574187253, - "y": -565.5939886631871, - "rotation": 5.631016973891813, - "action": "NOTHING" - }, - { - "x": 100.61613070486452, - "y": -567.6765740308789, - "rotation": 5.634507632395802, - "action": "NOTHING" - }, - { - "x": 99.04039112689537, - "y": -569.7697357486114, - "rotation": 5.63799829089979, - "action": "NOTHING" - }, - { - "x": 97.47114446590103, - "y": -571.8735157824723, - "rotation": 5.6414889494037785, - "action": "NOTHING" - }, - { - "x": 95.90839680192471, - "y": -573.9879562948146, - "rotation": 5.644979607907767, - "action": "NOTHING" - }, - { - "x": 94.35215451311909, - "y": -576.1130996436468, - "rotation": 5.648470266411755, - "action": "NOTHING" - }, - { - "x": 92.80242427489797, - "y": -578.2489883820243, - "rotation": 5.651960924915744, - "action": "NOTHING" - }, - { - "x": 91.25921305909031, - "y": -580.3956652574421, - "rotation": 5.655451583419732, - "action": "NOTHING" - }, - { "x": 89.72252813309645, "y": -582.55317321123, "rotation": 5.658942241923721, "action": "NOTHING" }, - { - "x": 88.19237705904663, - "y": -584.7215553779487, - "rotation": 5.662432900427709, - "action": "NOTHING" - }, - { - "x": 86.6687676929619, - "y": -586.9008550847882, - "rotation": 5.665923558931698, - "action": "NOTHING" - }, - { - "x": 85.15170818391704, - "y": -589.0911158509682, - "rotation": 5.669414217435686, - "action": "NOTHING" - }, - { - "x": 83.64120697320608, - "y": -591.292381387139, - "rotation": 5.6729048759396745, - "action": "NOTHING" - }, - { - "x": 82.1372727935098, - "y": -593.5046955947855, - "rotation": 5.676395534443663, - "action": "NOTHING" - }, - { - "x": 80.63991466806552, - "y": -595.728102565632, - "rotation": 5.679886192947651, - "action": "NOTHING" - }, - { "x": 79.1491419098393, "y": -597.9626465810487, "rotation": 5.68337685145164, "action": "NOTHING" }, - { - "x": 77.66496412070022, - "y": -600.2083721114608, - "rotation": 5.686867509955628, - "action": "NOTHING" - }, - { - "x": 76.18739119059687, - "y": -602.465323815758, - "rotation": 5.690358168459617, - "action": "NOTHING" - }, - { - "x": 74.71643329673621, - "y": -604.7335465407067, - "rotation": 5.693848826963605, - "action": "NOTHING" - }, - { - "x": 73.25210090276452, - "y": -607.0130853203633, - "rotation": 5.697339485467594, - "action": "CARVE_RIGHT" - }, - { - "x": 72.03785360796792, - "y": -609.5292804077203, - "rotation": 5.744171433768894, - "action": "CARVE_RIGHT" - }, - { - "x": 70.92751411438252, - "y": -612.147398216223, - "rotation": 5.791069030116435, - "action": "CARVE_RIGHT" - }, - { - "x": 69.92141069855471, - "y": -614.8683580980668, - "rotation": 5.8380402068927735, - "action": "CARVE_RIGHT" - }, - { - "x": 69.0199441782163, - "y": -617.69314630903, - "rotation": 5.8850928917014125, - "action": "CARVE_RIGHT" - }, - { - "x": 68.22358816702497, - "y": -620.6228163508649, - "rotation": 5.932235008742619, - "action": "CARVE_RIGHT" - }, - { - "x": 67.53288937798644, - "y": -623.6584893585024, - "rotation": 5.979474480185639, - "action": "CARVE_RIGHT" - }, - { - "x": 66.94846797560533, - "y": -626.8013545321336, - "rotation": 6.026819227537538, - "action": "CARVE_RIGHT" - }, - { - "x": 66.47101797684466, - "y": -630.0526696142605, - "rotation": 6.074277173008914, - "action": "CARVE_RIGHT" - }, - { - "x": 66.10130770100722, - "y": -633.4137614118398, - "rotation": 6.1218562408767365, - "action": "CARVE_RIGHT" - }, - { - "x": 65.84018026868479, - "y": -636.8860263636734, - "rotation": 6.169564358844532, - "action": "CARVE_RIGHT" - }, - { - "x": 65.68855414995478, - "y": -640.47093115323, - "rotation": 6.2174094594001765, - "action": "CARVE_RIGHT" - }, - { - "x": 65.64742376203601, - "y": -644.1700133671136, - "rotation": 6.2653994811715155, - "action": "CARVE_RIGHT" - }, - { - "x": 65.71784486926607, - "y": -647.8536469355652, - "rotation": 0.030357063100482584, - "action": "CARVE_RIGHT" - }, - { - "x": 65.90083015296148, - "y": -651.4440554931418, - "rotation": 0.07865031819172034, - "action": "CARVE_RIGHT" - }, - { - "x": 66.1973149733155, - "y": -654.9397012353255, - "rotation": 0.12708529128877039, - "action": "CARVE_RIGHT" - }, - { - "x": 66.60815673774886, - "y": -658.3391182349544, - "rotation": 0.1756533290333199, - "action": "CARVE_RIGHT" - }, - { - "x": 67.13413432577352, - "y": -661.640913091158, - "rotation": 0.22434577418775503, - "action": "CARVE_RIGHT" - }, - { - "x": 67.77594757057322, - "y": -664.8437655255519, - "rotation": 0.2731539671346641, - "action": "CARVE_RIGHT" - }, - { - "x": 68.53421679746384, - "y": -667.9464289255225, - "rotation": 0.3220692473734517, - "action": "CARVE_RIGHT" - }, - { - "x": 69.40948241935689, - "y": -670.947730834468, - "rotation": 0.3710829550138124, - "action": "CARVE_RIGHT" - }, - { - "x": 70.4022045893096, - "y": -673.8465733888984, - "rotation": 0.4201864322658135, - "action": "CARVE_RIGHT" - }, - { - "x": 71.51276291020501, - "y": -676.6419337023362, - "rotation": 0.4693710249263382, - "action": "CARVE_RIGHT" - }, - { - "x": 72.74145620156585, - "y": -679.3328641959941, - "rotation": 0.5186280838616407, - "action": "CARVE_RIGHT" - }, - { - "x": 74.08850232346668, - "y": -681.9184928762437, - "rotation": 0.5679489664857665, - "action": "CARVE_RIGHT" - }, - { - "x": 75.5540380574691, - "y": -684.3980235589264, - "rotation": 0.6173250382345928, - "action": "CARVE_RIGHT" - }, - { - "x": 77.13811904446595, - "y": -686.7707360405931, - "rotation": 0.6667476740352439, - "action": "CARVE_RIGHT" - }, - { - "x": 78.84071977928147, - "y": -689.035986216795, - "rotation": 0.7162082597706403, - "action": "CARVE_RIGHT" - }, - { - "x": 80.66173366183567, - "y": -691.1932061475856, - "rotation": 0.7656981937389377, - "action": "NOTHING" - }, - { - "x": 82.67709237703662, - "y": -693.1728318385482, - "rotation": 0.762207535234949, - "action": "NOTHING" - }, - { - "x": 84.68447138817025, - "y": -695.1622423100496, - "rotation": 0.7587168767309603, - "action": "NOTHING" - }, - { - "x": 86.68388068826756, - "y": -697.1614697043855, - "rotation": 0.7552262182269717, - "action": "NOTHING" - }, - { - "x": 88.6753299252452, - "y": -699.1705463923328, - "rotation": 0.751735559722983, - "action": "NOTHING" - }, - { - "x": 90.65882840288276, - "y": -701.1895049724448, - "rotation": 0.7482449012189943, - "action": "NOTHING" - }, - { - "x": 92.63438508179759, - "y": -703.2183782703487, - "rotation": 0.7447542427150057, - "action": "NOTHING" - }, - { - "x": 94.60200858041678, - "y": -705.2571993380452, - "rotation": 0.741263584211017, - "action": "NOTHING" - }, - { - "x": 96.56170717594668, - "y": -707.3060014532094, - "rotation": 0.7377729257070283, - "action": "NOTHING" - }, - { - "x": 98.51348880533975, - "y": -709.3648181184948, - "rotation": 0.7342822672030397, - "action": "NOTHING" - }, - { - "x": 100.4573610662588, - "y": -711.4336830608379, - "rotation": 0.730791608699051, - "action": "NOTHING" - }, - { - "x": 102.39333121803867, - "y": -713.512630230766, - "rotation": 0.7273009501950624, - "action": "NOTHING" - }, - { - "x": 104.32140618264529, - "y": -715.6016938017065, - "rotation": 0.7238102916910737, - "action": "NOTHING" - }, - { - "x": 106.24159254563217, - "y": -717.7009081692977, - "rotation": 0.720319633187085, - "action": "NOTHING" - }, - { - "x": 108.15389655709431, - "y": -719.8103079507023, - "rotation": 0.7168289746830964, - "action": "NOTHING" - }, - { - "x": 110.05832413261956, - "y": -721.9299279839224, - "rotation": 0.7133383161791077, - "action": "NOTHING" - }, - { - "x": 111.95488085423735, - "y": -724.0598033271168, - "rotation": 0.709847657675119, - "action": "NOTHING" - }, - { - "x": 113.84357197136498, - "y": -726.1999692579194, - "rotation": 0.7063569991711304, - "action": "NOTHING" - }, - { - "x": 115.72440240175126, - "y": -728.3504612727606, - "rotation": 0.7028663406671417, - "action": "NOTHING" - }, - { - "x": 117.59737673241767, - "y": -730.5113150861904, - "rotation": 0.699375682163153, - "action": "NOTHING" - }, - { - "x": 119.46249922059691, - "y": -732.6825666302022, - "rotation": 0.6958850236591644, - "action": "NOTHING" - }, - { - "x": 121.31977379466902, - "y": -734.8642520535607, - "rotation": 0.6923943651551757, - "action": "NOTHING" - }, - { - "x": 123.1692040550949, - "y": -737.0564077211294, - "rotation": 0.688903706651187, - "action": "NOTHING" - }, - { - "x": 125.01079327534734, - "y": -739.2590702132019, - "rotation": 0.6854130481471984, - "action": "NOTHING" - }, - { - "x": 126.84454440283957, - "y": -741.4722763248338, - "rotation": 0.6819223896432097, - "action": "NOTHING" - }, - { - "x": 128.67046005985125, - "y": -743.6960630651774, - "rotation": 0.6784317311392211, - "action": "NOTHING" - }, - { - "x": 130.48854254445197, - "y": -745.9304676568174, - "rotation": 0.6749410726352324, - "action": "NOTHING" - }, - { - "x": 132.2987938314224, - "y": -748.1755275351095, - "rotation": 0.6714504141312437, - "action": "CARVE_LEFT" - }, - { - "x": 133.80674730204456, - "y": -750.7038648084132, - "rotation": 0.6209365244477296, - "action": "CARVE_LEFT" - }, - { - "x": 135.19334763929774, - "y": -753.3486065868736, - "rotation": 0.5703791958900282, - "action": "CARVE_LEFT" - }, - { - "x": 136.45843012291064, - "y": -756.1105730977341, - "rotation": 0.5197698169281886, - "action": "CARVE_LEFT" - }, - { - "x": 137.6017456910005, - "y": -758.9906620042208, - "rotation": 0.46909978601339003, - "action": "CARVE_LEFT" - }, - { - "x": 138.62296081582645, - "y": -761.9898486369145, - "rotation": 0.41836051007460473, - "action": "CARVE_LEFT" - }, - { - "x": 139.52165732246286, - "y": -765.1091862776257, - "rotation": 0.36754340302002936, - "action": "CARVE_LEFT" - }, - { - "x": 140.29733215046173, - "y": -768.349806495728, - "rotation": 0.31663988424301476, - "action": "CARVE_LEFT" - }, - { - "x": 140.94939705853415, - "y": -771.7129195369448, - "rotation": 0.26564137713222763, - "action": "CARVE_LEFT" - }, - { - "x": 141.4771782722412, - "y": -775.199814764617, - "rotation": 0.21453930758577766, - "action": "CARVE_LEFT" - }, - { - "x": 141.87991607464633, - "y": -778.8118611535178, - "rotation": 0.16332510252904583, - "action": "CARVE_LEFT" - }, - { - "x": 142.15676433984174, - "y": -782.550507836315, - "rotation": 0.11199018843595054, - "action": "CARVE_LEFT" - }, - { - "x": 142.3067900092229, - "y": -786.4172847028182, - "rotation": 0.06052598985338911, - "action": "CARVE_LEFT" - }, - { - "x": 142.32897251034657, - "y": -790.4138030521839, - "rotation": 0.008923927928593582, - "action": "CARVE_LEFT" - }, - { - "x": 142.2222334614156, - "y": -794.3429182523071, - "rotation": 6.240360726118727, - "action": "CARVE_LEFT" - }, - { - "x": 141.98556688862786, - "y": -798.1619024801919, - "rotation": 6.188471930693977, - "action": "CARVE_LEFT" - }, - { - "x": 141.6180564689856, - "y": -801.8691894555888, - "rotation": 6.136452093867743, - "action": "CARVE_LEFT" - }, - { - "x": 141.1188761166858, - "y": -805.463296402171, - "rotation": 6.084310462903007, - "action": "CARVE_LEFT" - }, - { - "x": 140.48729050460514, - "y": -808.9428246541345, - "rotation": 6.032056285694428, - "action": "CARVE_LEFT" - }, - { - "x": 139.72265552074683, - "y": -812.3064602022919, - "rotation": 5.979698809174262, - "action": "CARVE_LEFT" - }, - { - "x": 138.8244186595619, - "y": -815.5529741795592, - "rotation": 5.927247277721951, - "action": "CARVE_LEFT" - }, - { - "x": 137.79211934810294, - "y": -818.6812232857761, - "rotation": 5.874710931577651, - "action": "CARVE_LEFT" - }, - { - "x": 136.62538920701303, - "y": -821.6901501518416, - "rotation": 5.8220990052599655, - "action": "CARVE_LEFT" - }, - { - "x": 135.32395224639845, - "y": -824.5787836431899, - "rotation": 5.769420725988141, - "action": "CARVE_LEFT" - }, - { - "x": 133.88762499667803, - "y": -827.3462391026723, - "rotation": 5.7166853121089956, - "action": "CARVE_LEFT" - }, - { - "x": 132.3163165745466, - "y": -829.991718532952, - "rotation": 5.663901971528834, - "action": "CARVE_LEFT" - }, - { - "x": 130.61002868423446, - "y": -832.5145107185605, - "rotation": 5.611079900150609, - "action": "CARVE_LEFT" - }, - { - "x": 128.7688555542888, - "y": -834.9139912878051, - "rotation": 5.558228280316592, - "action": "CARVE_LEFT" - }, - { - "x": 126.7929838101461, - "y": -837.1896227147561, - "rotation": 5.505356279256801, - "action": "CARVE_LEFT" - }, - { - "x": 124.6826922828088, - "y": -839.340954261585, - "rotation": 5.452473047543449, - "action": "CARVE_LEFT" - }, - { - "x": 122.43835175398138, - "y": -841.3676218615627, - "rotation": 5.399587717551658, - "action": "CARVE_LEFT" - }, - { - "x": 120.0604246380639, - "y": -843.2693479430667, - "rotation": 5.346709401926693, - "action": "CARVE_LEFT" - }, - { - "x": 117.54946460144339, - "y": -845.0459411949857, - "rotation": 5.293847192057974, - "action": "CARVE_LEFT" - }, - { - "x": 114.90611611956402, - "y": -846.6972962739491, - "rotation": 5.241010156560091, - "action": "CARVE_LEFT" - }, - { - "x": 112.13111397229918, - "y": -848.223393453844, - "rotation": 5.188207339761098, - "action": "NOTHING" - }, - { - "x": 109.0595604622469, - "y": -849.4723037321728, - "rotation": 5.191697998265086, - "action": "NOTHING" - }, - { - "x": 105.99973747854013, - "y": -850.7295256943178, - "rotation": 5.195188656769075, - "action": "NOTHING" - }, - { - "x": 102.95159380155914, - "y": -851.9950641911839, - "rotation": 5.198679315273063, - "action": "NOTHING" - }, - { - "x": 99.91507867355492, - "y": -853.2689243863263, - "rotation": 5.2021699737770515, - "action": "NOTHING" - }, - { "x": 96.8901417973576, "y": -854.5511117550067, "rotation": 5.20566063228104, "action": "NOTHING" }, - { - "x": 93.87673333508843, - "y": -855.8416320832537, - "rotation": 5.209151290785028, - "action": "NOTHING" - }, - { - "x": 90.87480390687507, - "y": -857.140491466925, - "rotation": 5.212641949289017, - "action": "NOTHING" - }, - { - "x": 87.88430458957043, - "y": -858.4476963107727, - "rotation": 5.216132607793005, - "action": "NOTHING" - }, - { - "x": 84.90518691547484, - "y": -859.7632533275105, - "rotation": 5.219623266296994, - "action": "NOTHING" - }, - { - "x": 81.9374028710617, - "y": -861.0871695368844, - "rotation": 5.223113924800982, - "action": "NOTHING" - }, - { - "x": 78.98090489570647, - "y": -862.4194522647455, - "rotation": 5.226604583304971, - "action": "NOTHING" - }, - { - "x": 76.03564588041912, - "y": -863.7601091421252, - "rotation": 5.230095241808959, - "action": "NOTHING" - }, - { - "x": 73.10157916657991, - "y": -865.1091481043135, - "rotation": 5.2335859003129475, - "action": "NOTHING" - }, - { - "x": 70.17865854467857, - "y": -866.4665773899394, - "rotation": 5.237076558816936, - "action": "NOTHING" - }, - { - "x": 67.26683825305685, - "y": -867.8324055400544, - "rotation": 5.240567217320924, - "action": "NOTHING" - }, - { - "x": 64.36607297665442, - "y": -869.2066413972179, - "rotation": 5.244057875824913, - "action": "NOTHING" - }, - { - "x": 61.47631784575816, - "y": -870.589294104586, - "rotation": 5.247548534328901, - "action": "NOTHING" - }, - { - "x": 58.59752843475469, - "y": -871.9803731050017, - "rotation": 5.25103919283289, - "action": "NOTHING" - }, - { - "x": 55.72966076088637, - "y": -873.3798881400891, - "rotation": 5.254529851336878, - "action": "NOTHING" - }, - { - "x": 52.87267128301049, - "y": -874.7878492493486, - "rotation": 5.2580205098408666, - "action": "NOTHING" - }, - { - "x": 50.026516900361905, - "y": -876.204266769256, - "rotation": 5.261511168344855, - "action": "NOTHING" - }, - { - "x": 47.191154951318865, - "y": -877.6291513323633, - "rotation": 5.265001826848843, - "action": "NOTHING" - }, - { "x": 44.3665432121722, "y": -879.062513866402, "rotation": 5.268492485352832, "action": "NOTHING" }, - { - "x": 41.552639895897826, - "y": -880.5043655933895, - "rotation": 5.27198314385682, - "action": "NOTHING" - }, - { - "x": 38.749403650932436, - "y": -881.9547180287374, - "rotation": 5.275473802360809, - "action": "NOTHING" - }, - { - "x": 35.95679355995256, - "y": -883.4135829803627, - "rotation": 5.278964460864797, - "action": "NOTHING" - }, - { - "x": 33.17476913865683, - "y": -884.8809725478012, - "rotation": 5.282455119368786, - "action": "NOTHING" - }, - { - "x": 30.403290334551535, - "y": -886.3568991213237, - "rotation": 5.285945777872774, - "action": "NOTHING" - }, - { - "x": 27.642317525739422, - "y": -887.8413753810545, - "rotation": 5.2894364363767625, - "action": "CARVE_RIGHT" - }, - { - "x": 25.288295883664034, - "y": -889.7014787196191, - "rotation": 5.341492505923891, - "action": "CARVE_RIGHT" - }, - { - "x": 23.0646297229894, - "y": -891.6818003512313, - "rotation": 5.393533380190724, - "action": "CARVE_RIGHT" - }, - { - "x": 20.970911442827557, - "y": -893.7826595787226, - "rotation": 5.44556805520189, - "action": "CARVE_RIGHT" - }, - { - "x": 19.006823906076153, - "y": -896.0044579720358, - "rotation": 5.497605506123114, - "action": "CARVE_RIGHT" - }, - { - "x": 17.172140162407242, - "y": -898.347679234755, - "rotation": 5.549654688852832, - "action": "CARVE_RIGHT" - }, - { - "x": 15.466723233620199, - "y": -900.8128891278735, - "rotation": 5.601724541606978, - "action": "CARVE_RIGHT" - }, - { - "x": 13.890525960997437, - "y": -903.4007354504865, - "rotation": 5.653823986497251, - "action": "CARVE_RIGHT" - }, - { - "x": 12.443590914345478, - "y": -906.1119480771371, - "rotation": 5.705961931103127, - "action": "CARVE_RIGHT" - }, - { - "x": 11.126050362447575, - "y": -908.9473390515841, - "rotation": 5.758147270037915, - "action": "CARVE_RIGHT" - }, - { - "x": 9.93812630469724, - "y": -911.9078027368005, - "rotation": 5.810388886509129, - "action": "CARVE_RIGHT" - }, - { - "x": 8.880130563724927, - "y": -914.9943160210485, - "rotation": 5.8626956538734705, - "action": "CARVE_RIGHT" - }, - { - "x": 7.952464938872697, - "y": -918.2079385799208, - "rotation": 5.915076437186687, - "action": "CARVE_RIGHT" - }, - { - "x": 7.155621420413909, - "y": -921.5498131942727, - "rotation": 5.967540094748594, - "action": "CARVE_RIGHT" - }, - { - "x": 6.490182464457113, - "y": -925.0211661240103, - "rotation": 6.020095479643538, - "action": "CARVE_RIGHT" - }, - { - "x": 5.95682132851506, - "y": -928.6233075377387, - "rotation": 6.07275144127656, - "action": "CARVE_RIGHT" - }, - { - "x": 5.556302467761428, - "y": -932.3576319983123, - "rotation": 6.125516826905565, - "action": "CARVE_RIGHT" - }, - { - "x": 5.28948199203933, - "y": -936.2256190043674, - "rotation": 6.178400483169728, - "action": "CARVE_RIGHT" - }, - { - "x": 5.15730818372702, - "y": -940.2288335879556, - "rotation": 6.231411257614455, - "action": "CARVE_RIGHT" - }, - { - "x": 5.160822045431308, - "y": -944.3623830851556, - "rotation": 0.0013726930335371534, - "action": "CARVE_RIGHT" - }, - { - "x": 5.301106172304962, - "y": -948.379761680207, - "rotation": 0.05466378488983502, - "action": "CARVE_RIGHT" - }, - { - "x": 5.579148606569527, - "y": -952.2793172368098, - "rotation": 0.1080897305251307, - "action": "CARVE_RIGHT" - }, - { - "x": 5.995842213788769, - "y": -956.0594856913342, - "rotation": 0.16164103212602876, - "action": "CARVE_RIGHT" - }, - { - "x": 6.551984127615, - "y": -959.7187916940488, - "rotation": 0.2153081911852403, - "action": "CARVE_RIGHT" - }, - { - "x": 7.248275263150449, - "y": -963.2558491865241, - "rotation": 0.2690817101389635, - "action": "CARVE_RIGHT" - }, - { - "x": 8.085319899017806, - "y": -966.6693619151022, - "rotation": 0.3229520940004995, - "action": "CARVE_RIGHT" - }, - { - "x": 9.06362532818622, - "y": -969.9581238803705, - "rotation": 0.3769098519898305, - "action": "CARVE_RIGHT" - }, - { - "x": 10.183601577551244, - "y": -973.1210197226181, - "rotation": 0.43094549915888836, - "action": "CARVE_RIGHT" - }, - { - "x": 11.445561196219781, - "y": -976.1570250433005, - "rotation": 0.4850495580122429, - "action": "CARVE_RIGHT" - }, - { - "x": 12.849568866038204, - "y": -979.0653465522511, - "rotation": 0.5391547648240671, - "action": "CARVE_RIGHT" - }, - { - "x": 14.395613215110131, - "y": -981.8452629929151, - "rotation": 0.5932599716358913, - "action": "CARVE_RIGHT" - }, - { - "x": 16.08361001585954, - "y": -984.4961221776293, - "rotation": 0.6473651784477155, - "action": "CARVE_RIGHT" - }, - { - "x": 17.91340239909512, - "y": -987.0173407858732, - "rotation": 0.7014703852595396, - "action": "CARVE_RIGHT" - }, - { - "x": 19.884761067485343, - "y": -989.4084041630725, - "rotation": 0.7555755920713638, - "action": "CARVE_RIGHT" - }, - { - "x": 21.997384508445876, - "y": -991.6688661199549, - "rotation": 0.809680798883188, - "action": "CARVE_RIGHT" - }, - { - "x": 24.250899206440785, - "y": -993.7983487324565, - "rotation": 0.8637860056950122, - "action": "CARVE_RIGHT" - }, - { - "x": 26.644859854699185, - "y": -995.7965421421769, - "rotation": 0.9178912125068364, - "action": "CARVE_RIGHT" - }, - { - "x": 29.178749566348788, - "y": -997.6632043573824, - "rotation": 0.9719964193186605, - "action": "CARVE_RIGHT" - }, - { - "x": 31.851980084967977, - "y": -999.3981610545546, - "rotation": 1.0261016261304847, - "action": "CARVE_RIGHT" - }, - { - "x": 34.66389199455785, - "y": -1001.001305380485, - "rotation": 1.080206832942309, - "action": "NOTHING" - }, - { - "x": 37.77618089264585, - "y": -1002.3236733440681, - "rotation": 1.0767161744383202, - "action": "NOTHING" - }, - { - "x": 40.87646357658965, - "y": -1003.6545611470676, - "rotation": 1.0732255159343316, - "action": "NOTHING" - }, - { - "x": 43.96479103745699, - "y": -1004.9939739556547, - "rotation": 1.069734857430343, - "action": "NOTHING" - }, - { - "x": 47.041213804699524, - "y": -1006.3419172481867, - "rotation": 1.0662441989263542, - "action": "NOTHING" - }, - { - "x": 50.105781947444335, - "y": -1007.6983968142646, - "rotation": 1.0627535404223656, - "action": "NOTHING" - }, - { - "x": 53.15854507578202, - "y": -1009.0634187537931, - "rotation": 1.059262881918377, - "action": "NOTHING" - }, - { - "x": 56.19955234205131, - "y": -1010.4369894760443, - "rotation": 1.0557722234143883, - "action": "NOTHING" - }, - { - "x": 59.22885244212025, - "y": -1011.8191156987226, - "rotation": 1.0522815649103996, - "action": "NOTHING" - }, - { - "x": 62.24649361666398, - "y": -1013.2098044470331, - "rotation": 1.048790906406411, - "action": "NOTHING" - }, - { - "x": 65.25252365243911, - "y": -1014.6090630527523, - "rotation": 1.0453002479024223, - "action": "NOTHING" - }, - { - "x": 68.24698988355465, - "y": -1016.0168991533014, - "rotation": 1.0418095893984336, - "action": "NOTHING" - }, - { - "x": 71.22993919273961, - "y": -1017.4333206908228, - "rotation": 1.038318930894445, - "action": "NOTHING" - }, - { - "x": 74.20141801260712, - "y": -1018.8583359112579, - "rotation": 1.0348282723904563, - "action": "NOTHING" - }, - { - "x": 77.16147232691529, - "y": -1020.2919533634288, - "rotation": 1.0313376138864676, - "action": "NOTHING" - }, - { - "x": 80.11014767182459, - "y": -1021.7341818981216, - "rotation": 1.027846955382479, - "action": "NOTHING" - }, - { - "x": 83.04748913715194, - "y": -1023.1850306671732, - "rotation": 1.0243562968784903, - "action": "NOTHING" - }, - { - "x": 85.97354136762142, - "y": -1024.6445091225596, - "rotation": 1.0208656383745016, - "action": "NOTHING" - }, - { - "x": 88.88834856411165, - "y": -1026.1126270154878, - "rotation": 1.017374979870513, - "action": "NOTHING" - }, - { - "x": 91.79195448489982, - "y": -1027.5893943954889, - "rotation": 1.0138843213665243, - "action": "NOTHING" - }, - { - "x": 94.68440244690241, - "y": -1029.0748216095158, - "rotation": 1.0103936628625356, - "action": "NOTHING" - }, - { - "x": 97.5657353269126, - "y": -1030.568919301041, - "rotation": 1.006903004358547, - "action": "NOTHING" - }, - { - "x": 100.43599556283434, - "y": -1032.071698409159, - "rotation": 1.0034123458545583, - "action": "NOTHING" - }, - { - "x": 103.29522515491313, - "y": -1033.5831701676896, - "rotation": 0.9999216873505696, - "action": "NOTHING" - }, - { - "x": 106.14346566696354, - "y": -1035.1033461042853, - "rotation": 0.996431028846581, - "action": "NOTHING" - }, - { - "x": 108.98075822759341, - "y": -1036.6322380395397, - "rotation": 0.9929403703425923, - "action": "NOTHING" - }, - { - "x": 111.80714353142483, - "y": -1038.1698580860993, - "rotation": 0.9894497118386036, - "action": "NOTHING" - }, - { - "x": 114.62266184031174, - "y": -1039.7162186477776, - "rotation": 0.985959053334615, - "action": "NOTHING" - }, - { - "x": 117.4273529845544, - "y": -1041.2713324186716, - "rotation": 0.9824683948306263, - "action": "NOTHING" - }, - { - "x": 120.22125636411059, - "y": -1042.8352123822806, - "rotation": 0.9789777363266376, - "action": "NOTHING" - }, - { - "x": 123.00441094980344, - "y": -1044.4078718106282, - "rotation": 0.975487077822649, - "action": "NOTHING" - }, - { - "x": 125.77685528452622, - "y": -1045.9893242633855, - "rotation": 0.9719964193186603, - "action": "NOTHING" - }, - { - "x": 128.53862748444377, - "y": -1047.579583586998, - "rotation": 0.9685057608146717, - "action": "NOTHING" - }, - { - "x": 131.28976524019075, - "y": -1049.178663913815, - "rotation": 0.965015102310683, - "action": "NOTHING" - }, - { - "x": 134.0303058180667, - "y": -1050.7865796612195, - "rotation": 0.9615244438066943, - "action": "NOTHING" - }, - { - "x": 136.76028606122793, - "y": -1052.4033455307633, - "rotation": 0.9580337853027057, - "action": "CARVE_LEFT" - }, - { - "x": 139.07983172301198, - "y": -1054.3992312754317, - "rotation": 0.90464321353784, - "action": "CARVE_LEFT" - }, - { - "x": 141.26240818324663, - "y": -1056.5217438391924, - "rotation": 0.8512643921958204, - "action": "CARVE_LEFT" - }, - { - "x": 143.3083874469065, - "y": -1058.77125279376, - "rotation": 0.7978881024064853, - "action": "CARVE_LEFT" - }, - { - "x": 145.21804649539607, - "y": -1061.148214213916, - "rotation": 0.7445051460171774, - "action": "CARVE_LEFT" - }, - { - "x": 146.99156754766446, - "y": -1063.6531705617117, - "rotation": 0.6911063439630385, - "action": "CARVE_LEFT" - }, - { - "x": 148.62903825587475, - "y": -1066.2867506307564, - "rotation": 0.6376825346441773, - "action": "CARVE_LEFT" - }, - { - "x": 150.1304518359884, - "y": -1069.0496695502823, - "rotation": 0.5842245723094159, - "action": "CARVE_LEFT" - }, - { - "x": 151.49570713357917, - "y": -1071.9427288487168, - "rotation": 0.5307233254463204, - "action": "CARVE_LEFT" - }, - { - "x": 152.72460862514507, - "y": -1074.9668165765358, - "rotation": 0.47716967517722675, - "action": "CARVE_LEFT" - }, - { - "x": 153.81686635514168, - "y": -1078.122907488214, - "rotation": 0.4235545136609707, - "action": "CARVE_LEFT" - }, - { - "x": 154.77209580891554, - "y": -1081.4120632831282, - "rotation": 0.3698687425000349, - "action": "CARVE_LEFT" - }, - { - "x": 155.58981772167076, - "y": -1084.8354329053138, - "rotation": 0.31610327115282655, - "action": "CARVE_LEFT" - }, - { - "x": 156.26945782355864, - "y": -1088.3942529020117, - "rotation": 0.26224901535080125, - "action": "CARVE_LEFT" - }, - { - "x": 156.81034652093552, - "y": -1092.0898478409863, - "rotation": 0.2082968955201492, - "action": "CARVE_LEFT" - }, - { - "x": 157.21171851378983, - "y": -1095.9236307866365, - "rotation": 0.1542378352077626, - "action": "CARVE_LEFT" - }, - { - "x": 157.47289453052898, - "y": -1099.8969342145538, - "rotation": 0.1001326283959384, - "action": "CARVE_LEFT" - }, - { - "x": 157.59324442342216, - "y": -1104.0110435675274, - "rotation": 0.04602742158411418, - "action": "CARVE_LEFT" - }, - { - "x": 157.57206862591704, - "y": -1108.2278765968015, - "rotation": 6.275107521951877, - "action": "CARVE_LEFT" - }, - { - "x": 157.40866630969535, - "y": -1112.3231669111267, - "rotation": 6.221002315140052, - "action": "CARVE_LEFT" - }, - { - "x": 157.10241158735948, - "y": -1116.2955893250878, - "rotation": 6.166897108328228, - "action": "CARVE_LEFT" - }, - { - "x": 156.65275329264014, - "y": -1120.1438894799521, - "rotation": 6.112791901516403, - "action": "CARVE_LEFT" - }, - { - "x": 156.05921476120832, - "y": -1123.866883637108, - "rotation": 6.058686694704579, - "action": "CARVE_LEFT" - }, - { - "x": 155.32139361209016, - "y": -1127.4634584720702, - "rotation": 6.004581487892755, - "action": "CARVE_LEFT" - }, - { - "x": 154.4389615296828, - "y": -1130.9325708690496, - "rotation": 5.95047628108093, - "action": "CARVE_LEFT" - }, - { - "x": 153.41166404637013, - "y": -1134.2732477160862, - "rotation": 5.896371074269106, - "action": "CARVE_LEFT" - }, - { - "x": 152.23932032573617, - "y": -1137.4845857007435, - "rotation": 5.842265867457281, - "action": "CARVE_LEFT" - }, - { - "x": 150.92182294637522, - "y": -1140.5657511063637, - "rotation": 5.788160660645457, - "action": "CARVE_LEFT" - }, - { - "x": 149.45913768629674, - "y": -1143.51597960888, - "rotation": 5.734055453833633, - "action": "CARVE_LEFT" - }, - { - "x": 147.8513033079235, - "y": -1146.3345760741877, - "rotation": 5.679950247021808, - "action": "CARVE_LEFT" - }, - { - "x": 146.09843134368145, - "y": -1149.0209143560703, - "rotation": 5.625845040209984, - "action": "CARVE_LEFT" - }, - { - "x": 144.20070588217982, - "y": -1151.5744370946798, - "rotation": 5.571739833398159, - "action": "CARVE_LEFT" - }, - { - "x": 142.15838335497975, - "y": -1153.9946555155698, - "rotation": 5.517634626586335, - "action": "CARVE_LEFT" - }, - { - "x": 139.97179232394998, - "y": -1156.2811492292801, - "rotation": 5.463529419774511, - "action": "CARVE_LEFT" - }, - { - "x": 137.64133326920813, - "y": -1158.4335660314716, - "rotation": 5.409424212962686, - "action": "CARVE_LEFT" - }, - { - "x": 135.1674783776457, - "y": -1160.451621703608, - "rotation": 5.355319006150862, - "action": "CARVE_LEFT" - }, - { - "x": 132.55077133203577, - "y": -1162.3350998141868, - "rotation": 5.301213799339037, - "action": "CARVE_LEFT" - }, - { - "x": 129.79182710072132, - "y": -1164.083851520514, - "rotation": 5.247108592527213, - "action": "CARVE_LEFT" - }, - { - "x": 126.89133172788301, - "y": -1165.697795371023, - "rotation": 5.1930033857153886, - "action": "CARVE_LEFT" - }, - { - "x": 123.85004212438476, - "y": -1167.1769171081382, - "rotation": 5.138898178903564, - "action": "NOTHING" - }, - { - "x": 120.48404235729645, - "y": -1168.3516806736225, - "rotation": 5.142388837407553, - "action": "NOTHING" - }, - { - "x": 117.1311928733927, - "y": -1169.534974622504, - "rotation": 5.145879495911541, - "action": "NOTHING" - }, - { - "x": 113.79143354100724, - "y": -1170.726797964751, - "rotation": 5.1493701544155295, - "action": "NOTHING" - }, - { - "x": 110.46470471572452, - "y": -1171.9271500411778, - "rotation": 5.152860812919518, - "action": "NOTHING" - }, - { - "x": 107.15094723901974, - "y": -1173.1360305224493, - "rotation": 5.156351471423506, - "action": "NOTHING" - }, - { - "x": 103.85010243690233, - "y": -1174.35343940809, - "rotation": 5.159842129927495, - "action": "NOTHING" - }, - { - "x": 100.56211211856316, - "y": -1175.5793770254945, - "rotation": 5.163332788431483, - "action": "NOTHING" - }, - { - "x": 97.28691857502534, - "y": -1176.8138440289415, - "rotation": 5.166823446935472, - "action": "NOTHING" - }, - { - "x": 94.02446457779854, - "y": -1178.0568413986093, - "rotation": 5.17031410543946, - "action": "NOTHING" - }, - { - "x": 90.77469337753702, - "y": -1179.3083704395965, - "rotation": 5.173804763943449, - "action": "NOTHING" - }, - { - "x": 87.53754870270119, - "y": -1180.5684327809422, - "rotation": 5.177295422447437, - "action": "NOTHING" - }, - { - "x": 84.31297475822265, - "y": -1181.8370303746522, - "rotation": 5.1807860809514255, - "action": "NOTHING" - }, - { - "x": 81.10091622417296, - "y": -1183.114165494725, - "rotation": 5.184276739455414, - "action": "NOTHING" - }, - { - "x": 77.90131825443582, - "y": -1184.3998407361833, - "rotation": 5.187767397959402, - "action": "NOTHING" - }, - { - "x": 74.71412647538287, - "y": -1185.694059014105, - "rotation": 5.191258056463391, - "action": "NOTHING" - }, - { - "x": 71.53928698455297, - "y": -1186.9968235626604, - "rotation": 5.194748714967379, - "action": "NOTHING" - }, - { - "x": 68.37674634933508, - "y": -1188.3081379341497, - "rotation": 5.198239373471368, - "action": "NOTHING" - }, - { - "x": 65.22645160565453, - "y": -1189.6280059980434, - "rotation": 5.201730031975356, - "action": "NOTHING" - }, - { - "x": 62.08835025666297, - "y": -1190.9564319400267, - "rotation": 5.2052206904793445, - "action": "NOTHING" - }, - { - "x": 58.96239027143164, - "y": -1192.2934202610452, - "rotation": 5.208711348983333, - "action": "NOTHING" - }, - { - "x": 55.84852008364825, - "y": -1193.6389757763538, - "rotation": 5.212202007487321, - "action": "NOTHING" - }, - { - "x": 52.7466885903173, - "y": -1194.9931036145686, - "rotation": 5.21569266599131, - "action": "NOTHING" - }, - { - "x": 49.65684515046383, - "y": -1196.3558092167204, - "rotation": 5.219183324495298, - "action": "NOTHING" - }, - { - "x": 46.578939583840715, - "y": -1197.7270983353128, - "rotation": 5.222673982999287, - "action": "NOTHING" - }, - { - "x": 43.51292216963933, - "y": -1199.1069770333802, - "rotation": 5.226164641503275, - "action": "NOTHING" - }, - { - "x": 40.45874364520372, - "y": -1200.4954516835508, - "rotation": 5.229655300007264, - "action": "CARVE_RIGHT" - }, - { - "x": 37.85259420431942, - "y": -1202.296430633381, - "rotation": 5.283760506819088, - "action": "CARVE_RIGHT" - }, - { - "x": 35.38847335121719, - "y": -1204.227308566203, - "rotation": 5.3378657136309124, - "action": "CARVE_RIGHT" - }, - { - "x": 33.065872494496844, - "y": -1206.2883414371179, - "rotation": 5.391970920442737, - "action": "CARVE_RIGHT" - }, - { - "x": 30.884356878230907, - "y": -1208.4798519682845, - "rotation": 5.446076127254561, - "action": "CARVE_RIGHT" - }, - { - "x": 28.84356536610581, - "y": -1210.8022294525686, - "rotation": 5.500181334066386, - "action": "CARVE_RIGHT" - }, - { - "x": 26.943210226155475, - "y": -1213.2559295577314, - "rotation": 5.55428654087821, - "action": "CARVE_RIGHT" - }, - { - "x": 25.183076916085767, - "y": -1215.8414741311594, - "rotation": 5.6083917476900345, - "action": "CARVE_RIGHT" - }, - { - "x": 23.563023869188243, - "y": -1218.5594510051312, - "rotation": 5.662496954501859, - "action": "CARVE_RIGHT" - }, - { - "x": 22.08298228084163, - "y": -1221.4105138026205, - "rotation": 5.716602161313683, - "action": "CARVE_RIGHT" - }, - { - "x": 20.742955895599525, - "y": -1224.3953817436347, - "rotation": 5.770707368125508, - "action": "CARVE_RIGHT" - }, - { - "x": 19.543020794862702, - "y": -1227.5148394520875, - "rotation": 5.824812574937332, - "action": "CARVE_RIGHT" - }, - { - "x": 18.483325185134543, - "y": -1230.7697367632027, - "rotation": 5.8789177817491565, - "action": "CARVE_RIGHT" - }, - { - "x": 17.564089186858038, - "y": -1234.16098853145, - "rotation": 5.933022988560981, - "action": "CARVE_RIGHT" - }, - { - "x": 16.78560462383281, - "y": -1237.6895744390094, - "rotation": 5.987128195372805, - "action": "CARVE_RIGHT" - }, - { - "x": 16.148234813210642, - "y": -1241.356538804765, - "rotation": 6.04123340218463, - "action": "CARVE_RIGHT" - }, - { - "x": 15.652414356067977, - "y": -1245.1629903938233, - "rotation": 6.095338608996454, - "action": "CARVE_RIGHT" - }, - { - "x": 15.29864892855388, - "y": -1249.1101022275582, - "rotation": 6.1494438158082785, - "action": "CARVE_RIGHT" - }, - { - "x": 15.087515073611923, - "y": -1253.1991113941804, - "rotation": 6.203549022620103, - "action": "CARVE_RIGHT" - }, - { - "x": 15.019659993274509, - "y": -1257.431318859828, - "rotation": 6.257654229431927, - "action": "CARVE_RIGHT" - }, - { - "x": 15.09578783257151, - "y": -1261.6663352757735, - "rotation": 0.028574129064165454, - "action": "CARVE_RIGHT" - }, - { - "x": 15.31656140471182, - "y": -1265.7771430049618, - "rotation": 0.08267933587598966, - "action": "CARVE_RIGHT" - }, - { - "x": 15.68256869699132, - "y": -1269.762452891774, - "rotation": 0.13678454268781387, - "action": "CARVE_RIGHT" - }, - { - "x": 16.194323090263207, - "y": -1273.6210464990215, - "rotation": 0.19088974949963808, - "action": "CARVE_RIGHT" - }, - { - "x": 16.852263577804802, - "y": -1277.351775901686, - "rotation": 0.2449949563114623, - "action": "CARVE_RIGHT" - }, - { - "x": 17.656754983582438, - "y": -1280.9535634812275, - "rotation": 0.2991001631232865, - "action": "CARVE_RIGHT" - }, - { - "x": 18.608088179916024, - "y": -1284.425401720453, - "rotation": 0.35320536993511076, - "action": "CARVE_RIGHT" - }, - { - "x": 19.706480304544858, - "y": -1287.7663529989495, - "rotation": 0.407310576746935, - "action": "CARVE_RIGHT" - }, - { - "x": 20.952074977096284, - "y": -1290.9755493890773, - "rotation": 0.46141578355875923, - "action": "CARVE_RIGHT" - }, - { - "x": 22.34494251495875, - "y": -1294.0521924525226, - "rotation": 0.5155209903705834, - "action": "CARVE_RIGHT" - }, - { - "x": 23.885080148560867, - "y": -1296.9955530374073, - "rotation": 0.5696261971824076, - "action": "NOTHING" - }, - { - "x": 25.587343973380737, - "y": -1299.7926153932503, - "rotation": 0.5661355386784189, - "action": "NOTHING" - }, - { - "x": 27.280604059277618, - "y": -1302.6018714247853, - "rotation": 0.5626448801744303, - "action": "NOTHING" - }, - { - "x": 28.964856571966763, - "y": -1305.4233628638056, - "rotation": 0.5591542216704416, - "action": "NOTHING" - }, - { - "x": 30.640097370164785, - "y": -1308.2571316423632, - "rotation": 0.5556635631664529, - "action": "NOTHING" - }, - { - "x": 32.306322006466196, - "y": -1311.1032198921423, - "rotation": 0.5521729046624643, - "action": "NOTHING" - }, - { - "x": 33.9635257282176, - "y": -1313.9616699438334, - "rotation": 0.5486822461584756, - "action": "NOTHING" - }, - { - "x": 35.61170347838949, - "y": -1316.8325243265108, - "rotation": 0.5451915876544869, - "action": "NOTHING" - }, - { - "x": 37.25084989644573, - "y": -1319.7158257670108, - "rotation": 0.5417009291504983, - "action": "NOTHING" - }, - { - "x": 38.88095931921065, - "y": -1322.611617189312, - "rotation": 0.5382102706465096, - "action": "NOTHING" - }, - { - "x": 40.50202578173381, - "y": -1325.5199417139174, - "rotation": 0.534719612142521, - "action": "NOTHING" - }, - { - "x": 42.1140430181524, - "y": -1328.4408426572386, - "rotation": 0.5312289536385323, - "action": "NOTHING" - }, - { - "x": 43.717004462551344, - "y": -1331.3743635309806, - "rotation": 0.5277382951345436, - "action": "NOTHING" - }, - { - "x": 45.31090324982105, - "y": -1334.32054804153, - "rotation": 0.524247636630555, - "action": "NOTHING" - }, - { - "x": 46.895732216512855, - "y": -1337.2794400893433, - "rotation": 0.5207569781265663, - "action": "NOTHING" - }, - { - "x": 48.47148390169212, - "y": -1340.2510837683387, - "rotation": 0.5172663196225776, - "action": "NOTHING" - }, - { - "x": 50.03815054778906, - "y": -1343.2355233652877, - "rotation": 0.513775661118589, - "action": "NOTHING" - }, - { - "x": 51.595724101447246, - "y": -1346.2328033592103, - "rotation": 0.5102850026146003, - "action": "NOTHING" - }, - { - "x": 53.14419621436981, - "y": -1349.24296842077, - "rotation": 0.5067943441106116, - "action": "NOTHING" - }, - { - "x": 54.683558244163365, - "y": -1352.266063411673, - "rotation": 0.503303685606623, - "action": "NOTHING" - }, - { - "x": 56.21380125517962, - "y": -1355.3021333840666, - "rotation": 0.4998130271026343, - "action": "NOTHING" - }, - { - "x": 57.734916019354756, - "y": -1358.3512235799406, - "rotation": 0.49632236859864565, - "action": "NOTHING" - }, - { - "x": 59.24689301704648, - "y": -1361.4133794305303, - "rotation": 0.492831710094657, - "action": "NOTHING" - }, - { - "x": 60.749722437868854, - "y": -1364.4886465557217, - "rotation": 0.4893410515906683, - "action": "NOTHING" - }, - { - "x": 62.24339418152482, - "y": -1367.5770707634572, - "rotation": 0.48585039308667965, - "action": "NOTHING" - }, - { - "x": 63.72789785863652, - "y": -1370.6786980491436, - "rotation": 0.482359734582691, - "action": "NOTHING" - }, - { - "x": 65.2032227915733, - "y": -1373.7935745950622, - "rotation": 0.4788690760787023, - "action": "NOTHING" - }, - { - "x": 66.66935801527754, - "y": -1376.9217467697802, - "rotation": 0.47537841757471366, - "action": "NOTHING" - }, - { - "x": 68.1262922780882, - "y": -1380.0632611275635, - "rotation": 0.471887759070725, - "action": "NOTHING" - }, - { - "x": 69.57401404256214, - "y": -1383.218164407792, - "rotation": 0.46839710056673634, - "action": "NOTHING" - }, - { - "x": 71.01251148629322, - "y": -1386.3865035343758, - "rotation": 0.46490644206274767, - "action": "NOTHING" - }, - { - "x": 72.4417725027292, - "y": -1389.5683256151729, - "rotation": 0.461415783558759, - "action": "NOTHING" - }, - { - "x": 73.86178470198637, - "y": -1392.7636779414097, - "rotation": 0.45792512505477034, - "action": "NOTHING" - }, - { - "x": 75.27253541166202, - "y": -1395.9726079871025, - "rotation": 0.4544344665507817, - "action": "CARVE_LEFT" - }, - { - "x": 76.39228502336681, - "y": -1399.4559980883669, - "rotation": 0.40032925973895744, - "action": "CARVE_LEFT" - }, - { - "x": 77.36192543531264, - "y": -1403.084105085121, - "rotation": 0.3462240529271332, - "action": "CARVE_LEFT" - }, - { - "x": 78.18120164794419, - "y": -1406.8578758222272, - "rotation": 0.29211884611530897, - "action": "CARVE_LEFT" - }, - { - "x": 78.84978704527519, - "y": -1410.7783218924424, - "rotation": 0.23801363930348476, - "action": "CARVE_LEFT" - }, - { - "x": 79.3672836046793, - "y": -1414.8465194456078, - "rotation": 0.18390843249166056, - "action": "CARVE_LEFT" - }, - { - "x": 79.73322210610442, - "y": -1419.063608998364, - "rotation": 0.12980322567983635, - "action": "CARVE_LEFT" - }, - { - "x": 79.94706234071214, - "y": -1423.430795244392, - "rotation": 0.07569801886801214, - "action": "CARVE_LEFT" - }, - { - "x": 80.00819331894373, - "y": -1427.9493468651751, - "rotation": 0.021592812056187925, - "action": "CARVE_LEFT" - }, - { - "x": 79.9159509673663, - "y": -1432.4488916604535, - "rotation": 6.2506729124239495, - "action": "CARVE_LEFT" - }, - { - "x": 79.66971900302514, - "y": -1436.8149085892808, - "rotation": 6.196567705612125, - "action": "CARVE_LEFT" - }, - { - "x": 79.26895581735103, - "y": -1441.0461529076695, - "rotation": 6.142462498800301, - "action": "CARVE_LEFT" - }, - { - "x": 78.71319425713156, - "y": -1445.1414504469371, - "rotation": 6.088357291988476, - "action": "CARVE_LEFT" - }, - { - "x": 78.00204140608456, - "y": -1449.0996974078625, - "rotation": 6.034252085176652, - "action": "CARVE_LEFT" - }, - { - "x": 77.13517836703228, - "y": -1452.9198601554056, - "rotation": 5.9801468783648275, - "action": "CARVE_LEFT" - }, - { - "x": 76.1123600446748, - "y": -1456.6009750139897, - "rotation": 5.926041671553003, - "action": "CARVE_LEFT" - }, - { - "x": 74.93341492896087, - "y": -1460.142148063346, - "rotation": 5.871936464741179, - "action": "CARVE_LEFT" - }, - { - "x": 73.59824487905473, - "y": -1463.5425549349168, - "rotation": 5.817831257929354, - "action": "NOTHING" - }, - { - "x": 72.12438204519997, - "y": -1466.8191672174305, - "rotation": 5.821321916433343, - "action": "NOTHING" - }, - { - "x": 70.66018935278038, - "y": -1470.109394482371, - "rotation": 5.824812574937331, - "action": "NOTHING" - }, - { - "x": 69.20567778726684, - "y": -1473.4132833136125, - "rotation": 5.82830323344132, - "action": "NOTHING" - }, - { - "x": 67.76085862115904, - "y": -1476.7308804806894, - "rotation": 5.831793891945308, - "action": "NOTHING" - }, - { - "x": 66.32574341316226, - "y": -1480.0622329382109, - "rotation": 5.8352845504492965, - "action": "NOTHING" - }, - { - "x": 64.90034400736621, - "y": -1483.4073878252766, - "rotation": 5.838775208953285, - "action": "NOTHING" - }, - { - "x": 63.484672532426316, - "y": -1486.7663924648937, - "rotation": 5.842265867457273, - "action": "NOTHING" - }, - { - "x": 62.07874140074699, - "y": -1490.1392943633955, - "rotation": 5.845756525961262, - "action": "NOTHING" - }, - { - "x": 60.682563307667316, - "y": -1493.5261412098628, - "rotation": 5.84924718446525, - "action": "NOTHING" - }, - { - "x": 59.2961512306488, - "y": -1496.9269808755457, - "rotation": 5.852737842969239, - "action": "NOTHING" - }, - { - "x": 57.91951842846545, - "y": -1500.3418614132877, - "rotation": 5.856228501473227, - "action": "NOTHING" - }, - { - "x": 56.55267844039593, - "y": -1503.770831056951, - "rotation": 5.859719159977216, - "action": "NOTHING" - }, - { - "x": 55.19564508541799, - "y": -1507.213938220844, - "rotation": 5.863209818481204, - "action": "NOTHING" - }, - { - "x": 53.84843246140509, - "y": -1510.6712314991503, - "rotation": 5.8667004769851925, - "action": "NOTHING" - }, - { - "x": 52.51105494432511, - "y": -1514.1427596653589, - "rotation": 5.870191135489181, - "action": "NOTHING" - }, - { - "x": 51.183527187441356, - "y": -1517.6285716716966, - "rotation": 5.873681793993169, - "action": "NOTHING" - }, - { - "x": 49.86586412051567, - "y": -1521.1287166485615, - "rotation": 5.877172452497158, - "action": "NOTHING" - }, - { - "x": 48.55808094901368, - "y": -1524.643243903959, - "rotation": 5.880663111001146, - "action": "NOTHING" - }, - { - "x": 47.2601931533123, - "y": -1528.1722029229381, - "rotation": 5.884153769505135, - "action": "NOTHING" - }, - { - "x": 45.97221648790928, - "y": -1531.7156433670307, - "rotation": 5.887644428009123, - "action": "NOTHING" - }, - { - "x": 44.69416698063496, - "y": -1535.273615073691, - "rotation": 5.891135086513112, - "action": "NOTHING" - }, - { - "x": 43.42606093186618, - "y": -1538.8461680557384, - "rotation": 5.8946257450171, - "action": "NOTHING" - }, - { - "x": 42.167914913742266, - "y": -1542.4333525008005, - "rotation": 5.8981164035210885, - "action": "NOTHING" - }, - { - "x": 40.91974576938319, - "y": -1546.0352187707583, - "rotation": 5.901607062025077, - "action": "NOTHING" - }, - { - "x": 39.68157061210987, - "y": -1549.6518174011924, - "rotation": 5.905097720529065, - "action": "NOTHING" - }, - { - "x": 38.45340682466654, - "y": -1553.2831991008318, - "rotation": 5.908588379033054, - "action": "NOTHING" - }, - { - "x": 37.23527205844525, - "y": -1556.9294147510036, - "rotation": 5.912079037537042, - "action": "NOTHING" - }, - { - "x": 36.027184232712514, - "y": -1560.5905154050843, - "rotation": 5.915569696041031, - "action": "NOTHING" - }, - { - "x": 34.829161533838025, - "y": -1564.2665522879531, - "rotation": 5.919060354545019, - "action": "NOTHING" - }, - { - "x": 33.641222414525444, - "y": -1567.9575767954464, - "rotation": 5.9225510130490076, - "action": "NOTHING" - }, - { - "x": 32.46338559304533, - "y": -1571.6636404938135, - "rotation": 5.926041671552996, - "action": "NOTHING" - }, - { - "x": 31.295670052470133, - "y": -1575.3847951191751, - "rotation": 5.929532330056984, - "action": "NOTHING" - }, - { - "x": 30.138095039911267, - "y": -1579.121092576982, - "rotation": 5.933022988560973, - "action": "NOTHING" - }, - { - "x": 28.99068006575826, - "y": -1582.872584941476, - "rotation": 5.936513647064961, - "action": "NOTHING" - }, - { - "x": 27.85344490291997, - "y": -1586.6393244551525, - "rotation": 5.94000430556895, - "action": "NOTHING" - }, - { - "x": 26.726409586067888, - "y": -1590.4213635282247, - "rotation": 5.943494964072938, - "action": "NOTHING" - }, - { - "x": 25.609594410881453, - "y": -1594.2187547380881, - "rotation": 5.946985622576927, - "action": "CARVE_RIGHT" - }, - { - "x": 24.765188887496198, - "y": -1598.2742765271225, - "rotation": 6.001090829388751, - "action": "CARVE_RIGHT" - }, - { - "x": 24.08180630780861, - "y": -1602.4855034091006, - "rotation": 6.0551960362005754, - "action": "CARVE_RIGHT" - }, - { - "x": 23.55981299740354, - "y": -1606.8534833662077, - "rotation": 6.1093012430124, - "action": "CARVE_RIGHT" - }, - { - "x": 23.19964658849322, - "y": -1611.3793288459422, - "rotation": 6.163406449824224, - "action": "CARVE_RIGHT" - }, - { - "x": 23.001815810950752, - "y": -1616.064216571058, - "rotation": 6.217511656636049, - "action": "CARVE_RIGHT" - }, - { - "x": 22.966900283917962, - "y": -1620.909387350033, - "rotation": 6.271616863447873, - "action": "CARVE_RIGHT" - }, - { - "x": 23.095520371234148, - "y": -1625.6767954726956, - "rotation": 0.04253676308011123, - "action": "CARVE_RIGHT" - }, - { - "x": 23.38823432756496, - "y": -1630.3005225180343, - "rotation": 0.09664196989193544, - "action": "CARVE_RIGHT" - }, - { - "x": 23.845525919587352, - "y": -1634.779379053689, - "rotation": 0.15074717670375964, - "action": "CARVE_RIGHT" - }, - { - "x": 24.467804644479102, - "y": -1639.1122460466545, - "rotation": 0.20485238351558385, - "action": "CARVE_RIGHT" - }, - { - "x": 25.255405947807482, - "y": -1643.2980746579437, - "rotation": 0.25895759032740806, - "action": "CARVE_RIGHT" - }, - { - "x": 26.20859144081871, - "y": -1647.3358860378125, - "rotation": 0.3130627971392323, - "action": "CARVE_RIGHT" - }, - { - "x": 27.327549117129728, - "y": -1651.2247711215455, - "rotation": 0.36716800395105653, - "action": "CARVE_RIGHT" - }, - { - "x": 28.61239356882388, - "y": -1654.963890425803, - "rotation": 0.42127321076288077, - "action": "CARVE_RIGHT" - }, - { - "x": 30.063166201952107, - "y": -1658.5524738455247, - "rotation": 0.475378417574705, - "action": "CARVE_RIGHT" - }, - { - "x": 31.679835451441168, - "y": -1661.9898204513922, - "rotation": 0.5294836243865292, - "action": "CARVE_RIGHT" - }, - { - "x": 33.46229699541052, - "y": -1665.2752982878446, - "rotation": 0.5835888311983534, - "action": "CARVE_RIGHT" - }, - { - "x": 35.410373968899336, - "y": -1668.4083441716496, - "rotation": 0.6376940380101775, - "action": "CARVE_RIGHT" - }, - { - "x": 37.52381717700533, - "y": -1671.3884634910262, - "rotation": 0.6917992448220017, - "action": "CARVE_RIGHT" - }, - { - "x": 39.80230530743682, - "y": -1674.2152300053197, - "rotation": 0.7459044516338259, - "action": "CARVE_RIGHT" - }, - { - "x": 42.245445142479674, - "y": -1676.8882856452244, - "rotation": 0.8000096584456501, - "action": "CARVE_RIGHT" - }, - { - "x": 44.85277177038065, - "y": -1679.4073403135558, - "rotation": 0.8541148652574743, - "action": "CARVE_RIGHT" - }, - { - "x": 47.62374879614865, - "y": -1681.7721716865685, - "rotation": 0.9082200720692984, - "action": "CARVE_RIGHT" - }, - { - "x": 50.557768551775446, - "y": -1683.9826250158208, - "rotation": 0.9623252788811226, - "action": "CARVE_RIGHT" - }, - { - "x": 53.65415230587747, - "y": -1686.0386129305807, - "rotation": 1.016430485692947, - "action": "NOTHING" - }, - { - "x": 57.08041462061312, - "y": -1687.7857851038762, - "rotation": 1.0129398271889583, - "action": "NOTHING" - }, - { - "x": 60.49256658375309, - "y": -1689.5427038742232, - "rotation": 1.0094491686849696, - "action": "NOTHING" - }, - { - "x": 63.89066145069117, - "y": -1691.3093738985342, - "rotation": 1.005958510180981, - "action": "NOTHING" - }, - { - "x": 67.27475200642233, - "y": -1693.0858001505474, - "rotation": 1.0024678516769923, - "action": "NOTHING" - }, - { - "x": 70.6448905668619, - "y": -1694.8719879198666, - "rotation": 0.9989771931730036, - "action": "NOTHING" - }, - { - "x": 74.00112898016128, - "y": -1696.667942811004, - "rotation": 0.9954865346690149, - "action": "NOTHING" - }, - { - "x": 77.34351862802005, - "y": -1698.473670742425, - "rotation": 0.9919958761650263, - "action": "NOTHING" - }, - { - "x": 80.67211042699462, - "y": -1700.289177945596, - "rotation": 0.9885052176610376, - "action": "NOTHING" - }, - { - "x": 83.98695482980338, - "y": -1702.1144709640355, - "rotation": 0.9850145591570489, - "action": "NOTHING" - }, - { - "x": 87.28810182662836, - "y": -1703.9495566523658, - "rotation": 0.9815239006530603, - "action": "NOTHING" - }, - { - "x": 90.5756009464134, - "y": -1705.79444217537, - "rotation": 0.9780332421490716, - "action": "NOTHING" - }, - { - "x": 93.84950125815882, - "y": -1707.6491350070498, - "rotation": 0.974542583645083, - "action": "NOTHING" - }, - { - "x": 97.10985137221269, - "y": -1709.5136429296872, - "rotation": 0.9710519251410943, - "action": "NOTHING" - }, - { - "x": 100.35669944155853, - "y": -1711.387974032907, - "rotation": 0.9675612666371056, - "action": "NOTHING" - }, - { - "x": 103.59009316309977, - "y": -1713.2721367127447, - "rotation": 0.964070608133117, - "action": "NOTHING" - }, - { - "x": 106.8100797789405, - "y": -1715.1661396707138, - "rotation": 0.9605799496291283, - "action": "NOTHING" - }, - { - "x": 110.01670607766304, - "y": -1717.069991912879, - "rotation": 0.9570892911251396, - "action": "NOTHING" - }, - { - "x": 113.21001839560192, - "y": -1718.9837027489289, - "rotation": 0.953598632621151, - "action": "NOTHING" - }, - { - "x": 116.39006261811456, - "y": -1720.9072817912534, - "rotation": 0.9501079741171623, - "action": "NOTHING" - }, - { - "x": 119.55688418084844, - "y": -1722.8407389540232, - "rotation": 0.9466173156131736, - "action": "NOTHING" - }, - { - "x": 122.71052807100503, - "y": -1724.7840844522716, - "rotation": 0.943126657109185, - "action": "NOTHING" - }, - { - "x": 125.85103882860014, - "y": -1726.737328800979, - "rotation": 0.9396359986051963, - "action": "CARVE_LEFT" - }, - { - "x": 128.51352437649305, - "y": -1729.130955935667, - "rotation": 0.8855307917933721, - "action": "CARVE_LEFT" - }, - { - "x": 131.0125599913327, - "y": -1731.6744206982926, - "rotation": 0.831425584981548, - "action": "CARVE_LEFT" - }, - { - "x": 133.3485959583214, - "y": -1734.3680328022315, - "rotation": 0.7773203781697238, - "action": "CARVE_LEFT" - }, - { - "x": 135.52200886311067, - "y": -1737.2121686025682, - "rotation": 0.7232151713578996, - "action": "CARVE_LEFT" - }, - { - "x": 137.5331018073441, - "y": -1740.2072709000345, - "rotation": 0.6691099645460754, - "action": "CARVE_LEFT" - }, - { - "x": 139.38210462360868, - "y": -1743.3538487454907, - "rotation": 0.6150047577342512, - "action": "CARVE_LEFT" - }, - { - "x": 141.06917408979592, - "y": -1746.6524772449443, - "rotation": 0.560899550922427, - "action": "CARVE_LEFT" - }, - { - "x": 142.59439414287448, - "y": -1750.103797365106, - "rotation": 0.5067943441106029, - "action": "CARVE_LEFT" - }, - { - "x": 143.95777609207573, - "y": -1753.7085157394818, - "rotation": 0.45268913729877863, - "action": "CARVE_LEFT" - }, - { - "x": 145.15925883149387, - "y": -1757.467404475, - "rotation": 0.3985839304869544, - "action": "CARVE_LEFT" - }, - { - "x": 146.1987090521021, - "y": -1761.38130095917, - "rotation": 0.34447872367513016, - "action": "CARVE_LEFT" - }, - { - "x": 147.0759214531864, - "y": -1765.4511076677738, - "rotation": 0.2903735168633059, - "action": "CARVE_LEFT" - }, - { - "x": 147.79061895319856, - "y": -1769.6777919730873, - "rotation": 0.23626831005148172, - "action": "CARVE_LEFT" - }, - { - "x": 148.34245290002977, - "y": -1774.0623859526302, - "rotation": 0.1821631032396575, - "action": "CARVE_LEFT" - }, - { - "x": 148.7310032807065, - "y": -1778.6059861984438, - "rotation": 0.1280578964278333, - "action": "CARVE_LEFT" - }, - { - "x": 148.95577893051006, - "y": -1783.3097536268945, - "rotation": 0.07395268961600909, - "action": "CARVE_LEFT" - }, - { - "x": 149.01621774152161, - "y": -1788.1749132890016, - "rotation": 0.019847482804184878, - "action": "CARVE_LEFT" - }, - { - "x": 148.91170628807123, - "y": -1793.0082804894635, - "rotation": 6.248927583171947, - "action": "CARVE_LEFT" - }, - { - "x": 148.6416815248362, - "y": -1797.6966669984006, - "rotation": 6.194822376360123, - "action": "CARVE_LEFT" - }, - { - "x": 148.2056549061035, - "y": -1802.238878926117, - "rotation": 6.1407171695482985, - "action": "CARVE_LEFT" - }, - { - "x": 147.6032121672522, - "y": -1806.6337927930774, - "rotation": 6.086611962736474, - "action": "CARVE_LEFT" - }, - { - "x": 146.83401310683703, - "y": -1810.8803553245439, - "rotation": 6.03250675592465, - "action": "CARVE_LEFT" - }, - { - "x": 145.897791369271, - "y": -1814.9775832457742, - "rotation": 5.978401549112825, - "action": "CARVE_LEFT" - }, - { - "x": 144.794354228106, - "y": -1818.9245630777834, - "rotation": 5.924296342301001, - "action": "CARVE_LEFT" - }, - { - "x": 143.5235823699093, - "y": -1822.7204509336636, - "rotation": 5.8701911354891765, - "action": "CARVE_LEFT" - }, - { - "x": 142.0854296787349, - "y": -1826.3644723154628, - "rotation": 5.816085928677352, - "action": "CARVE_LEFT" - }, - { - "x": 140.47992302118766, - "y": -1829.8559219116203, - "rotation": 5.761980721865528, - "action": "CARVE_LEFT" - }, - { - "x": 138.70716203207894, - "y": -1833.1941633949584, - "rotation": 5.707875515053703, - "action": "CARVE_LEFT" - }, - { - "x": 136.7673189006722, - "y": -1836.3786292212271, - "rotation": 5.653770308241879, - "action": "CARVE_LEFT" - }, - { - "x": 134.6606381575168, - "y": -1839.408820428202, - "rotation": 5.5996651014300545, - "action": "CARVE_LEFT" - }, - { - "x": 132.38743646186865, - "y": -1842.2843064353328, - "rotation": 5.54555989461823, - "action": "CARVE_LEFT" - }, - { - "x": 129.94810238969612, - "y": -1845.0047248439412, - "rotation": 5.491454687806406, - "action": "CARVE_LEFT" - }, - { - "x": 127.34309622226944, - "y": -1847.569781237968, - "rotation": 5.437349480994581, - "action": "CARVE_LEFT" - }, - { - "x": 124.5729497353324, - "y": -1849.979248985266, - "rotation": 5.383244274182757, - "action": "CARVE_LEFT" - }, - { - "x": 121.6382659888546, - "y": -1852.2329690394379, - "rotation": 5.3291390673709325, - "action": "CARVE_LEFT" - }, - { - "x": 118.5397191173627, - "y": -1854.3308497422197, - "rotation": 5.275033860559108, - "action": "CARVE_LEFT" - }, - { - "x": 115.27805412084926, - "y": -1856.2728666264043, - "rotation": 5.220928653747284, - "action": "CARVE_LEFT" - }, - { - "x": 111.85408665625759, - "y": -1858.0590622193076, - "rotation": 5.166823446935459, - "action": "CARVE_LEFT" - }, - { - "x": 108.26870282954098, - "y": -1859.6895458467739, - "rotation": 5.112718240123635, - "action": "CARVE_LEFT" - }, - { - "x": 104.52285898829503, - "y": -1861.1644934377184, - "rotation": 5.0586130333118104, - "action": "CARVE_LEFT" - }, - { - "x": 100.61758151496129, - "y": -1862.4841473292086, - "rotation": 5.004507826499986, - "action": "NOTHING" - }, - { - "x": 96.29628512137397, - "y": -1863.411692091312, - "rotation": 5.0079984850039745, - "action": "NOTHING" - }, - { - "x": 91.99280228771765, - "y": -1864.3488863257435, - "rotation": 5.011489143507963, - "action": "NOTHING" - }, - { - "x": 87.70704633898289, - "y": -1865.295711502573, - "rotation": 5.014979802011951, - "action": "NOTHING" - }, - { - "x": 83.43893116265863, - "y": -1866.252149476909, - "rotation": 5.01847046051594, - "action": "NOTHING" - }, - { - "x": 79.18837120716957, - "y": -1867.2181824877484, - "rotation": 5.021961119019928, - "action": "NOTHING" - }, - { - "x": 74.95528148031758, - "y": -1868.1937931568332, - "rotation": 5.025451777523917, - "action": "NOTHING" - }, - { - "x": 70.73957754772736, - "y": -1869.1789644875075, - "rotation": 5.028942436027905, - "action": "NOTHING" - }, - { - "x": 66.54117553129616, - "y": -1870.1736798635793, - "rotation": 5.032433094531894, - "action": "NOTHING" - }, - { - "x": 62.35999210764762, - "y": -1871.177923048185, - "rotation": 5.035923753035882, - "action": "NOTHING" - }, - { - "x": 58.19594450658978, - "y": -1872.1916781826571, - "rotation": 5.0394144115398705, - "action": "CARVE_RIGHT" - }, - { - "x": 54.61597815242092, - "y": -1873.7399320472873, - "rotation": 5.093519618351695, - "action": "CARVE_RIGHT" - }, - { - "x": 51.20274724615247, - "y": -1875.4369905779754, - "rotation": 5.147624825163519, - "action": "CARVE_RIGHT" - }, - { - "x": 47.95538588178824, - "y": -1877.282787619261, - "rotation": 5.201730031975344, - "action": "CARVE_RIGHT" - }, - { - "x": 44.87310306674426, - "y": -1879.2773247616133, - "rotation": 5.255835238787168, - "action": "CARVE_RIGHT" - }, - { - "x": 41.95518250297641, - "y": -1881.4206711423328, - "rotation": 5.3099404455989925, - "action": "CARVE_RIGHT" - }, - { - "x": 39.20098236870858, - "y": -1883.7129632469994, - "rotation": 5.364045652410817, - "action": "CARVE_RIGHT" - }, - { - "x": 36.60993510075957, - "y": -1886.154404711468, - "rotation": 5.418150859222641, - "action": "CARVE_RIGHT" - }, - { - "x": 34.18154717746745, - "y": -1888.7452661244104, - "rotation": 5.472256066034466, - "action": "CARVE_RIGHT" - }, - { - "x": 31.91539890220951, - "y": -1891.4858848303984, - "rotation": 5.52636127284629, - "action": "CARVE_RIGHT" - }, - { - "x": 29.811144187516433, - "y": -1894.3766647335324, - "rotation": 5.5804664796581145, - "action": "CARVE_RIGHT" - }, - { - "x": 27.868510339779032, - "y": -1897.4180761016082, - "rotation": 5.634571686469939, - "action": "CARVE_RIGHT" - }, - { - "x": 26.087297844546, - "y": -1900.610655370825, - "rotation": 5.688676893281763, - "action": "CARVE_RIGHT" - }, - { - "x": 24.467380152411142, - "y": -1903.9550049510315, - "rotation": 5.742782100093588, - "action": "CARVE_RIGHT" - }, - { - "x": 23.008703465488495, - "y": -1907.451793031507, - "rotation": 5.796887306905412, - "action": "CARVE_RIGHT" - }, - { - "x": 21.711286524473827, - "y": -1911.1017533872798, - "rotation": 5.8509925137172365, - "action": "CARVE_RIGHT" - }, - { - "x": 20.575220396290945, - "y": -1914.9056851859787, - "rotation": 5.905097720529061, - "action": "CARVE_RIGHT" - }, - { - "x": 19.600668262321246, - "y": -1918.8644527952156, - "rotation": 5.959202927340885, - "action": "CARVE_RIGHT" - }, - { - "x": 18.787865207215045, - "y": -1922.9789855905015, - "rotation": 6.01330813415271, - "action": "CARVE_RIGHT" - }, - { - "x": 18.137118008283046, - "y": -1927.25027776369, - "rotation": 6.067413340964534, - "action": "CARVE_RIGHT" - }, - { - "x": 17.648804925466536, - "y": -1931.6793881319509, - "rotation": 6.1215185477763585, - "action": "CARVE_RIGHT" - }, - { - "x": 17.32337549188467, - "y": -1936.2674399472683, - "rotation": 6.175623754588183, - "action": "CARVE_RIGHT" - }, - { - "x": 17.161350304957388, - "y": -1941.0156207064663, - "rotation": 6.229728961400007, - "action": "CARVE_RIGHT" - }, - { - "x": 17.16332081113651, - "y": -1945.921515520525, - "rotation": 0.0006488610322454846, - "action": "CARVE_RIGHT" - }, - { - "x": 17.329898936440124, - "y": -1950.68376688188, - "rotation": 0.0547540678440697, - "action": "CARVE_RIGHT" - }, - { - "x": 17.66162196301159, - "y": -1955.3011346775113, - "rotation": 0.10885927465589391, - "action": "CARVE_RIGHT" - }, - { - "x": 18.158952748035215, - "y": -1959.7724493401827, - "rotation": 0.16296448146771814, - "action": "CARVE_RIGHT" - }, - { - "x": 18.82227994204993, - "y": -1964.0966116427055, - "rotation": 0.21706968827954234, - "action": "CARVE_RIGHT" - }, - { - "x": 19.65191820666263, - "y": -1968.272592492766, - "rotation": 0.27117489509136655, - "action": "CARVE_RIGHT" - }, - { - "x": 20.648108431662717, - "y": -1972.2994327283147, - "rotation": 0.3252801019031908, - "action": "CARVE_RIGHT" - }, - { - "x": 21.81101795153947, - "y": -1976.176242913516, - "rotation": 0.379385308715015, - "action": "CARVE_RIGHT" - }, - { - "x": 23.14074076140376, - "y": -1979.902203135259, - "rotation": 0.43349051552683926, - "action": "CARVE_RIGHT" - }, - { - "x": 24.637297732315748, - "y": -1983.4765628002244, - "rotation": 0.4875957223386635, - "action": "CARVE_RIGHT" - }, - { - "x": 26.300636826020092, - "y": -1986.8986404325083, - "rotation": 0.5417009291504877, - "action": "CARVE_RIGHT" - }, - { - "x": 28.130633309090232, - "y": -1990.1678234718015, - "rotation": 0.5958061359623119, - "action": "CARVE_RIGHT" - }, - { - "x": 30.12708996648334, - "y": -1993.2835680721219, - "rotation": 0.6499113427741361, - "action": "CARVE_RIGHT" - }, - { - "x": 32.28973731450744, - "y": -1996.2453989010985, - "rotation": 0.7040165495859603, - "action": "CARVE_RIGHT" - }, - { - "x": 34.618233813202345, - "y": -1999.0529089398067, - "rotation": 0.7581217563977845, - "action": "CARVE_RIGHT" - }, - { - "x": 37.11216607813581, - "y": -2001.7057592831527, - "rotation": 0.8122269632096086, - "action": "CARVE_RIGHT" - }, - { - "x": 39.771049091616604, - "y": -2004.2036789408046, - "rotation": 0.8663321700214328, - "action": "CARVE_RIGHT" - }, - { - "x": 42.594326413325966, - "y": -2006.5464646386708, - "rotation": 0.920437376833257, - "action": "NOTHING" - }, - { - "x": 45.71804034267611, - "y": -2008.6089043687869, - "rotation": 0.9169467183292683, - "action": "NOTHING" - }, - { - "x": 48.82853608502617, - "y": -2010.6814706646, - "rotation": 0.9134560598252797, - "action": "NOTHING" - }, - { - "x": 51.925855884863026, - "y": -2012.7641757250035, - "rotation": 0.909965401321291, - "action": "NOTHING" - }, - { - "x": 55.01004154685263, - "y": -2014.8570320432407, - "rotation": 0.9064747428173023, - "action": "NOTHING" - }, - { - "x": 58.08113443707797, - "y": -2016.9600524060077, - "rotation": 0.9029840843133137, - "action": "NOTHING" - }, - { - "x": 61.13917548427372, - "y": -2019.0732498925574, - "rotation": 0.899493425809325, - "action": "NOTHING" - }, - { - "x": 64.18420518105752, - "y": -2021.1966378738077, - "rotation": 0.8960027673053363, - "action": "NOTHING" - }, - { - "x": 67.21626358515805, - "y": -2023.3302300114499, - "rotation": 0.8925121088013477, - "action": "NOTHING" - }, - { - "x": 70.23539032063967, - "y": -2025.4740402570617, - "rotation": 0.889021450297359, - "action": "NOTHING" - }, - { - "x": 73.24162457912395, - "y": -2027.6280828512217, - "rotation": 0.8855307917933704, - "action": "NOTHING" - }, - { - "x": 76.23500512100782, - "y": -2029.7923723226265, - "rotation": 0.8820401332893817, - "action": "NOTHING" - }, - { - "x": 79.21557027667843, - "y": -2031.9669234872104, - "rotation": 0.878549474785393, - "action": "NOTHING" - }, - { - "x": 82.18335794772484, - "y": -2034.1517514472673, - "rotation": 0.8750588162814044, - "action": "NOTHING" - }, - { - "x": 85.13840560814637, - "y": -2036.346871590576, - "rotation": 0.8715681577774157, - "action": "NOTHING" - }, - { - "x": 88.08075030555777, - "y": -2038.5522995895265, - "rotation": 0.868077499273427, - "action": "NOTHING" - }, - { - "x": 91.01042866239116, - "y": -2040.7680514002495, - "rotation": 0.8645868407694384, - "action": "NOTHING" - }, - { - "x": 93.9274768770947, - "y": -2042.9941432617493, - "rotation": 0.8610961822654497, - "action": "NOTHING" - }, - { - "x": 96.83193072532808, - "y": -2045.2305916950372, - "rotation": 0.857605523761461, - "action": "NOTHING" - }, - { - "x": 99.72382556115475, - "y": -2047.4774135022692, - "rotation": 0.8541148652574724, - "action": "NOTHING" - }, - { - "x": 102.60319631823104, - "y": -2049.7346257658846, - "rotation": 0.8506242067534837, - "action": "NOTHING" - }, - { - "x": 105.47007751099201, - "y": -2052.002245847748, - "rotation": 0.847133548249495, - "action": "NOTHING" - }, - { - "x": 108.32450323583416, - "y": -2054.280291388293, - "rotation": 0.8436428897455064, - "action": "NOTHING" - }, - { - "x": 111.16650717229493, - "y": -2056.5687803056703, - "rotation": 0.8401522312415177, - "action": "NOTHING" - }, - { - "x": 113.99612258422906, - "y": -2058.867730794895, - "rotation": 0.8366615727375291, - "action": "CARVE_LEFT" - }, - { - "x": 116.37761315170661, - "y": -2061.580627965216, - "rotation": 0.7825563659257049, - "action": "CARVE_LEFT" - }, - { - "x": 118.594333312879, - "y": -2064.4458320936633, - "rotation": 0.7284511591138807, - "action": "CARVE_LEFT" - }, - { - "x": 120.64660242971053, - "y": -2067.4637713761604, - "rotation": 0.6743459523020565, - "action": "CARVE_LEFT" - }, - { - "x": 122.53466654426842, - "y": -2070.6349403048403, - "rotation": 0.6202407454902323, - "action": "CARVE_LEFT" - }, - { - "x": 124.25869859322906, - "y": -2073.959899472934, - "rotation": 0.5661355386784082, - "action": "CARVE_LEFT" - }, - { - "x": 125.81879862179511, - "y": -2077.4392753801944, - "rotation": 0.512030331866584, - "action": "CARVE_LEFT" - }, - { - "x": 127.21499399702537, - "y": -2081.0737602388563, - "rotation": 0.45792512505475974, - "action": "CARVE_LEFT" - }, - { - "x": 128.44723962057867, - "y": -2084.8641117801326, - "rotation": 0.4038199182429355, - "action": "CARVE_LEFT" - }, - { - "x": 129.51541814087346, - "y": -2088.811153061243, - "rotation": 0.34971471143111127, - "action": "CARVE_LEFT" - }, - { - "x": 130.41934016466473, - "y": -2092.9157722729756, - "rotation": 0.29560950461928703, - "action": "CARVE_LEFT" - }, - { - "x": 131.15874446803963, - "y": -2097.1789225477755, - "rotation": 0.24150429780746283, - "action": "CARVE_LEFT" - }, - { - "x": 131.73329820683335, - "y": -2101.601621768369, - "rotation": 0.18739909099563862, - "action": "CARVE_LEFT" - }, - { - "x": 132.14259712646688, - "y": -2106.18495237691, - "rotation": 0.1332938841838144, - "action": "CARVE_LEFT" - }, - { - "x": 132.38616577120814, - "y": -2110.9300611846543, - "rotation": 0.0791886773719902, - "action": "CARVE_LEFT" - }, - { - "x": 132.46345769285793, - "y": -2115.83815918216, - "rotation": 0.025083470560165987, - "action": "CARVE_LEFT" - }, - { - "x": 132.37386959436324, - "y": -2120.7438285765998, - "rotation": 6.254163570927928, - "action": "CARVE_LEFT" - }, - { - "x": 132.1168399527815, - "y": -2125.5026732129086, - "rotation": 6.200058364116104, - "action": "CARVE_LEFT" - }, - { - "x": 131.69188173710944, - "y": -2130.113500732964, - "rotation": 6.145953157304279, - "action": "CARVE_LEFT" - }, - { - "x": 131.098582189792, - "y": -2134.5751891814416, - "rotation": 6.091847950492455, - "action": "CARVE_LEFT" - }, - { - "x": 130.33660260883224, - "y": -2138.8866868004784, - "rotation": 6.037742743680631, - "action": "CARVE_LEFT" - }, - { - "x": 129.4056781305, - "y": -2143.047011824895, - "rotation": 5.983637536868806, - "action": "CARVE_LEFT" - }, - { - "x": 128.30561751263883, - "y": -2147.055252277982, - "rotation": 5.929532330056982, - "action": "CARVE_LEFT" - }, - { - "x": 127.03630291856847, - "y": -2150.910565767846, - "rotation": 5.875427123245157, - "action": "CARVE_LEFT" - }, - { - "x": 125.59768970158217, - "y": -2154.6121792843105, - "rotation": 5.821321916433333, - "action": "CARVE_LEFT" - }, - { - "x": 123.98980619003679, - "y": -2158.1593889963788, - "rotation": 5.767216709621509, - "action": "CARVE_LEFT" - }, - { - "x": 122.21275347303425, - "y": -2161.551560050248, - "rotation": 5.713111502809684, - "action": "CARVE_LEFT" - }, - { - "x": 120.26670518669287, - "y": -2164.78812636788, - "rotation": 5.65900629599786, - "action": "CARVE_LEFT" - }, - { - "x": 118.15190730100686, - "y": -2167.8685904461217, - "rotation": 5.604901089186035, - "action": "CARVE_LEFT" - }, - { - "x": 115.8686779072926, - "y": -2170.792523156379, - "rotation": 5.550795882374211, - "action": "CARVE_LEFT" - }, - { - "x": 113.41740700621995, - "y": -2173.5595635448394, - "rotation": 5.4966906755623866, - "action": "CARVE_LEFT" - }, - { - "x": 110.79855629642728, - "y": -2176.169418633243, - "rotation": 5.442585468750562, - "action": "NOTHING" - }, - { - "x": 107.90153512595134, - "y": -2178.520440777821, - "rotation": 5.446076127254551, - "action": "NOTHING" - }, - { - "x": 105.01729247634381, - "y": -2180.8820766393264, - "rotation": 5.449566785758539, - "action": "NOTHING" - }, - { - "x": 102.14579433513694, - "y": -2183.254344071543, - "rotation": 5.4530574442625275, - "action": "NOTHING" - }, - { - "x": 99.2870071068622, - "y": -2185.6372612058026, - "rotation": 5.456548102766516, - "action": "NOTHING" - }, - { - "x": 96.44089761187293, - "y": -2188.0308464501322, - "rotation": 5.460038761270504, - "action": "NOTHING" - }, - { - "x": 93.60743308517006, - "y": -2190.435118488407, - "rotation": 5.463529419774493, - "action": "NOTHING" - }, - { - "x": 90.78658117523112, - "y": -2192.8500962795024, - "rotation": 5.467020078278481, - "action": "NOTHING" - }, - { - "x": 87.9783099428423, - "y": -2195.2757990564496, - "rotation": 5.47051073678247, - "action": "NOTHING" - }, - { - "x": 85.18258785993365, - "y": -2197.7122463255955, - "rotation": 5.474001395286458, - "action": "NOTHING" - }, - { - "x": 82.39938380841747, - "y": -2200.159457865762, - "rotation": 5.477492053790447, - "action": "NOTHING" - }, - { - "x": 79.62866707902975, - "y": -2202.617453727409, - "rotation": 5.480982712294435, - "action": "NOTHING" - }, - { - "x": 76.8704073701748, - "y": -2205.0862542318014, - "rotation": 5.4844733707984235, - "action": "NOTHING" - }, - { - "x": 74.1245747867729, - "y": -2207.565879970174, - "rotation": 5.487964029302412, - "action": "NOTHING" - }, - { "x": 71.39113983911108, "y": -2210.056351802904, "rotation": 5.4914546878064, "action": "NOTHING" }, - { - "x": 68.67007344169706, - "y": -2212.557690858682, - "rotation": 5.494945346310389, - "action": "NOTHING" - }, - { - "x": 65.96134691211617, - "y": -2215.0699185336875, - "rotation": 5.498436004814377, - "action": "NOTHING" - }, - { - "x": 63.26493196989137, - "y": -2217.5930564907662, - "rotation": 5.501926663318366, - "action": "NOTHING" - }, - { - "x": 60.58080073534637, - "y": -2220.1271266586086, - "rotation": 5.505417321822354, - "action": "NOTHING" - }, - { - "x": 57.90892572847178, - "y": -2222.672151230932, - "rotation": 5.5089079803263425, - "action": "NOTHING" - }, - { - "x": 55.2492798677943, - "y": -2225.228152665664, - "rotation": 5.512398638830331, - "action": "NOTHING" - }, - { - "x": 52.601836469248994, - "y": -2227.7951536841306, - "rotation": 5.515889297334319, - "action": "NOTHING" - }, - { - "x": 49.96656924505453, - "y": -2230.3731772702436, - "rotation": 5.519379955838308, - "action": "NOTHING" - }, - { - "x": 47.34345230259151, - "y": -2232.962246669691, - "rotation": 5.522870614342296, - "action": "NOTHING" - }, - { - "x": 44.732460143283774, - "y": -2235.5623853891316, - "rotation": 5.526361272846285, - "action": "CARVE_RIGHT" - }, - { - "x": 42.550618718038464, - "y": -2238.5597522477556, - "rotation": 5.580466479658109, - "action": "CARVE_RIGHT" - }, - { - "x": 40.53652942762651, - "y": -2241.713035132903, - "rotation": 5.634571686469934, - "action": "CARVE_RIGHT" - }, - { - "x": 38.68996615553763, - "y": -2245.022746712821, - "rotation": 5.688676893281758, - "action": "CARVE_RIGHT" - }, - { - "x": 37.01077583768037, - "y": -2248.4894657084087, - "rotation": 5.742782100093582, - "action": "CARVE_RIGHT" - }, - { - "x": 35.498878248601535, - "y": -2252.1138366987643, - "rotation": 5.796887306905407, - "action": "CARVE_RIGHT" - }, - { - "x": 34.15426578829272, - "y": -2255.896569927272, - "rotation": 5.850992513717231, - "action": "CARVE_RIGHT" - }, - { - "x": 32.97700326958229, - "y": -2259.838441108223, - "rotation": 5.905097720529056, - "action": "CARVE_RIGHT" - }, - { - "x": 31.967227706111395, - "y": -2263.9402912339665, - "rotation": 5.95920292734088, - "action": "CARVE_RIGHT" - }, - { - "x": 31.12514810089235, - "y": -2268.2030263825964, - "rotation": 6.013308134152704, - "action": "CARVE_RIGHT" - }, - { - "x": 30.451045235447964, - "y": -2272.627617526165, - "rotation": 6.067413340964529, - "action": "CARVE_RIGHT" - }, - { - "x": 29.94527145953018, - "y": -2277.2151003394274, - "rotation": 6.121518547776353, - "action": "CARVE_RIGHT" - }, - { - "x": 29.608250481416565, - "y": -2281.966575009112, - "rotation": 6.175623754588178, - "action": "CARVE_RIGHT" - }, - { - "x": 29.440477158783114, - "y": -2286.88320604372, - "rotation": 6.229728961400002, - "action": "CARVE_RIGHT" - }, - { - "x": 29.44251728318589, - "y": -2291.9624267199747, - "rotation": 0.0006488610322401556, - "action": "CARVE_RIGHT" - }, - { - "x": 29.61495721034666, - "y": -2296.8922593518205, - "rotation": 0.05475406784406437, - "action": "CARVE_RIGHT" - }, - { - "x": 29.95830873646385, - "y": -2301.671488263543, - "rotation": 0.10885927465588859, - "action": "CARVE_RIGHT" - }, - { - "x": 30.473009316880812, - "y": -2306.298968245492, - "rotation": 0.1629644814677128, - "action": "CARVE_RIGHT" - }, - { - "x": 31.159422284152818, - "y": -2310.7736243485774, - "rotation": 0.21706968827953702, - "action": "CARVE_RIGHT" - }, - { - "x": 32.01783706551434, - "y": -2315.0944516793274, - "rotation": 0.2711748950913612, - "action": "CARVE_RIGHT" - }, - { - "x": 33.04846939974829, - "y": -2319.26051519551, - "rotation": 0.32528010190318546, - "action": "CARVE_RIGHT" - }, - { - "x": 34.25146155345866, - "y": -2323.270949502313, - "rotation": 0.3793853087150097, - "action": "CARVE_RIGHT" - }, - { - "x": 35.626882536748276, - "y": -2327.124958649085, - "rotation": 0.43349051552683393, - "action": "CARVE_RIGHT" - }, - { - "x": 37.174728318303146, - "y": -2330.82181592663, - "rotation": 0.48759572233865817, - "action": "CARVE_RIGHT" - }, - { - "x": 38.89492203988501, - "y": -2334.3608636650624, - "rotation": 0.5417009291504824, - "action": "CARVE_RIGHT" - }, - { - "x": 40.78731423023364, - "y": -2337.741513032213, - "rotation": 0.5958061359623066, - "action": "CARVE_RIGHT" - }, - { - "x": 42.85168301838044, - "y": -2340.9632438325884, - "rotation": 0.6499113427741308, - "action": "CARVE_RIGHT" - }, - { - "x": 45.08773434637493, - "y": -2344.0256043068835, - "rotation": 0.7040165495859549, - "action": "CARVE_RIGHT" - }, - { - "x": 47.495102181425636, - "y": -2346.928210932041, - "rotation": 0.7581217563977791, - "action": "CARVE_RIGHT" - }, - { - "x": 50.07334872745696, - "y": -2349.670748221863, - "rotation": 0.8122269632096033, - "action": "CARVE_RIGHT" - }, - { - "x": 52.82196463608355, - "y": -2352.2529685281656, - "rotation": 0.8663321700214275, - "action": "CARVE_RIGHT" - }, - { - "x": 55.74036921700371, - "y": -2354.674691842483, - "rotation": 0.9204373768332517, - "action": "CARVE_RIGHT" - }, - { - "x": 58.82791064781339, - "y": -2356.935805598313, - "rotation": 0.9745425836450758, - "action": "CARVE_RIGHT" - }, - { - "x": 62.083866183242314, - "y": -2359.0362644739075, - "rotation": 1.0286477904569, - "action": "NOTHING" - }, - { - "x": 65.68652761581276, - "y": -2360.811740517825, - "rotation": 1.0251571319529114, - "action": "NOTHING" - }, - { - "x": 69.27418000950546, - "y": -2362.5972103432628, - "rotation": 1.0216664734489227, - "action": "NOTHING" - }, - { - "x": 72.8468807815779, - "y": -2364.3926760404092, - "rotation": 1.018175814944934, - "action": "NOTHING" - }, - { - "x": 76.40468686665098, - "y": -2366.1981400247782, - "rotation": 1.0146851564409454, - "action": "NOTHING" - }, - { - "x": 79.94765471806193, - "y": -2368.0136050362257, - "rotation": 1.0111944979369567, - "action": "NOTHING" - }, - { - "x": 83.4758403092136, - "y": -2369.839074137965, - "rotation": 1.007703839432968, - "action": "NOTHING" - }, - { - "x": 86.9892991349201, - "y": -2371.674550715589, - "rotation": 1.0042131809289794, - "action": "NOTHING" - }, - { - "x": 90.48808621274893, - "y": -2373.5200384760915, - "rotation": 1.0007225224249907, - "action": "NOTHING" - }, - { - "x": 93.9722560843594, - "y": -2375.3755414468947, - "rotation": 0.997231863921002, - "action": "NOTHING" - }, - { - "x": 97.44186281683763, - "y": -2377.241063974876, - "rotation": 0.9937412054170134, - "action": "NOTHING" - }, - { - "x": 100.89696000402779, - "y": -2379.1166107254003, - "rotation": 0.9902505469130247, - "action": "NOTHING" - }, - { - "x": 104.33760076785998, - "y": -2381.0021866813536, - "rotation": 0.9867598884090361, - "action": "CARVE_LEFT" - }, - { - "x": 107.26246920192868, - "y": -2383.362003954907, - "rotation": 0.9326546815972119, - "action": "CARVE_LEFT" - }, - { - "x": 110.01624927998297, - "y": -2385.8776413682876, - "rotation": 0.8785494747853877, - "action": "CARVE_LEFT" - }, - { - "x": 112.59948669287688, - "y": -2388.5493226945305, - "rotation": 0.8244442679735635, - "action": "CARVE_LEFT" - }, - { - "x": 115.01265314190522, - "y": -2391.3773386116272, - "rotation": 0.7703390611617393, - "action": "CARVE_LEFT" - }, - { - "x": 117.25614655516085, - "y": -2394.362046505726, - "rotation": 0.7162338543499152, - "action": "CARVE_LEFT" - }, - { - "x": 119.33029130329804, - "y": -2397.5038702748707, - "rotation": 0.662128647538091, - "action": "CARVE_LEFT" - }, - { - "x": 121.23533841470355, - "y": -2400.8033001332806, - "rotation": 0.6080234407262668, - "action": "CARVE_LEFT" - }, - { - "x": 122.97146579007699, - "y": -2404.260892416172, - "rotation": 0.5539182339144426, - "action": "CARVE_LEFT" - }, - { - "x": 124.53877841642195, - "y": -2407.877269385114, - "rotation": 0.4998130271026184, - "action": "CARVE_LEFT" - }, - { - "x": 125.93730858044958, - "y": -2411.6531190339238, - "rotation": 0.44570782029079414, - "action": "CARVE_LEFT" - }, - { - "x": 127.16701608139603, - "y": -2415.5891948950957, - "rotation": 0.3916026134789699, - "action": "CARVE_LEFT" - }, - { - "x": 128.2277884432554, - "y": -2419.686315846763, - "rotation": 0.33749740666714567, - "action": "CARVE_LEFT" - }, - { - "x": 129.11944112642976, - "y": -2423.9453659201936, - "rotation": 0.28339219985532144, - "action": "CARVE_LEFT" - }, - { - "x": 129.84171773879754, - "y": -2428.3672941078144, - "rotation": 0.22928699304349723, - "action": "CARVE_LEFT" - }, - { - "x": 130.3942902462022, - "y": -2432.953114171767, - "rotation": 0.17518178623167302, - "action": "CARVE_LEFT" - }, - { - "x": 130.7767591823624, - "y": -2437.7039044529906, - "rotation": 0.12107657941984881, - "action": "CARVE_LEFT" - }, - { - "x": 130.98865385820548, - "y": -2442.6208076808307, - "rotation": 0.0669713726080246, - "action": "CARVE_LEFT" - }, - { - "x": 131.0294325706253, - "y": -2447.705030783174, - "rotation": 0.01286616579620039, - "action": "CARVE_LEFT" - }, - { - "x": 130.89851094864648, - "y": -2452.7142685445788, - "rotation": 6.241946266163962, - "action": "CARVE_LEFT" - }, - { - "x": 130.59536492659578, - "y": -2457.5717775949115, - "rotation": 6.187841059352138, - "action": "CARVE_LEFT" - }, - { - "x": 130.11954481331853, - "y": -2462.276401195823, - "rotation": 6.133735852540314, - "action": "CARVE_LEFT" - }, - { - "x": 129.47067507402292, - "y": -2466.8270529010492, - "rotation": 6.079630645728489, - "action": "CARVE_LEFT" - }, - { - "x": 128.64845411272432, - "y": -2471.222716351389, - "rotation": 6.025525438916665, - "action": "CARVE_LEFT" - }, - { - "x": 127.65265405528764, - "y": -2475.462445070241, - "rotation": 5.97142023210484, - "action": "CARVE_LEFT" - }, - { - "x": 126.48312053306667, - "y": -2479.545362259701, - "rotation": 5.917315025293016, - "action": "CARVE_LEFT" - }, - { - "x": 125.13977246713851, - "y": -2483.4706605972215, - "rotation": 5.863209818481192, - "action": "CARVE_LEFT" - }, - { - "x": 123.62260185313164, - "y": -2487.237602032825, - "rotation": 5.809104611669367, - "action": "CARVE_LEFT" - }, - { - "x": 121.93167354664594, - "y": -2490.845517586876, - "rotation": 5.754999404857543, - "action": "CARVE_LEFT" - }, - { - "x": 120.06712504926327, - "y": -2494.293807148405, - "rotation": 5.700894198045718, - "action": "CARVE_LEFT" - }, - { - "x": 118.02916629514694, - "y": -2497.5819392739872, - "rotation": 5.646788991233894, - "action": "CARVE_LEFT" - }, - { - "x": 115.81807943822848, - "y": -2500.709450987173, - "rotation": 5.59268378442207, - "action": "CARVE_LEFT" - }, - { - "x": 113.43421863998032, - "y": -2503.6759475784684, - "rotation": 5.538578577610245, - "action": "CARVE_LEFT" - }, - { - "x": 110.8780098577726, - "y": -2506.481102405863, - "rotation": 5.484473370798421, - "action": "CARVE_LEFT" - }, - { - "x": 108.14995063381282, - "y": -2509.1246566959067, - "rotation": 5.430368163986596, - "action": "CARVE_LEFT" - }, - { - "x": 105.25060988466655, - "y": -2511.606419345331, - "rotation": 5.376262957174772, - "action": "CARVE_LEFT" - }, - { - "x": 102.18062769135784, - "y": -2513.9262667232165, - "rotation": 5.322157750362948, - "action": "CARVE_LEFT" - }, - { - "x": 98.94071509004779, - "y": -2516.0841424737014, - "rotation": 5.268052543551123, - "action": "CARVE_LEFT" - }, - { - "x": 95.53165386328952, - "y": -2518.080057319232, - "rotation": 5.213947336739299, - "action": "CARVE_LEFT" - }, - { - "x": 91.95429633185842, - "y": -2519.914088864354, - "rotation": 5.159842129927474, - "action": "CARVE_LEFT" - }, - { - "x": 88.20956514715576, - "y": -2521.5863814000427, - "rotation": 5.10573692311565, - "action": "CARVE_LEFT" - }, - { - "x": 84.29845308418439, - "y": -2523.097145708568, - "rotation": 5.051631716303826, - "action": "CARVE_LEFT" - }, - { - "x": 80.22202283509498, - "y": -2524.446658868899, - "rotation": 4.997526509492001, - "action": "CARVE_LEFT" - }, - { - "x": 75.98140680330116, - "y": -2525.635264062639, - "rotation": 4.943421302680177, - "action": "CARVE_LEFT" - }, - { - "x": 71.57780689816227, - "y": -2526.6633703804987, - "rotation": 4.889316095868352, - "action": "CARVE_LEFT" - }, - { "x": 67.012494330232, "y": -2527.531452629293, "rotation": 4.835210889056528, "action": "NOTHING" }, - { "x": 61.961608983153, "y": -2527.940409635849, "rotation": 4.838701547560516, "action": "NOTHING" }, - { - "x": 56.932295121684355, - "y": -2528.3598870355554, - "rotation": 4.842192206064505, - "action": "NOTHING" - }, - { - "x": 51.92444069241777, - "y": -2528.7898485389737, - "rotation": 4.845682864568493, - "action": "NOTHING" - }, - { - "x": 46.937934274019135, - "y": -2529.2302582934985, - "rotation": 4.849173523072482, - "action": "NOTHING" - }, - { - "x": 41.97266507548257, - "y": -2529.6810808820683, - "rotation": 4.85266418157647, - "action": "NOTHING" - }, - { - "x": 37.02852293438905, - "y": -2530.1422813218783, - "rotation": 4.856154840080459, - "action": "NOTHING" - }, - { - "x": 32.10539831516967, - "y": -2530.613825063098, - "rotation": 4.859645498584447, - "action": "NOTHING" - }, - { - "x": 27.203182307373456, - "y": -2531.095677987591, - "rotation": 4.8631361570884355, - "action": "NOTHING" - }, - { - "x": 22.321766623939816, - "y": -2531.58780640764, - "rotation": 4.866626815592424, - "action": "NOTHING" - }, - { - "x": 17.46104359947556, - "y": -2532.090177064674, - "rotation": 4.870117474096412, - "action": "CARVE_RIGHT" - }, - { - "x": 13.261357543562323, - "y": -2533.1957443085785, - "rotation": 4.924222680908237, - "action": "CARVE_RIGHT" - }, - { - "x": 9.235442093318461, - "y": -2534.454078438759, - "rotation": 4.978327887720061, - "action": "CARVE_RIGHT" - }, - { - "x": 5.3821790657992405, - "y": -2535.8648853239806, - "rotation": 5.032433094531886, - "action": "CARVE_RIGHT" - }, - { - "x": 1.7005259340243928, - "y": -2537.4279392541357, - "rotation": 5.08653830134371, - "action": "CARVE_RIGHT" - }, - { - "x": -1.8104843939404467, - "y": -2539.143082739278, - "rotation": 5.140643508155534, - "action": "CARVE_RIGHT" - }, - { - "x": -5.151743795296427, - "y": -2541.010226309207, - "rotation": 5.194748714967359, - "action": "CARVE_RIGHT" - }, - { - "x": -8.324069152219906, - "y": -2543.0293483136097, - "rotation": 5.248853921779183, - "action": "CARVE_RIGHT" - }, - { - "x": -11.328202570968198, - "y": -2545.2004947227447, - "rotation": 5.302959128591008, - "action": "CARVE_RIGHT" - }, - { - "x": -14.164811600384215, - "y": -2547.523778928682, - "rotation": 5.357064335402832, - "action": "CARVE_RIGHT" - }, - { - "x": -16.834489449801627, - "y": -2549.999381547086, - "rotation": 5.411169542214656, - "action": "CARVE_RIGHT" - }, - { - "x": -19.33775520635208, - "y": -2552.6275502195463, - "rotation": 5.465274749026481, - "action": "CARVE_RIGHT" - }, - { - "x": -21.67505405167608, - "y": -2555.408599416451, - "rotation": 5.519379955838305, - "action": "CARVE_RIGHT" - }, - { - "x": -23.846757478039088, - "y": -2558.3429102404048, - "rotation": 5.57348516265013, - "action": "CARVE_RIGHT" - }, - { - "x": -25.853163503854397, - "y": -2561.430930230188, - "rotation": 5.627590369461954, - "action": "CARVE_RIGHT" - }, - { - "x": -27.694496888614403, - "y": -2564.673173165255, - "rotation": 5.681695576273778, - "action": "CARVE_RIGHT" - }, - { - "x": -29.370909347231752, - "y": -2568.070218870772, - "rotation": 5.735800783085603, - "action": "CARVE_RIGHT" - }, - { - "x": -30.88247976379198, - "y": -2571.6227130231923, - "rotation": 5.789905989897427, - "action": "CARVE_RIGHT" - }, - { - "x": -32.22921440471918, - "y": -2575.3313669563663, - "rotation": 5.844011196709252, - "action": "CARVE_RIGHT" - }, - { - "x": -33.41104713135621, - "y": -2579.196957468187, - "rotation": 5.898116403521076, - "action": "CARVE_RIGHT" - }, - { - "x": -34.42783961196107, - "y": -2583.2203266277684, - "rotation": 5.9522216103329, - "action": "CARVE_RIGHT" - }, - { - "x": -35.279381533120876, - "y": -2587.4023815831533, - "rotation": 6.006326817144725, - "action": "CARVE_RIGHT" - }, - { - "x": -35.96539081058509, - "y": -2591.7440943695556, - "rotation": 6.060432023956549, - "action": "CARVE_RIGHT" - }, - { - "x": -36.485513799519424, - "y": -2596.246501718127, - "rotation": 6.114537230768374, - "action": "CARVE_RIGHT" - }, - { - "x": -36.839325504182014, - "y": -2600.9107048652536, - "rotation": 6.168642437580198, - "action": "CARVE_RIGHT" - }, - { - "x": -37.02632978702338, - "y": -2605.7378693623773, - "rotation": 6.222747644392022, - "action": "CARVE_RIGHT" - }, - { - "x": -37.04595957721167, - "y": -2610.729224886343, - "rotation": 6.276852851203847, - "action": "CARVE_RIGHT" - }, - { - "x": -36.89761483895988, - "y": -2615.6100402594475, - "rotation": 0.04777275083608501, - "action": "CARVE_RIGHT" - }, - { - "x": -36.58076381235899, - "y": -2620.3427293059744, - "rotation": 0.10187795764790922, - "action": "CARVE_RIGHT" - }, - { - "x": -36.094949140707925, - "y": -2624.926127838532, - "rotation": 0.15598316445973343, - "action": "CARVE_RIGHT" - }, - { - "x": -35.43978765226887, - "y": -2629.3591419890686, - "rotation": 0.21008837127155763, - "action": "CARVE_RIGHT" - }, - { - "x": -34.61497014262267, - "y": -2633.6407480037656, - "rotation": 0.26419357808338184, - "action": "CARVE_RIGHT" - }, - { - "x": -33.6202611576229, - "y": -2637.7699920384907, - "rotation": 0.3182987848952061, - "action": "CARVE_RIGHT" - }, - { - "x": -32.455498776946875, - "y": -2641.745989954815, - "rotation": 0.3724039917070303, - "action": "CARVE_RIGHT" - }, - { - "x": -31.120594398242115, - "y": -2645.567927116584, - "rotation": 0.42650919851885455, - "action": "CARVE_RIGHT" - }, - { - "x": -29.615532521866637, - "y": -2649.2350581870533, - "rotation": 0.4806144053306788, - "action": "CARVE_RIGHT" - }, - { - "x": -27.94037053622155, - "y": -2652.7467069265736, - "rotation": 0.534719612142503, - "action": "CARVE_RIGHT" - }, - { - "x": -26.095238503674366, - "y": -2656.1022659908353, - "rotation": 0.5888248189543271, - "action": "CARVE_RIGHT" - }, - { - "x": -24.080338947071468, - "y": -2659.3011967296643, - "rotation": 0.6429300257661513, - "action": "CARVE_RIGHT" - }, - { - "x": -21.895946636838175, - "y": -2662.343028986369, - "rotation": 0.6970352325779755, - "action": "CARVE_RIGHT" - }, - { - "x": -19.542408378664877, - "y": -2665.22736089764, - "rotation": 0.7511404393897997, - "action": "CARVE_RIGHT" - }, - { - "x": -17.02014280177764, - "y": -2667.953858693998, - "rotation": 0.8052456462016239, - "action": "CARVE_RIGHT" - }, - { - "x": -14.329640147791814, - "y": -2670.5222565007857, - "rotation": 0.859350853013448, - "action": "NOTHING" - }, - { - "x": -11.353261510188233, - "y": -2672.8243811860466, - "rotation": 0.8558601945094594, - "action": "NOTHING" - }, - { - "x": -8.38991470017594, - "y": -2675.137049369208, - "rotation": 0.8523695360054707, - "action": "NOTHING" - }, - { - "x": -5.439563214915577, - "y": -2677.4602772686317, - "rotation": 0.848878877501482, - "action": "NOTHING" - }, - { - "x": -2.502170975651427, - "y": -2679.7940813853106, - "rotation": 0.8453882189974934, - "action": "NOTHING" - }, - { - "x": 0.42229767348507563, - "y": -2682.138478502005, - "rotation": 0.8418975604935047, - "action": "NOTHING" - }, - { - "x": 3.3338779666686302, - "y": -2684.493485682377, - "rotation": 0.8384069019895161, - "action": "NOTHING" - }, - { - "x": 6.232604717570148, - "y": -2686.8591202701314, - "rotation": 0.8349162434855274, - "action": "NOTHING" - }, - { - "x": 9.118512320543635, - "y": -2689.235399888156, - "rotation": 0.8314255849815387, - "action": "NOTHING" - }, - { - "x": 11.991634751809888, - "y": -2691.622342437666, - "rotation": 0.8279349264775501, - "action": "NOTHING" - }, - { - "x": 14.852005570637015, - "y": -2694.019966097351, - "rotation": 0.8244442679735614, - "action": "NOTHING" - }, - { - "x": 17.699657920517772, - "y": -2696.428289322523, - "rotation": 0.8209536094695727, - "action": "NOTHING" - }, - { - "x": 20.534624530343763, - "y": -2698.8473308442676, - "rotation": 0.8174629509655841, - "action": "NOTHING" - }, - { - "x": 23.35693771557646, - "y": -2701.277109668598, - "rotation": 0.8139722924615954, - "action": "NOTHING" - }, - { - "x": 26.16662937941509, - "y": -2703.7176450756097, - "rotation": 0.8104816339576068, - "action": "NOTHING" - }, - { - "x": 28.96373101396139, - "y": -2706.168956618641, - "rotation": 0.8069909754536181, - "action": "NOTHING" - }, - { - "x": 31.7482737013812, - "y": -2708.631064123432, - "rotation": 0.8035003169496294, - "action": "NOTHING" - }, - { - "x": 34.520288115062996, - "y": -2711.103987687289, - "rotation": 0.8000096584456408, - "action": "NOTHING" - }, - { - "x": 37.27980452077323, - "y": -2713.587747678248, - "rotation": 0.7965189999416521, - "action": "CARVE_LEFT" - }, - { - "x": 39.5943414270887, - "y": -2716.4828148737993, - "rotation": 0.7424137931298279, - "action": "CARVE_LEFT" - }, - { - "x": 41.740206822436335, - "y": -2719.5340734411225, - "rotation": 0.6883085863180037, - "action": "CARVE_LEFT" - }, - { - "x": 43.71768362014141, - "y": -2722.741984725865, - "rotation": 0.6342033795061796, - "action": "CARVE_LEFT" - }, - { - "x": 45.52698151383006, - "y": -2726.107076278428, - "rotation": 0.5800981726943554, - "action": "CARVE_LEFT" - }, - { - "x": 47.16823719167101, - "y": -2729.6299416590914, - "rotation": 0.5259929658825312, - "action": "CARVE_LEFT" - }, - { - "x": 48.64151455002898, - "y": -2733.311240243684, - "rotation": 0.47188775907070696, - "action": "CARVE_LEFT" - }, - { - "x": 49.94680490653135, - "y": -2737.151697029783, - "rotation": 0.4177825522588827, - "action": "CARVE_LEFT" - }, - { - "x": 51.0840272125497, - "y": -2741.1521024434487, - "rotation": 0.3636773454470585, - "action": "CARVE_LEFT" - }, - { - "x": 52.05302826509765, - "y": -2745.313312146495, - "rotation": 0.30957213863523425, - "action": "CARVE_LEFT" - }, - { - "x": 52.85358291814665, - "y": -2749.6362468442862, - "rotation": 0.25546693182341, - "action": "CARVE_LEFT" - }, - { - "x": 53.48539429336117, - "y": -2754.1218920940705, - "rotation": 0.2013617250115858, - "action": "CARVE_LEFT" - }, - { - "x": 53.9480939902549, - "y": -2758.7712981138347, - "rotation": 0.1472565181997616, - "action": "CARVE_LEFT" - }, - { - "x": 54.241242295769396, - "y": -2763.585579591691, - "rotation": 0.09315131138793739, - "action": "CARVE_LEFT" - }, - { - "x": 54.364328393276814, - "y": -2768.565915495788, - "rotation": 0.039046104576113176, - "action": "CARVE_LEFT" - }, - { - "x": 54.316774323104305, - "y": -2773.6250796669365, - "rotation": 6.268126204943875, - "action": "CARVE_LEFT" - }, - { - "x": 54.0980165249244, - "y": -2778.533870178429, - "rotation": 6.21402099813205, - "action": "CARVE_LEFT" - }, - { - "x": 53.707565930014326, - "y": -2783.2910929292384, - "rotation": 6.159915791320226, - "action": "NOTHING" - }, - { - "x": 53.28534678999668, - "y": -2788.027037782762, - "rotation": 6.1634064498242145, - "action": "NOTHING" - }, - { - "x": 52.87477926411246, - "y": -2792.781937354486, - "rotation": 6.166897108328203, - "action": "NOTHING" - }, - { - "x": 52.475900324179186, - "y": -2797.555854578632, - "rotation": 6.170387766832191, - "action": "NOTHING" - }, - { - "x": 52.088747153407354, - "y": -2802.348852522012, - "rotation": 6.17387842533618, - "action": "NOTHING" - }, - { - "x": 51.713357145784194, - "y": -2807.1609943835983, - "rotation": 6.177369083840168, - "action": "NOTHING" - }, - { - "x": 51.34976790545907, - "y": -2811.992343494094, - "rotation": 6.180859742344157, - "action": "NOTHING" - }, - { - "x": 50.99801724613058, - "y": -2816.8429633155015, - "rotation": 6.184350400848145, - "action": "NOTHING" - }, - { - "x": 50.65814319043535, - "y": -2821.712917440697, - "rotation": 6.187841059352134, - "action": "NOTHING" - }, - { - "x": 50.33018396933846, - "y": -2826.6022695930014, - "rotation": 6.191331717856122, - "action": "NOTHING" - }, - { - "x": 50.014178021525595, - "y": -2831.5110836257572, - "rotation": 6.1948223763601105, - "action": "NOTHING" - }, - { - "x": 49.710163992796836, - "y": -2836.439423521903, - "rotation": 6.198313034864099, - "action": "NOTHING" - }, - { - "x": 49.41818073546209, - "y": -2841.3873533935493, - "rotation": 6.201803693368087, - "action": "NOTHING" - }, - { - "x": 49.138267307738225, - "y": -2846.3549374815602, - "rotation": 6.205294351872076, - "action": "NOTHING" - }, - { - "x": 48.87046297314782, - "y": -2851.3422401551293, - "rotation": 6.208785010376064, - "action": "NOTHING" - }, - { - "x": 48.614807199919596, - "y": -2856.3493259113625, - "rotation": 6.212275668880053, - "action": "NOTHING" - }, - { - "x": 48.37133966039045, - "y": -2861.3762593748597, - "rotation": 6.215766327384041, - "action": "NOTHING" - }, - { - "x": 48.14010023040915, - "y": -2866.423105297297, - "rotation": 6.2192569858880296, - "action": "NOTHING" - }, - { - "x": 47.92112898874172, - "y": -2871.489928557012, - "rotation": 6.222747644392018, - "action": "NOTHING" - }, - { - "x": 47.714466216478336, - "y": -2876.5767941585887, - "rotation": 6.226238302896006, - "action": "NOTHING" - }, - { - "x": 47.52015239644196, - "y": -2881.6837672324455, - "rotation": 6.229728961399995, - "action": "NOTHING" - }, - { - "x": 47.338228212598544, - "y": -2886.810913034422, - "rotation": 6.233219619903983, - "action": "NOTHING" - }, - { - "x": 47.168734549468866, - "y": -2891.958296945368, - "rotation": 6.236710278407972, - "action": "NOTHING" - }, - { - "x": 47.01171249154198, - "y": -2897.1259844707356, - "rotation": 6.24020093691196, - "action": "NOTHING" - }, - { - "x": 46.867203322690266, - "y": -2902.314041240169, - "rotation": 6.243691595415949, - "action": "NOTHING" - }, - { - "x": 46.7352485255861, - "y": -2907.5225330070984, - "rotation": 6.247182253919937, - "action": "NOTHING" - }, - { - "x": 46.61588978112013, - "y": -2912.7515256483334, - "rotation": 6.2506729124239255, - "action": "NOTHING" - }, - { - "x": 46.509168967821125, - "y": -2918.0010851636584, - "rotation": 6.254163570927914, - "action": "NOTHING" - }, - { - "x": 46.41512816127744, - "y": -2923.271277675429, - "rotation": 6.257654229431902, - "action": "NOTHING" - }, - { - "x": 46.33380963356004, - "y": -2928.5621694281695, - "rotation": 6.261144887935891, - "action": "NOTHING" - }, - { - "x": 46.26525585264717, - "y": -2933.8738267881718, - "rotation": 6.264635546439879, - "action": "NOTHING" - }, - { - "x": 46.209509481850546, - "y": -2939.206316243095, - "rotation": 6.268126204943868, - "action": "NOTHING" - }, - { - "x": 46.16661337924313, - "y": -2944.5597044015667, - "rotation": 6.271616863447856, - "action": "NOTHING" - }, - { - "x": 46.13661059708851, - "y": -2949.934057992785, - "rotation": 6.275107521951845, - "action": "NOTHING" - }, - { - "x": 46.119544381271815, - "y": -2955.3294438661214, - "rotation": 6.278598180455833, - "action": "NOTHING" - }, - { - "x": 46.11545817073222, - "y": -2960.7459289907274, - "rotation": 6.2820888389598215, - "action": "CARVE_RIGHT" - }, - { - "x": 46.293502656220085, - "y": -2966.00900837286, - "rotation": 0.05300873859205968, - "action": "CARVE_RIGHT" - }, - { - "x": 46.65373351962749, - "y": -2971.1103231985085, - "rotation": 0.10711394540388389, - "action": "CARVE_RIGHT" - }, - { - "x": 47.19654088065319, - "y": -2976.04877367402, - "rotation": 0.1612191522157081, - "action": "CARVE_RIGHT" - }, - { - "x": 47.92224089335203, - "y": -2980.823330117309, - "rotation": 0.2153243590275323, - "action": "CARVE_RIGHT" - }, - { - "x": 48.83107596313995, - "y": -2985.433032753348, - "rotation": 0.2694295658393565, - "action": "CARVE_RIGHT" - }, - { - "x": 49.92321496320209, - "y": -2989.8769915102253, - "rotation": 0.32353477265118075, - "action": "CARVE_RIGHT" - }, - { - "x": 51.1987534503057, - "y": -2994.1543858157584, - "rotation": 0.377639979463005, - "action": "CARVE_RIGHT" - }, - { - "x": 52.65771388001937, - "y": -2998.2644643946664, - "rotation": 0.4317451862748292, - "action": "CARVE_RIGHT" - }, - { - "x": 54.3000458213401, - "y": -3002.206545066297, - "rotation": 0.48585039308665345, - "action": "CARVE_RIGHT" - }, - { - "x": 56.12562617072986, - "y": -3005.98001454291, - "rotation": 0.5399555998984776, - "action": "CARVE_RIGHT" - }, - { - "x": 58.13425936556316, - "y": -3009.584328228511, - "rotation": 0.5940608067103018, - "action": "CARVE_RIGHT" - }, - { - "x": 60.32567759698718, - "y": -3013.0190100182417, - "rotation": 0.648166013522126, - "action": "NOTHING" - }, - { - "x": 62.74763371150399, - "y": -3016.2405918304376, - "rotation": 0.6446753550181373, - "action": "NOTHING" - }, - { - "x": 65.1566552842639, - "y": -3019.4745569679253, - "rotation": 0.6411846965141487, - "action": "NOTHING" - }, - { - "x": 67.55276043049088, - "y": -3022.7209344288412, - "rotation": 0.63769403801016, - "action": "NOTHING" - }, - { - "x": 69.93596689194545, - "y": -3025.979753456424, - "rotation": 0.6342033795061713, - "action": "NOTHING" - }, - { - "x": 72.30629203798756, - "y": -3029.2510435382515, - "rotation": 0.6307127210021827, - "action": "NOTHING" - }, - { - "x": 74.66375286663634, - "y": -3032.5348344054805, - "rotation": 0.627222062498194, - "action": "NOTHING" - }, - { - "x": 77.00836600562727, - "y": -3035.83115603209, - "rotation": 0.6237314039942053, - "action": "NOTHING" - }, - { - "x": 79.34014771346625, - "y": -3039.140038634123, - "rotation": 0.6202407454902167, - "action": "NOTHING" - }, - { - "x": 81.659113880481, - "y": -3042.4615126689346, - "rotation": 0.616750086986228, - "action": "NOTHING" - }, - { - "x": 83.96528002986952, - "y": -3045.795608834439, - "rotation": 0.6132594284822394, - "action": "NOTHING" - }, - { - "x": 86.25866131874577, - "y": -3049.142358068361, - "rotation": 0.6097687699782507, - "action": "NOTHING" - }, - { - "x": 88.53927253918248, - "y": -3052.501791547487, - "rotation": 0.606278111474262, - "action": "NOTHING" - }, - { - "x": 90.8071281192512, - "y": -3055.8739406869213, - "rotation": 0.6027874529702734, - "action": "NOTHING" - }, - { - "x": 93.06224212405952, - "y": -3059.258837139342, - "rotation": 0.5992967944662847, - "action": "CARVE_LEFT" - }, - { - "x": 94.90893737238314, - "y": -3063.0228699094478, - "rotation": 0.5451915876544605, - "action": "CARVE_LEFT" - }, - { - "x": 96.57287941837988, - "y": -3066.957810607623, - "rotation": 0.4910863808426363, - "action": "CARVE_LEFT" - }, - { - "x": 98.05414954961464, - "y": -3071.064303578537, - "rotation": 0.43698117403081205, - "action": "CARVE_LEFT" - }, - { - "x": 99.3527564008492, - "y": -3075.34305885483, - "rotation": 0.3828759672189878, - "action": "CARVE_LEFT" - }, - { - "x": 100.46863616676562, - "y": -3079.7948519636275, - "rotation": 0.3287707604071636, - "action": "CARVE_LEFT" - }, - { - "x": 101.40165281410499, - "y": -3084.4205237335937, - "rotation": 0.27466555359533934, - "action": "CARVE_LEFT" - }, - { - "x": 102.15159829322356, - "y": -3089.2209801025115, - "rotation": 0.22056034678351513, - "action": "CARVE_LEFT" - }, - { - "x": 102.71819274906753, - "y": -3094.197191925396, - "rotation": 0.16645513997169092, - "action": "CARVE_LEFT" - }, - { - "x": 103.10108473156816, - "y": -3099.350194783138, - "rotation": 0.11234993315986672, - "action": "CARVE_LEFT" - }, - { - "x": 103.29985140545867, - "y": -3104.6810887916713, - "rotation": 0.0582447263480425, - "action": "CARVE_LEFT" - }, - { - "x": 103.31399875951436, - "y": -3110.191038411672, - "rotation": 0.004139519536218286, - "action": "CARVE_LEFT" - }, - { - "x": 103.14300312182569, - "y": -3115.5632394395375, - "rotation": 6.233219619903981, - "action": "CARVE_LEFT" - }, - { - "x": 102.78641118603574, - "y": -3120.77033355116, - "rotation": 6.179114413092156, - "action": "CARVE_LEFT" - }, - { - "x": 102.2438437912141, - "y": -3125.811231506953, - "rotation": 6.125009206280332, - "action": "CARVE_LEFT" - }, - { - "x": 101.51499570436668, - "y": -3130.684914143085, - "rotation": 6.0709039994685075, - "action": "CARVE_LEFT" - }, - { - "x": 100.59963540354354, - "y": -3135.390432167081, - "rotation": 6.016798792656683, - "action": "CARVE_LEFT" - }, - { - "x": 99.49760486154341, - "y": -3139.9269059539847, - "rotation": 5.962693585844859, - "action": "CARVE_LEFT" - }, - { - "x": 98.20881933021292, - "y": -3144.2935253430765, - "rotation": 5.908588379033034, - "action": "CARVE_LEFT" - }, - { - "x": 96.73326712533942, - "y": -3148.4895494351526, - "rotation": 5.85448317222121, - "action": "CARVE_LEFT" - }, - { - "x": 95.07100941213548, - "y": -3152.5143063903583, - "rotation": 5.800377965409385, - "action": "CARVE_LEFT" - }, - { - "x": 93.22217999131362, - "y": -3156.3671932265743, - "rotation": 5.746272758597561, - "action": "CARVE_LEFT" - }, - { - "x": 91.18698508574975, - "y": -3160.0476756183575, - "rotation": 5.692167551785737, - "action": "CARVE_LEFT" - }, - { - "x": 88.96570312773379, - "y": -3163.555287696434, - "rotation": 5.638062344973912, - "action": "CARVE_LEFT" - }, - { - "x": 86.55868454680574, - "y": -3166.8896318477387, - "rotation": 5.583957138162088, - "action": "CARVE_LEFT" - }, - { - "x": 83.96635155817589, - "y": -3170.0503785160067, - "rotation": 5.529851931350263, - "action": "CARVE_LEFT" - }, - { - "x": 81.18919795172748, - "y": -3173.03726600291, - "rotation": 5.475746724538439, - "action": "CARVE_LEFT" - }, - { - "x": 78.22778888160026, - "y": -3175.8501002697412, - "rotation": 5.421641517726615, - "action": "CARVE_LEFT" - }, - { - "x": 75.08276065635353, - "y": -3178.488754739639, - "rotation": 5.36753631091479, - "action": "CARVE_LEFT" - }, - { - "x": 71.754820529707, - "y": -3180.9531701003584, - "rotation": 5.313431104102966, - "action": "CARVE_LEFT" - }, - { - "x": 68.24474649185807, - "y": -3183.243354107583, - "rotation": 5.259325897291141, - "action": "CARVE_LEFT" - }, - { - "x": 64.55338706137385, - "y": -3185.359381388774, - "rotation": 5.205220690479317, - "action": "NOTHING" - }, - { - "x": 60.46925028916786, - "y": -3187.106186591553, - "rotation": 5.2087113489833055, - "action": "NOTHING" - }, - { - "x": 56.40241729735323, - "y": -3188.8635333118636, - "rotation": 5.212202007487294, - "action": "NOTHING" - }, - { - "x": 52.35281867898515, - "y": -3190.6314160077864, - "rotation": 5.215692665991282, - "action": "NOTHING" - }, - { - "x": 48.32038554444107, - "y": -3192.4098294872106, - "rotation": 5.219183324495271, - "action": "NOTHING" - }, - { - "x": 44.305049519973224, - "y": -3194.19876890678, - "rotation": 5.222673982999259, - "action": "NOTHING" - }, - { - "x": 40.30674274626498, - "y": -3195.998229770839, - "rotation": 5.226164641503248, - "action": "NOTHING" - }, - { - "x": 36.325397876991104, - "y": -3197.8082079303817, - "rotation": 5.229655300007236, - "action": "NOTHING" - }, - { - "x": 32.36094807738182, - "y": -3199.628699582007, - "rotation": 5.2331459585112245, - "action": "NOTHING" - }, - { - "x": 28.413327022790735, - "y": -3201.4597012668714, - "rotation": 5.236636617015213, - "action": "NOTHING" - }, - { - "x": 24.482468897266557, - "y": -3203.30120986965, - "rotation": 5.240127275519201, - "action": "NOTHING" - }, - { - "x": 20.56830839212866, - "y": -3205.1532226174963, - "rotation": 5.24361793402319, - "action": "NOTHING" - }, - { - "x": 16.670780704546438, - "y": -3207.015737079009, - "rotation": 5.247108592527178, - "action": "NOTHING" - }, - { - "x": 12.789821536122465, - "y": -3208.888751163196, - "rotation": 5.250599251031167, - "action": "NOTHING" - }, - { - "x": 8.925367091479432, - "y": -3210.772263118448, - "rotation": 5.254089909535155, - "action": "NOTHING" - }, - { - "x": 5.077354076850854, - "y": -3212.666271531509, - "rotation": 5.257580568039144, - "action": "NOTHING" - }, - { - "x": 1.2457196986755683, - "y": -3214.570775326455, - "rotation": 5.261071226543132, - "action": "NOTHING" - }, - { - "x": -2.569598337804042, - "y": -3216.4857737636703, - "rotation": 5.2645618850471205, - "action": "NOTHING" - }, - { - "x": -6.368661829940053, - "y": -3218.41126643883, - "rotation": 5.268052543551109, - "action": "NOTHING" - }, - { - "x": -10.151532079073284, - "y": -3220.3472532818855, - "rotation": 5.271543202055097, - "action": "NOTHING" - }, - { - "x": -13.918269891923844, - "y": -3222.2937345560513, - "rotation": 5.275033860559086, - "action": "CARVE_RIGHT" - }, - { - "x": -17.12379343519028, - "y": -3224.7554487704874, - "rotation": 5.32913906737091, - "action": "CARVE_RIGHT" - }, - { - "x": -20.145479988679597, - "y": -3227.383705553083, - "rotation": 5.383244274182735, - "action": "CARVE_RIGHT" - }, - { - "x": -22.98395858079369, - "y": -3230.178653892573, - "rotation": 5.437349480994559, - "action": "CARVE_RIGHT" - }, - { - "x": -25.63978398752232, - "y": -3233.140509920796, - "rotation": 5.4914546878063835, - "action": "CARVE_RIGHT" - }, - { - "x": -28.113436949553552, - "y": -3236.2695567152073, - "rotation": 5.545559894618208, - "action": "CARVE_RIGHT" - }, - { - "x": -30.405324388788276, - "y": -3239.5661441019333, - "rotation": 5.599665101430032, - "action": "CARVE_RIGHT" - }, - { - "x": -32.51577962426042, - "y": -3243.0306884593715, - "rotation": 5.653770308241857, - "action": "CARVE_RIGHT" - }, - { - "x": -34.44506258746436, - "y": -3246.663672522329, - "rotation": 5.707875515053681, - "action": "CARVE_RIGHT" - }, - { - "x": -36.1933600370912, - "y": -3250.4656451867013, - "rotation": 5.7619807218655055, - "action": "CARVE_RIGHT" - }, - { - "x": -37.76078577317529, - "y": -3254.4372213146908, - "rotation": 5.81608592867733, - "action": "CARVE_RIGHT" - }, - { - "x": -39.147380850652766, - "y": -3258.5790815405608, - "rotation": 5.870191135489154, - "action": "CARVE_RIGHT" - }, - { - "x": -40.3531137923335, - "y": -3262.8919720769245, - "rotation": 5.924296342300979, - "action": "CARVE_RIGHT" - }, - { - "x": -41.377880801288086, - "y": -3267.3767045215695, - "rotation": 5.978401549112803, - "action": "CARVE_RIGHT" - }, - { - "x": -42.22150597265133, - "y": -3272.034155664813, - "rotation": 6.0325067559246275, - "action": "CARVE_RIGHT" - }, - { - "x": -42.88374150484388, - "y": -3276.8652672973913, - "rotation": 6.086611962736452, - "action": "CARVE_RIGHT" - }, - { - "x": -43.364267910213485, - "y": -3281.8710460188736, - "rotation": 6.140717169548276, - "action": "CARVE_RIGHT" - }, - { - "x": -43.66269422509736, - "y": -3287.052563046611, - "rotation": 6.194822376360101, - "action": "CARVE_RIGHT" - }, - { - "x": -43.778558219307314, - "y": -3292.4109540252066, - "rotation": 6.248927583171925, - "action": "CARVE_RIGHT" - }, - { - "x": -43.7113331226235, - "y": -3297.82239119933, - "rotation": 0.019847482804163263, - "action": "CARVE_RIGHT" - }, - { - "x": -43.46051648069412, - "y": -3303.071105425502, - "rotation": 0.07395268961598747, - "action": "CARVE_RIGHT" - }, - { - "x": -43.02568013158887, - "y": -3308.1559609318656, - "rotation": 0.12805789642781168, - "action": "CARVE_RIGHT" - }, - { - "x": -42.406469987899875, - "y": -3313.0758921606007, - "rotation": 0.1821631032396359, - "action": "CARVE_RIGHT" - }, - { - "x": -41.602605819441735, - "y": -3317.829903563143, - "rotation": 0.2362683100514601, - "action": "CARVE_RIGHT" - }, - { - "x": -40.61388103654924, - "y": -3322.4170693959622, - "rotation": 0.29037351686328433, - "action": "CARVE_RIGHT" - }, - { - "x": -39.44016247397105, - "y": -3326.8365335169015, - "rotation": 0.34447872367510857, - "action": "CARVE_RIGHT" - }, - { - "x": -38.08139017535789, - "y": -3331.087509182074, - "rotation": 0.3985839304869328, - "action": "CARVE_RIGHT" - }, - { - "x": -36.537577178343525, - "y": -3335.169278843319, - "rotation": 0.45268913729875704, - "action": "CARVE_RIGHT" - }, - { - "x": -34.80880930021715, - "y": -3339.081193946208, - "rotation": 0.5067943441105812, - "action": "CARVE_RIGHT" - }, - { - "x": -32.89524492418545, - "y": -3342.8226747286103, - "rotation": 0.5608995509224054, - "action": "CARVE_RIGHT" - }, - { - "x": -30.797114786222913, - "y": -3346.3932100198085, - "rotation": 0.6150047577342296, - "action": "CARVE_RIGHT" - }, - { - "x": -28.51472176250875, - "y": -3349.7923570401636, - "rotation": 0.6691099645460538, - "action": "CARVE_RIGHT" - }, - { - "x": -26.048440657448896, - "y": -3353.0197412013313, - "rotation": 0.7232151713578779, - "action": "CARVE_RIGHT" - }, - { - "x": -23.398717992281597, - "y": -3356.075055907028, - "rotation": 0.7773203781697021, - "action": "CARVE_RIGHT" - }, - { - "x": -20.566071794264953, - "y": -3358.9580623543384, - "rotation": 0.8314255849815263, - "action": "CARVE_RIGHT" - }, - { - "x": -17.551091386444966, - "y": -3361.6685893355734, - "rotation": 0.8855307917933505, - "action": "CARVE_RIGHT" - }, - { - "x": -14.354437178002481, - "y": -3364.2065330406685, - "rotation": 0.9396359986051747, - "action": "CARVE_RIGHT" - }, - { - "x": -10.976840455177568, - "y": -3366.571856860127, - "rotation": 0.9937412054169988, - "action": "CARVE_RIGHT" - }, - { - "x": -7.4191031727697485, - "y": -3368.7645911885, - "rotation": 1.0478464122288231, - "action": "CARVE_RIGHT" - }, - { - "x": -3.6820977462125986, - "y": -3370.784833228412, - "rotation": 1.1019516190406473, - "action": "NOTHING" - }, - { - "x": 0.4526406241544856, - "y": -3372.431061731806, - "rotation": 1.0984609605366586, - "action": "NOTHING" - }, - { - "x": 4.569961319717821, - "y": -3374.087734719331, - "rotation": 1.09497030203267, - "action": "NOTHING" - }, - { - "x": 8.669936022176106, - "y": -3375.754844988294, - "rotation": 1.0914796435286813, - "action": "NOTHING" - }, - { - "x": 12.752635889834519, - "y": -3377.4323856904525, - "rotation": 1.0879889850246927, - "action": "NOTHING" - }, - { - "x": 16.818131559067904, - "y": -3379.1203503309484, - "rotation": 1.084498326520704, - "action": "NOTHING" - }, - { - "x": 20.866493145780062, - "y": -3380.8187327672404, - "rotation": 1.0810076680167153, - "action": "NOTHING" - }, - { - "x": 24.897790246859138, - "y": -3382.5275272080416, - "rotation": 1.0775170095127267, - "action": "NOTHING" - }, - { - "x": 28.912091941629136, - "y": -3384.246728212261, - "rotation": 1.074026351008738, - "action": "NOTHING" - }, - { - "x": 32.90946679329755, - "y": -3385.9763306879468, - "rotation": 1.0705356925047493, - "action": "NOTHING" - }, - { - "x": 36.88998285039912, - "y": -3387.7163298912315, - "rotation": 1.0670450340007607, - "action": "NOTHING" - }, - { - "x": 40.85370764823578, - "y": -3389.4667214252836, - "rotation": 1.063554375496772, - "action": "NOTHING" - }, - { - "x": 44.80070821031269, - "y": -3391.227501239258, - "rotation": 1.0600637169927833, - "action": "NOTHING" - }, - { - "x": 48.73105104977049, - "y": -3392.9986656272513, - "rotation": 1.0565730584887947, - "action": "NOTHING" - }, - { - "x": 52.644802170813705, - "y": -3394.7802112272616, - "rotation": 1.053082399984806, - "action": "NOTHING" - }, - { - "x": 56.54202707013534, - "y": -3396.572135020148, - "rotation": 1.0495917414808174, - "action": "NOTHING" - }, - { - "x": 60.422790738337675, - "y": -3398.374434328595, - "rotation": 1.0461010829768287, - "action": "NOTHING" - }, - { - "x": 64.28715766134926, - "y": -3400.187106816079, - "rotation": 1.04261042447284, - "action": "NOTHING" - }, - { - "x": 68.1351918218381, - "y": -3402.010150485839, - "rotation": 1.0391197659688514, - "action": "CARVE_LEFT" - }, - { - "x": 71.41522230785316, - "y": -3404.3544055250045, - "rotation": 0.9850145591570272, - "action": "CARVE_LEFT" - }, - { - "x": 74.51279109902029, - "y": -3406.8636223319495, - "rotation": 0.930909352345203, - "action": "CARVE_LEFT" - }, - { - "x": 77.428562189013, - "y": -3409.5379181963917, - "rotation": 0.8768041455333788, - "action": "CARVE_LEFT" - }, - { - "x": 80.1631252195785, - "y": -3412.3774776418077, - "rotation": 0.8226989387215546, - "action": "CARVE_LEFT" - }, - { - "x": 82.71699569791691, - "y": -3415.3825522276993, - "rotation": 0.7685937319097305, - "action": "CARVE_LEFT" - }, - { - "x": 85.09061521346358, - "y": -3418.5534603524056, - "rotation": 0.7144885250979063, - "action": "CARVE_LEFT" - }, - { - "x": 87.28435165407659, - "y": -3421.890587056456, - "rotation": 0.6603833182860821, - "action": "CARVE_LEFT" - }, - { - "x": 89.29849942163068, - "y": -3425.3943838264663, - "rotation": 0.6062781114742579, - "action": "CARVE_LEFT" - }, - { - "x": 91.13327964701938, - "y": -3429.0653683995765, - "rotation": 0.5521729046624337, - "action": "CARVE_LEFT" - }, - { - "x": 92.78884040456666, - "y": -3432.904124568424, - "rotation": 0.4980676978506095, - "action": "CARVE_LEFT" - }, - { - "x": 94.26525692584995, - "y": -3436.911301986657, - "rotation": 0.44396249103878527, - "action": "CARVE_LEFT" - }, - { - "x": 95.56253181293587, - "y": -3441.0876159749832, - "rotation": 0.38985728422696103, - "action": "CARVE_LEFT" - }, - { - "x": 96.6805952510302, - "y": -3445.4338473277544, - "rotation": 0.3357520774151368, - "action": "CARVE_LEFT" - }, - { - "x": 97.61930522054385, - "y": -3449.9508421200803, - "rotation": 0.28164687060331256, - "action": "CARVE_LEFT" - }, - { - "x": 98.37844770857619, - "y": -3454.6395115154787, - "rotation": 0.22754166379148835, - "action": "CARVE_LEFT" - }, - { - "x": 98.95773691981728, - "y": -3459.5008315740533, - "rotation": 0.17343645697966414, - "action": "CARVE_LEFT" - }, - { - "x": 99.35681548687066, - "y": -3464.5358430612023, - "rotation": 0.11933125016783994, - "action": "CARVE_LEFT" - }, - { - "x": 99.57525467999804, - "y": -3469.7456512568524, - "rotation": 0.06522604335601573, - "action": "CARVE_LEFT" - }, - { - "x": 99.61255461628762, - "y": -3475.131425765221, - "rotation": 0.011120836544191513, - "action": "CARVE_LEFT" - }, - { - "x": 99.46817503835301, - "y": -3480.4258531132814, - "rotation": 6.240200936911953, - "action": "CARVE_LEFT" - }, - { - "x": 99.14163810207332, - "y": -3485.558676401905, - "rotation": 6.186095730100129, - "action": "CARVE_LEFT" - }, - { - "x": 98.63254018620796, - "y": -3490.5287830420325, - "rotation": 6.131990523288304, - "action": "CARVE_LEFT" - }, - { - "x": 97.94055167468444, - "y": -3495.3351305934134, - "rotation": 6.07788531647648, - "action": "CARVE_LEFT" - }, - { - "x": 97.0654167394848, - "y": -3499.976746559998, - "rotation": 6.0237801096646555, - "action": "CARVE_LEFT" - }, - { - "x": 96.0069531241292, - "y": -3504.452728185892, - "rotation": 5.969674902852831, - "action": "NOTHING" - }, - { - "x": 94.84294270395095, - "y": -3508.8358333409374, - "rotation": 5.9731655613568195, - "action": "NOTHING" - }, - { - "x": 93.69100825168763, - "y": -3513.235007992044, - "rotation": 5.976656219860808, - "action": "NOTHING" - }, - { - "x": 92.55116574734548, - "y": -3517.6503028484826, - "rotation": 5.980146878364796, - "action": "NOTHING" - }, - { - "x": 91.42343144577623, - "y": -3522.081768795003, - "rotation": 5.983637536868785, - "action": "NOTHING" - }, - { - "x": 90.30782187588325, - "y": -3526.529456891271, - "rotation": 5.987128195372773, - "action": "NOTHING" - }, - { - "x": 89.20435383982982, - "y": -3530.99341837131, - "rotation": 5.990618853876762, - "action": "NOTHING" - }, - { - "x": 88.11304441224962, - "y": -3535.4737046429427, - "rotation": 5.99410951238075, - "action": "NOTHING" - }, - { - "x": 87.03391093945932, - "y": -3539.9703672872342, - "rotation": 5.997600170884739, - "action": "NOTHING" - }, - { - "x": 85.96697103867332, - "y": -3544.4834580579377, - "rotation": 6.001090829388727, - "action": "NOTHING" - }, - { - "x": 84.9122425972207, - "y": -3549.0130288809414, - "rotation": 6.0045814878927155, - "action": "NOTHING" - }, - { - "x": 83.86974377176415, - "y": -3553.5591318537163, - "rotation": 6.008072146396704, - "action": "NOTHING" - }, - { - "x": 82.83949298752124, - "y": -3558.1218192447673, - "rotation": 6.011562804900692, - "action": "NOTHING" - }, - { - "x": 81.82150893748761, - "y": -3562.7011434930832, - "rotation": 6.015053463404681, - "action": "NOTHING" - }, - { - "x": 80.8158105816624, - "y": -3567.297157207592, - "rotation": 6.018544121908669, - "action": "NOTHING" - }, - { - "x": 79.82241714627581, - "y": -3571.9099131666135, - "rotation": 6.022034780412658, - "action": "NOTHING" - }, - { - "x": 78.84134812301862, - "y": -3576.5394643173167, - "rotation": 6.025525438916646, - "action": "NOTHING" - }, - { - "x": 77.872623268274, - "y": -3581.1858637751784, - "rotation": 6.029016097420635, - "action": "NOTHING" - }, - { - "x": 76.91626260235124, - "y": -3585.8491648234412, - "rotation": 6.032506755924623, - "action": "NOTHING" - }, - { - "x": 75.97228640872173, - "y": -3590.5294209125755, - "rotation": 6.0359974144286115, - "action": "NOTHING" - }, - { "x": 75.04071523325692, "y": -3595.226685659742, "rotation": 6.0394880729326, "action": "NOTHING" }, - { - "x": 74.12156988346835, - "y": -3599.9410128482555, - "rotation": 6.042978731436588, - "action": "NOTHING" - }, - { - "x": 73.21487142774987, - "y": -3604.6724564270503, - "rotation": 6.046469389940577, - "action": "NOTHING" - }, - { - "x": 72.32064119462176, - "y": -3609.421070510149, - "rotation": 6.049960048444565, - "action": "NOTHING" - }, - { - "x": 71.43890077197707, - "y": -3614.18690937613, - "rotation": 6.053450706948554, - "action": "NOTHING" - }, - { - "x": 70.56967200632995, - "y": -3618.9700274675984, - "rotation": 6.056941365452542, - "action": "NOTHING" - }, - { - "x": 69.71297700206597, - "y": -3623.7704793906564, - "rotation": 6.060432023956531, - "action": "NOTHING" - }, - { - "x": 68.86883812069459, - "y": -3628.5883199143786, - "rotation": 6.063922682460519, - "action": "NOTHING" - }, - { - "x": 68.03727798010367, - "y": -3633.423603970287, - "rotation": 6.0674133409645075, - "action": "NOTHING" - }, - { - "x": 67.21831945381588, - "y": -3638.2763866518253, - "rotation": 6.070903999468496, - "action": "NOTHING" - }, - { - "x": 66.41198567024732, - "y": -3643.1467232138393, - "rotation": 6.074394657972484, - "action": "NOTHING" - }, - { - "x": 65.61830001196805, - "y": -3648.0346690720553, - "rotation": 6.077885316476473, - "action": "NOTHING" - }, - { - "x": 64.83728611496466, - "y": -3652.9402798025603, - "rotation": 6.081375974980461, - "action": "NOTHING" - }, - { - "x": 64.06896786790487, - "y": -3657.8636111412857, - "rotation": 6.08486663348445, - "action": "NOTHING" - }, - { - "x": 63.31336941140417, - "y": -3662.804718983491, - "rotation": 6.088357291988438, - "action": "NOTHING" - }, - { - "x": 62.570515137294365, - "y": -3667.7636593832494, - "rotation": 6.0918479504924266, - "action": "NOTHING" - }, - { - "x": 61.84042968789424, - "y": -3672.740488552934, - "rotation": 6.095338608996415, - "action": "NOTHING" - }, - { - "x": 61.12313795528215, - "y": -3677.7352628627073, - "rotation": 6.098829267500403, - "action": "NOTHING" - }, - { - "x": 60.418665080570555, - "y": -3682.748038840011, - "rotation": 6.102319926004392, - "action": "NOTHING" - }, - { - "x": 59.727036453182684, - "y": -3687.7788731690557, - "rotation": 6.10581058450838, - "action": "NOTHING" - }, - { "x": 59.048277710131, "y": -3692.827822690317, "rotation": 6.109301243012369, "action": "NOTHING" }, - { - "x": 58.382414735297786, - "y": -3697.8949444000277, - "rotation": 6.112791901516357, - "action": "NOTHING" - }, - { - "x": 57.72947365871758, - "y": -3702.980295449673, - "rotation": 6.116282560020346, - "action": "NOTHING" - }, - { - "x": 57.089480855861666, - "y": -3708.0839331454904, - "rotation": 6.119773218524334, - "action": "NOTHING" - }, - { - "x": 56.462462946924475, - "y": -3713.205914947966, - "rotation": 6.1232638770283225, - "action": "NOTHING" - }, - { - "x": 55.84844679611194, - "y": -3718.346298471336, - "rotation": 6.126754535532311, - "action": "NOTHING" - }, - { - "x": 55.24745951093181, - "y": -3723.5051414830878, - "rotation": 6.130245194036299, - "action": "NOTHING" - }, - { - "x": 54.659528441485875, - "y": -3728.682501903464, - "rotation": 6.133735852540288, - "action": "NOTHING" - }, - { - "x": 54.084681179764196, - "y": -3733.878437804967, - "rotation": 6.137226511044276, - "action": "NOTHING" - }, - { - "x": 53.52294555894118, - "y": -3739.093007411863, - "rotation": 6.140717169548265, - "action": "NOTHING" - }, - { - "x": 52.97434965267365, - "y": -3744.326269099691, - "rotation": 6.144207828052253, - "action": "NOTHING" - }, - { - "x": 52.438921774400804, - "y": -3749.578281394774, - "rotation": 6.147698486556242, - "action": "NOTHING" - }, - { - "x": 51.91669047664608, - "y": -3754.849102973724, - "rotation": 6.15118914506023, - "action": "NOTHING" - }, - { - "x": 51.40768455032097, - "y": -3760.1387926629573, - "rotation": 6.1546798035642185, - "action": "NOTHING" - }, - { - "x": 50.91193302403072, - "y": -3765.4474094382085, - "rotation": 6.158170462068207, - "action": "CARVE_LEFT" - }, - { - "x": 50.272077672208226, - "y": -3770.627813265548, - "rotation": 6.1040652552563825, - "action": "CARVE_LEFT" - }, - { - "x": 49.43830009065558, - "y": -3775.6331411832634, - "rotation": 6.049960048444558, - "action": "CARVE_LEFT" - }, - { - "x": 48.41043054466222, - "y": -3780.462502836489, - "rotation": 5.995854841632734, - "action": "CARVE_LEFT" - }, - { - "x": 47.188372600634736, - "y": -3785.115077354789, - "rotation": 5.941749634820909, - "action": "CARVE_LEFT" - }, - { - "x": 45.77210291094917, - "y": -3789.5901131493974, - "rotation": 5.887644428009085, - "action": "CARVE_LEFT" - }, - { - "x": 44.161670999395156, - "y": -3793.8869277110152, - "rotation": 5.8335392211972605, - "action": "CARVE_LEFT" - }, - { - "x": 42.35719904721038, - "y": -3798.00490740816, - "rotation": 5.779434014385436, - "action": "CARVE_LEFT" - }, - { - "x": 40.358881679703806, - "y": -3801.9435072860697, - "rotation": 5.725328807573612, - "action": "CARVE_LEFT" - }, - { - "x": 38.166985753466065, - "y": -3805.7022508661594, - "rotation": 5.671223600761787, - "action": "CARVE_LEFT" - }, - { - "x": 35.78185014416554, - "y": -3809.2807299460237, - "rotation": 5.617118393949963, - "action": "CARVE_LEFT" - }, - { - "x": 33.203885534928474, - "y": -3812.6786043999928, - "rotation": 5.5630131871381385, - "action": "CARVE_LEFT" - }, - { - "x": 30.43357420530174, - "y": -3815.8956019802313, - "rotation": 5.508907980326314, - "action": "CARVE_LEFT" - }, - { - "x": 27.47146982079649, - "y": -3818.9315181183856, - "rotation": 5.45480277351449, - "action": "CARVE_LEFT" - }, - { - "x": 24.318197223011417, - "y": -3821.786215727775, - "rotation": 5.400697566702665, - "action": "CARVE_LEFT" - }, - { - "x": 20.97445222033388, - "y": -3824.4596250061236, - "rotation": 5.346592359890841, - "action": "CARVE_LEFT" - }, - { - "x": 17.4410013792175, - "y": -3826.9517432388366, - "rotation": 5.2924871530790165, - "action": "CARVE_LEFT" - }, - { - "x": 13.718681816034607, - "y": -3829.262634602814, - "rotation": 5.238381946267192, - "action": "NOTHING" - }, - { - "x": 9.600589750123849, - "y": -3831.201482156566, - "rotation": 5.2418726047711806, - "action": "NOTHING" - }, - { - "x": 5.5002473516771655, - "y": -3833.1512357582205, - "rotation": 5.245363263275169, - "action": "NOTHING" - }, - { - "x": 1.4175862450660857, - "y": -3835.111890927102, - "rotation": 5.248853921779157, - "action": "NOTHING" - }, - { - "x": -2.6474614300298844, - "y": -3837.083443530246, - "rotation": 5.252344580283146, - "action": "NOTHING" - }, - { - "x": -6.694963020066877, - "y": -3839.0658897813455, - "rotation": 5.255835238787134, - "action": "NOTHING" - }, - { - "x": -10.72498535907642, - "y": -3841.0592262397045, - "rotation": 5.259325897291123, - "action": "NOTHING" - }, - { - "x": -14.737594770101353, - "y": -3843.063449809191, - "rotation": 5.262816555795111, - "action": "NOTHING" - }, - { - "x": -18.732857066627894, - "y": -3845.0785577371926, - "rotation": 5.2663072142991, - "action": "NOTHING" - }, - { - "x": -22.710837554013892, - "y": -3847.1045476135787, - "rotation": 5.269797872803088, - "action": "NOTHING" - }, - { - "x": -26.671601030913255, - "y": -3849.1414173696608, - "rotation": 5.2732885313070765, - "action": "NOTHING" - }, - { - "x": -30.615211790696556, - "y": -3851.1891652771596, - "rotation": 5.276779189811065, - "action": "NOTHING" - }, - { - "x": -34.54173362286787, - "y": -3853.2477899471733, - "rotation": 5.280269848315053, - "action": "NOTHING" - }, - { - "x": -38.45122981447781, - "y": -3855.3172903291484, - "rotation": 5.283760506819042, - "action": "NOTHING" - }, - { - "x": -42.343763151532755, - "y": -3857.397665709854, - "rotation": 5.28725116532303, - "action": "NOTHING" - }, - { - "x": -46.21939592040036, - "y": -3859.488915712361, - "rotation": 5.290741823827019, - "action": "NOTHING" - }, - { - "x": -50.078189909211275, - "y": -3861.591040295019, - "rotation": 5.294232482331007, - "action": "NOTHING" - }, - { - "x": -53.92020640925712, - "y": -3863.7040397504406, - "rotation": 5.297723140834996, - "action": "NOTHING" - }, - { - "x": -57.74550621638472, - "y": -3865.8279147044877, - "rotation": 5.301213799338984, - "action": "NOTHING" - }, - { - "x": -61.55414963238662, - "y": -3867.9626661152597, - "rotation": 5.3047044578429725, - "action": "NOTHING" - }, - { - "x": -65.34619646638787, - "y": -3870.1082952720844, - "rotation": 5.308195116346961, - "action": "NOTHING" - }, - { - "x": -69.12170603622909, - "y": -3872.264803794513, - "rotation": 5.311685774850949, - "action": "NOTHING" - }, - { - "x": -72.88073716984584, - "y": -3874.432193631317, - "rotation": 5.315176433354938, - "action": "CARVE_RIGHT" - }, - { - "x": -76.07231466369566, - "y": -3877.120659969625, - "rotation": 5.369281640166762, - "action": "CARVE_RIGHT" - }, - { - "x": -79.07302239947987, - "y": -3879.9822469191954, - "rotation": 5.423386846978587, - "action": "CARVE_RIGHT" - }, - { - "x": -81.883466730302, - "y": -3883.0171243187237, - "rotation": 5.477492053790411, - "action": "CARVE_RIGHT" - }, - { - "x": -84.50417981160595, - "y": -3886.225529099634, - "rotation": 5.531597260602235, - "action": "CARVE_RIGHT" - }, - { - "x": -86.93561981815519, - "y": -3889.6077650887114, - "rotation": 5.58570246741406, - "action": "CARVE_RIGHT" - }, - { - "x": -89.1781711604165, - "y": -3893.1642028112765, - "rotation": 5.639807674225884, - "action": "CARVE_RIGHT" - }, - { - "x": -91.23214470034961, - "y": -3896.8952792949067, - "rotation": 5.693912881037709, - "action": "CARVE_RIGHT" - }, - { - "x": -93.0977779666044, - "y": -3900.8014978736933, - "rotation": 5.748018087849533, - "action": "CARVE_RIGHT" - }, - { - "x": -94.77523536912723, - "y": -3904.8834279930416, - "rotation": 5.8021232946613575, - "action": "CARVE_RIGHT" - }, - { - "x": -96.26460841317788, - "y": -3909.141705015007, - "rotation": 5.856228501473182, - "action": "CARVE_RIGHT" - }, - { - "x": -97.5659159127588, - "y": -3913.5770300241693, - "rotation": 5.910333708285006, - "action": "CARVE_RIGHT" - }, - { - "x": -98.67910420345801, - "y": -3918.190169634039, - "rotation": 5.964438915096831, - "action": "CARVE_RIGHT" - }, - { - "x": -99.60404735470745, - "y": -3922.9819557940027, - "rotation": 6.018544121908655, - "action": "CARVE_RIGHT" - }, - { - "x": -100.34054738145808, - "y": -3927.9532855967936, - "rotation": 6.0726493287204795, - "action": "CARVE_RIGHT" - }, - { - "x": -100.88833445527344, - "y": -3933.1051210865, - "rotation": 6.126754535532304, - "action": "CARVE_RIGHT" - }, - { - "x": -101.2470671148431, - "y": -3938.438489067098, - "rotation": 6.180859742344128, - "action": "CARVE_RIGHT" - }, - { - "x": -101.41633247591766, - "y": -3943.954480911517, - "rotation": 6.234964949155953, - "action": "CARVE_RIGHT" - }, - { - "x": -101.39564701365572, - "y": -3949.6157880798173, - "rotation": 0.005884848788190844, - "action": "CARVE_RIGHT" - }, - { - "x": -101.18451985113809, - "y": -3955.107761319684, - "rotation": 0.05999005560001506, - "action": "CARVE_RIGHT" - }, - { - "x": -100.78253435863891, - "y": -3960.429276127365, - "rotation": 0.11409526241183927, - "action": "CARVE_RIGHT" - }, - { - "x": -100.18934793586955, - "y": -3965.579278170101, - "rotation": 0.1682004692236635, - "action": "CARVE_RIGHT" - }, - { - "x": -99.40469179482123, - "y": -3970.55678308148, - "rotation": 0.2223056760354877, - "action": "CARVE_RIGHT" - }, - { - "x": -98.42837074320488, - "y": -3975.3608762573476, - "rotation": 0.2764108828473119, - "action": "CARVE_RIGHT" - }, - { - "x": -97.26026296848656, - "y": -3979.990712652285, - "rotation": 0.33051608965913615, - "action": "CARVE_RIGHT" - }, - { - "x": -95.90031982251699, - "y": -3984.4455165766353, - "rotation": 0.3846212964709604, - "action": "CARVE_RIGHT" - }, - { - "x": -94.34856560675347, - "y": -3988.7245814940943, - "rotation": 0.4387265032827846, - "action": "CARVE_RIGHT" - }, - { - "x": -92.60509735807274, - "y": -3992.8272698198502, - "rotation": 0.49283171009460885, - "action": "CARVE_RIGHT" - }, - { - "x": -90.67008463517327, - "y": -3996.7530127192804, - "rotation": 0.5469369169064331, - "action": "CARVE_RIGHT" - }, - { - "x": -88.54376930556516, - "y": -4000.5013099072, - "rotation": 0.6010421237182573, - "action": "CARVE_RIGHT" - }, - { - "x": -86.22646533314648, - "y": -4004.0717294476585, - "rotation": 0.6551473305300815, - "action": "CARVE_RIGHT" - }, - { - "x": -83.71855856636412, - "y": -4007.4639075542887, - "rotation": 0.7092525373419056, - "action": "CARVE_RIGHT" - }, - { - "x": -81.02050652695797, - "y": -4010.6775483912006, - "rotation": 0.7633577441537298, - "action": "CARVE_RIGHT" - }, - { - "x": -78.1328381992865, - "y": -4013.712423874423, - "rotation": 0.817462950965554, - "action": "CARVE_RIGHT" - }, - { - "x": -75.05615382023255, - "y": -4016.568373473891, - "rotation": 0.8715681577773782, - "action": "CARVE_RIGHT" - }, - { - "x": -71.79112466968768, - "y": -4019.245304015973, - "rotation": 0.9256733645892024, - "action": "CARVE_RIGHT" - }, - { - "x": -68.33849286161337, - "y": -4021.7431894865435, - "rotation": 0.9797785714010265, - "action": "CARVE_RIGHT" - }, - { - "x": -64.69907113567787, - "y": -4024.062070834595, - "rotation": 1.0338837782128507, - "action": "CARVE_RIGHT" - }, - { - "x": -60.873742649466884, - "y": -4026.202055776388, - "rotation": 1.087988985024675, - "action": "NOTHING" - }, - { - "x": -56.64148747279689, - "y": -4027.959257768224, - "rotation": 1.0844983265206862, - "action": "NOTHING" - }, - { - "x": -52.427268815048976, - "y": -4029.727221127649, - "rotation": 1.0810076680166976, - "action": "NOTHING" - }, - { - "x": -48.23101391573084, - "y": -4031.505938216553, - "rotation": 1.077517009512709, - "action": "NOTHING" - }, - { - "x": -44.052650541466406, - "y": -4033.2954017534835, - "rotation": 1.0740263510087202, - "action": "NOTHING" - }, - { - "x": -39.89210698452145, - "y": -4035.09560481257, - "rotation": 1.0705356925047316, - "action": "NOTHING" - }, - { - "x": -35.74931206133318, - "y": -4036.9065408224524, - "rotation": 1.067045034000743, - "action": "NOTHING" - }, - { - "x": -31.62419511104378, - "y": -4038.7282035652097, - "rotation": 1.0635543754967542, - "action": "NOTHING" - }, - { - "x": -27.516685994037807, - "y": -4040.560587175293, - "rotation": 1.0600637169927656, - "action": "NOTHING" - }, - { - "x": -23.42671509048354, - "y": -4042.403686138463, - "rotation": 1.056573058488777, - "action": "NOTHING" - }, - { - "x": -19.354213298878193, - "y": -4044.2574952907257, - "rotation": 1.0530823999847883, - "action": "NOTHING" - }, - { - "x": -15.299112034597037, - "y": -4046.122009817279, - "rotation": 1.0495917414807996, - "action": "NOTHING" - }, - { - "x": -11.261343228446387, - "y": -4047.9972252514526, - "rotation": 1.046101082976811, - "action": "NOTHING" - }, - { - "x": -7.240839325220454, - "y": -4049.8831374736596, - "rotation": 1.0426104244728223, - "action": "NOTHING" - }, - { - "x": -3.237533282262053, - "y": -4051.779742710345, - "rotation": 1.0391197659688336, - "action": "NOTHING" - }, - { - "x": 0.7486414319728456, - "y": -4053.687037532941, - "rotation": 1.035629107464845, - "action": "NOTHING" - }, - { - "x": 4.717750839346723, - "y": -4055.6050188568215, - "rotation": 1.0321384489608563, - "action": "NOTHING" - }, - { - "x": 8.669860453468303, - "y": -4057.533683940264, - "rotation": 1.0286477904568676, - "action": "NOTHING" - }, - { - "x": 12.605035281116516, - "y": -4059.4730303834103, - "rotation": 1.025157131952879, - "action": "CARVE_LEFT" - }, - { - "x": 15.956789710807339, - "y": -4061.9476162317274, - "rotation": 0.9710519251410548, - "action": "CARVE_LEFT" - }, - { - "x": 19.119390277146504, - "y": -4064.5931141346987, - "rotation": 0.9169467183292306, - "action": "CARVE_LEFT" - }, - { - "x": 22.093511420865692, - "y": -4067.4096322504042, - "rotation": 0.8628415115174064, - "action": "CARVE_LEFT" - }, - { - "x": 24.879753189695137, - "y": -4070.397346007524, - "rotation": 0.8087363047055822, - "action": "CARVE_LEFT" - }, - { - "x": 27.478641455872868, - "y": -4073.556497907486, - "rotation": 0.754631097893758, - "action": "CARVE_LEFT" - }, - { - "x": 29.890628133056953, - "y": -4076.887397327161, - "rotation": 0.7005258910819339, - "action": "CARVE_LEFT" - }, - { - "x": 32.11609139264236, - "y": -4080.390420322099, - "rotation": 0.6464206842701097, - "action": "CARVE_LEFT" - }, - { - "x": 34.155335879483964, - "y": -4084.0660094303084, - "rotation": 0.5923154774582855, - "action": "CARVE_LEFT" - }, - { - "x": 36.008592927027294, - "y": -4087.9146734765754, - "rotation": 0.5382102706464613, - "action": "CARVE_LEFT" - }, - { - "x": 37.676020771848584, - "y": -4091.936987377324, - "rotation": 0.4841050638346371, - "action": "CARVE_LEFT" - }, - { - "x": 39.15770476760566, - "y": -4096.133591946011, - "rotation": 0.42999985702281285, - "action": "CARVE_LEFT" - }, - { - "x": 40.453657598401215, - "y": -4100.505193699061, - "rotation": 0.3758946502109886, - "action": "CARVE_LEFT" - }, - { - "x": 41.56381949156009, - "y": -4105.052564662334, - "rotation": 0.3217894433991644, - "action": "CARVE_LEFT" - }, - { - "x": 42.48805842982201, - "y": -4109.776542178124, - "rotation": 0.26768423658734014, - "action": "CARVE_LEFT" - }, - { - "x": 43.22617036295138, - "y": -4114.678028712699, - "rotation": 0.21357902977551593, - "action": "CARVE_LEFT" - }, - { - "x": 43.777879418765664, - "y": -4119.75799166436, - "rotation": 0.15947382296369172, - "action": "CARVE_LEFT" - }, - { - "x": 44.14283811358387, - "y": -4125.017463172036, - "rotation": 0.10536861615186752, - "action": "CARVE_LEFT" - }, - { - "x": 44.32062756209668, - "y": -4130.457539924407, - "rotation": 0.0512634093400433, - "action": "CARVE_LEFT" - }, - { - "x": 44.310757820276876, - "y": -4136.061029562098, - "rotation": 6.280343509707805, - "action": "CARVE_LEFT" - }, - { - "x": 44.11272388721219, - "y": -4141.497483989186, - "rotation": 6.226238302895981, - "action": "CARVE_LEFT" - }, - { - "x": 43.726095054244745, - "y": -4146.76576524806, - "rotation": 6.172133096084156, - "action": "CARVE_LEFT" - }, - { - "x": 43.150514687084986, - "y": -4151.864805594627, - "rotation": 6.118027889272332, - "action": "CARVE_LEFT" - }, - { - "x": 42.385700008524815, - "y": -4156.793607293538, - "rotation": 6.0639226824605075, - "action": "CARVE_LEFT" - }, - { - "x": 41.43144188174818, - "y": -4161.551242413984, - "rotation": 6.009817475648683, - "action": "CARVE_LEFT" - }, - { - "x": 40.28760459423769, - "y": -4166.136852626046, - "rotation": 5.955712268836859, - "action": "CARVE_LEFT" - }, - { - "x": 38.95412564227562, - "y": -4170.549648997603, - "rotation": 5.901607062025034, - "action": "CARVE_LEFT" - }, - { - "x": 37.43101551603768, - "y": -4174.788911791804, - "rotation": 5.84750185521321, - "action": "NOTHING" - }, - { - "x": 35.75139990099904, - "y": -4178.886055094455, - "rotation": 5.850992513717198, - "action": "NOTHING" - }, - { - "x": 34.08451471798391, - "y": -4182.997819354316, - "rotation": 5.854483172221187, - "action": "NOTHING" - }, - { - "x": 32.430361747167446, - "y": -4187.124246652619, - "rotation": 5.857973830725175, - "action": "NOTHING" - }, - { - "x": 30.788943085633957, - "y": -4191.265379275081, - "rotation": 5.861464489229164, - "action": "NOTHING" - }, - { - "x": 29.160261146466677, - "y": -4195.421259711249, - "rotation": 5.864955147733152, - "action": "NOTHING" - }, - { - "x": 27.54431865784002, - "y": -4199.5919306538635, - "rotation": 5.8684458062371405, - "action": "NOTHING" - }, - { - "x": 25.941118662114295, - "y": -4203.777434998209, - "rotation": 5.871936464741129, - "action": "NOTHING" - }, - { - "x": 24.350664514932898, - "y": -4207.9778158414765, - "rotation": 5.875427123245117, - "action": "NOTHING" - }, - { - "x": 22.772959884321928, - "y": -4212.193116482121, - "rotation": 5.878917781749106, - "action": "NOTHING" - }, - { - "x": 21.208008749792267, - "y": -4216.423380419224, - "rotation": 5.882408440253094, - "action": "NOTHING" - }, - { - "x": 19.65581540144409, - "y": -4220.668651351858, - "rotation": 5.885899098757083, - "action": "NOTHING" - }, - { - "x": 18.11638443907382, - "y": -4224.928973178455, - "rotation": 5.889389757261071, - "action": "NOTHING" - }, - { - "x": 16.58972077128349, - "y": -4229.204389996169, - "rotation": 5.89288041576506, - "action": "NOTHING" - }, - { - "x": 15.07582961459254, - "y": -4233.494946100249, - "rotation": 5.896371074269048, - "action": "NOTHING" - }, - { - "x": 13.574716492552028, - "y": -4237.800685983409, - "rotation": 5.8998617327730365, - "action": "CARVE_RIGHT" - }, - { - "x": 12.413719191312847, - "y": -4242.424716146729, - "rotation": 5.953966939584861, - "action": "CARVE_RIGHT" - }, - { - "x": 11.44283005725052, - "y": -4247.228856537874, - "rotation": 6.008072146396685, - "action": "CARVE_RIGHT" - }, - { - "x": 10.662224871673805, - "y": -4252.213984265523, - "rotation": 6.06217735320851, - "action": "CARVE_RIGHT" - }, - { - "x": 10.07215132733461, - "y": -4257.381041451461, - "rotation": 6.116282560020334, - "action": "CARVE_RIGHT" - }, - { - "x": 9.672928817722543, - "y": -4262.731035038935, - "rotation": 6.1703877668321585, - "action": "CARVE_RIGHT" - }, - { - "x": 9.464948226938501, - "y": -4268.265036601546, - "rotation": 6.224492973643983, - "action": "CARVE_RIGHT" - }, - { - "x": 9.448671720145823, - "y": -4273.984182152659, - "rotation": 6.278598180455807, - "action": "CARVE_RIGHT" - }, - { - "x": 9.62459196474785, - "y": -4279.562532143997, - "rotation": 0.04951808008804548, - "action": "CARVE_RIGHT" - }, - { - "x": 9.99313182990373, - "y": -4284.968814567486, - "rotation": 0.10362328689986969, - "action": "CARVE_RIGHT" - }, - { - "x": 10.554640140011113, - "y": -4290.20196927959, - "rotation": 0.1577284937116939, - "action": "CARVE_RIGHT" - }, - { - "x": 11.309391891900745, - "y": -4295.2610061173755, - "rotation": 0.2118337005235181, - "action": "CARVE_RIGHT" - }, - { - "x": 12.25758847143376, - "y": -4300.145004694395, - "rotation": 0.2659389073353423, - "action": "CARVE_RIGHT" - }, - { - "x": 13.39935786950329, - "y": -4304.8531141971225, - "rotation": 0.32004411414716655, - "action": "CARVE_RIGHT" - }, - { - "x": 14.734754897441935, - "y": -4309.384553181955, - "rotation": 0.3741493209589908, - "action": "CARVE_RIGHT" - }, - { - "x": 16.263761401836668, - "y": -4313.738609372761, - "rotation": 0.428254527770815, - "action": "CARVE_RIGHT" - }, - { - "x": 17.986286478752756, - "y": -4317.914639458989, - "rotation": 0.48235973458263925, - "action": "CARVE_RIGHT" - }, - { - "x": 19.902166687368236, - "y": -4321.91206889433, - "rotation": 0.5364649413944634, - "action": "CARVE_RIGHT" - }, - { - "x": 22.011166263020513, - "y": -4325.730391695934, - "rotation": 0.5905701482062876, - "action": "CARVE_RIGHT" - }, - { - "x": 24.312977329666634, - "y": -4329.369170244166, - "rotation": 0.6446753550181118, - "action": "CARVE_RIGHT" - }, - { - "x": 26.807220111758774, - "y": -4332.828035082928, - "rotation": 0.698780561829936, - "action": "CARVE_RIGHT" - }, - { - "x": 29.49344314553651, - "y": -4336.106684720518, - "rotation": 0.7528857686417602, - "action": "CARVE_RIGHT" - }, - { - "x": 32.371123489737386, - "y": -4339.204885431034, - "rotation": 0.8069909754535843, - "action": "CARVE_RIGHT" - }, - { - "x": 35.43966693572732, - "y": -4342.122471056329, - "rotation": 0.8610961822654085, - "action": "CARVE_RIGHT" - }, - { - "x": 38.6984082170524, - "y": -4344.859342808509, - "rotation": 0.9152013890772327, - "action": "CARVE_RIGHT" - }, - { - "x": 42.1466112184136, - "y": -4347.415469072964, - "rotation": 0.9693065958890569, - "action": "CARVE_RIGHT" - }, - { - "x": 45.78346918406585, - "y": -4349.790885211954, - "rotation": 1.0234118027008812, - "action": "CARVE_RIGHT" - }, - { - "x": 49.60810492564319, - "y": -4351.985693368723, - "rotation": 1.0775170095127053, - "action": "CARVE_RIGHT" - }, - { - "x": 53.619571029411276, - "y": -4354.000062272153, - "rotation": 1.1316222163245295, - "action": "CARVE_RIGHT" - }, - { - "x": 57.816850062948916, - "y": -4355.834227041956, - "rotation": 1.1857274231363537, - "action": "CARVE_RIGHT" - }, - { - "x": 62.19885478126011, - "y": -4357.488488994404, - "rotation": 1.2398326299481779, - "action": "CARVE_RIGHT" - }, - { - "x": 66.76442833231805, - "y": -4358.9632154485835, - "rotation": 1.293937836760002, - "action": "CARVE_RIGHT" - }, - { - "x": 71.51234446204266, - "y": -4360.258839533191, - "rotation": 1.3480430435718262, - "action": "CARVE_RIGHT" - }, - { - "x": 76.44130771871313, - "y": -4361.375859993855, - "rotation": 1.4021482503836504, - "action": "CARVE_RIGHT" - }, - { - "x": 81.54995365681687, - "y": -4362.314841000984, - "rotation": 1.4562534571954746, - "action": "CARVE_RIGHT" - }, - { - "x": 86.83684904033655, - "y": -4363.0764119581545, - "rotation": 1.5103586640072988, - "action": "NOTHING" - }, - { - "x": 92.68559262946621, - "y": -4363.306162696203, - "rotation": 1.5068680055033101, - "action": "NOTHING" - }, - { - "x": 98.50888183136611, - "y": -4363.547964077748, - "rotation": 1.5033773469993215, - "action": "NOTHING" - }, - { - "x": 104.30684619027066, - "y": -4363.801768161205, - "rotation": 1.4998866884953328, - "action": "NOTHING" - }, - { - "x": 110.07961456898093, - "y": -4364.06752747753, - "rotation": 1.4963960299913441, - "action": "NOTHING" - }, - { - "x": 115.82731515074306, - "y": -4364.345195028834, - "rotation": 1.4929053714873555, - "action": "NOTHING" - }, - { - "x": 121.55007544112188, - "y": -4364.634724286987, - "rotation": 1.4894147129833668, - "action": "NOTHING" - }, - { - "x": 127.24802226986947, - "y": -4364.936069192244, - "rotation": 1.4859240544793781, - "action": "NOTHING" - }, - { - "x": 132.92128179278882, - "y": -4365.249184151859, - "rotation": 1.4824333959753895, - "action": "NOTHING" - }, - { - "x": 138.56997949359254, - "y": -4365.574024038711, - "rotation": 1.4789427374714008, - "action": "NOTHING" - }, - { - "x": 144.19424018575668, - "y": -4365.910544189937, - "rotation": 1.4754520789674122, - "action": "CARVE_LEFT" - }, - { - "x": 149.0608699696367, - "y": -4366.937675261792, - "rotation": 1.421346872155588, - "action": "CARVE_LEFT" - }, - { - "x": 153.73365698009263, - "y": -4368.134138515006, - "rotation": 1.3672416653437638, - "action": "CARVE_LEFT" - }, - { - "x": 158.2138868868776, - "y": -4369.499489182068, - "rotation": 1.3131364585319396, - "action": "CARVE_LEFT" - }, - { - "x": 162.50276918684818, - "y": -4371.033351385454, - "rotation": 1.2590312517201154, - "action": "CARVE_LEFT" - }, - { - "x": 166.60143742634688, - "y": -4372.735417935333, - "rotation": 1.2049260449082912, - "action": "CARVE_LEFT" - }, - { - "x": 170.51094942297456, - "y": -4374.605450127822, - "rotation": 1.150820838096467, - "action": "CARVE_LEFT" - }, - { - "x": 174.23228748675504, - "y": -4376.643277543794, - "rotation": 1.0967156312846429, - "action": "CARVE_LEFT" - }, - { - "x": 177.76635864069283, - "y": -4378.848797848246, - "rotation": 1.0426104244728187, - "action": "CARVE_LEFT" - }, - { - "x": 181.11399484072595, - "y": -4381.2219765902155, - "rotation": 0.9885052176609945, - "action": "CARVE_LEFT" - }, - { - "x": 184.27595319507537, - "y": -4383.762847003249, - "rotation": 0.9344000108491703, - "action": "CARVE_LEFT" - }, - { - "x": 187.2529161829927, - "y": -4386.471509806419, - "rotation": 0.8802948040373462, - "action": "CARVE_LEFT" - }, - { - "x": 190.04549187290738, - "y": -4389.34813300589, - "rotation": 0.826189597225522, - "action": "CARVE_LEFT" - }, - { - "x": 192.6542141399756, - "y": -4392.392951697031, - "rotation": 0.7720843904136978, - "action": "CARVE_LEFT" - }, - { - "x": 195.07954288303193, - "y": -4395.6062678670705, - "rotation": 0.7179791836018736, - "action": "CARVE_LEFT" - }, - { - "x": 197.32186424094542, - "y": -4398.988450198299, - "rotation": 0.6638739767900494, - "action": "CARVE_LEFT" - }, - { - "x": 199.3814908083819, - "y": -4402.539933871812, - "rotation": 0.6097687699782253, - "action": "CARVE_LEFT" - }, - { - "x": 201.2586618509739, - "y": -4406.261220371792, - "rotation": 0.5556635631664011, - "action": "CARVE_LEFT" - }, - { - "x": 202.95354351989982, - "y": -4410.152877290331, - "rotation": 0.5015583563545769, - "action": "CARVE_LEFT" - }, - { - "x": 204.46622906587365, - "y": -4414.215538132795, - "rotation": 0.44745314954275267, - "action": "CARVE_LEFT" - }, - { - "x": 205.79673905254725, - "y": -4418.449902123716, - "rotation": 0.39334794273092843, - "action": "CARVE_LEFT" - }, - { - "x": 206.94502156932646, - "y": -4422.856734013228, - "rotation": 0.3392427359191042, - "action": "CARVE_LEFT" - }, - { - "x": 207.91095244360247, - "y": -4427.43686388403, - "rotation": 0.28513752910727996, - "action": "CARVE_LEFT" - }, - { - "x": 208.6943354524003, - "y": -4432.191186958885, - "rotation": 0.23103232229545576, - "action": "CARVE_LEFT" - }, - { - "x": 209.2949025334458, - "y": -4437.120663408651, - "rotation": 0.17692711548363155, - "action": "CARVE_LEFT" - }, - { - "x": 209.7123139956524, - "y": -4442.226318160836, - "rotation": 0.12282190867180734, - "action": "CARVE_LEFT" - }, - { - "x": 209.9461587290299, - "y": -4447.509240708685, - "rotation": 0.06871670185998313, - "action": "CARVE_LEFT" - }, - { - "x": 209.9959544140158, - "y": -4452.970584920794, - "rotation": 0.014611495048158916, - "action": "CARVE_LEFT" - }, - { - "x": 209.86117353688618, - "y": -4458.360894755222, - "rotation": 6.243691595415921, - "action": "CARVE_LEFT" - }, - { - "x": 209.5413463475145, - "y": -4463.5867808510075, - "rotation": 6.189586388604097, - "action": "CARVE_LEFT" - }, - { - "x": 209.0360772901881, - "y": -4468.64713840556, - "rotation": 6.135481181792272, - "action": "CARVE_LEFT" - }, - { - "x": 208.34504478598214, - "y": -4473.54093273812, - "rotation": 6.081375974980448, - "action": "CARVE_LEFT" - }, - { - "x": 207.46800101573174, - "y": -4478.267199085232, - "rotation": 6.0272707681686235, - "action": "CARVE_LEFT" - }, - { - "x": 206.40477170360128, - "y": -4482.8250423967775, - "rotation": 5.973165561356799, - "action": "CARVE_LEFT" - }, - { - "x": 205.15525590124878, - "y": -4487.21363713257, - "rotation": 5.919060354544975, - "action": "CARVE_LEFT" - }, - { - "x": 203.71942577258415, - "y": -4491.432227059505, - "rotation": 5.86495514773315, - "action": "CARVE_LEFT" - }, - { - "x": 202.09732637911958, - "y": -4495.480125049268, - "rotation": 5.810849940921326, - "action": "CARVE_LEFT" - }, - { - "x": 200.28907546591046, - "y": -4499.356712876596, - "rotation": 5.7567447341095015, - "action": "CARVE_LEFT" - }, - { - "x": 198.2948632480854, - "y": -4503.0614410180915, - "rotation": 5.702639527297677, - "action": "CARVE_LEFT" - }, - { - "x": 196.11495219796362, - "y": -4506.5938284515905, - "rotation": 5.648534320485853, - "action": "CARVE_LEFT" - }, - { - "x": 193.74967683275847, - "y": -4509.953462456078, - "rotation": 5.594429113674028, - "action": "CARVE_LEFT" - }, - { - "x": 191.19944350286514, - "y": -4513.139998412156, - "rotation": 5.540323906862204, - "action": "CARVE_LEFT" - }, - { - "x": 188.4647301807313, - "y": -4516.1531596030545, - "rotation": 5.4862187000503795, - "action": "CARVE_LEFT" - }, - { - "x": 185.54608625030895, - "y": -4518.99273701619, - "rotation": 5.432113493238555, - "action": "CARVE_LEFT" - }, - { - "x": 182.4441322970862, - "y": -4521.658589145273, - "rotation": 5.378008286426731, - "action": "CARVE_LEFT" - }, - { - "x": 179.15955989869713, - "y": -4524.1506417929495, - "rotation": 5.323903079614906, - "action": "CARVE_LEFT" - }, - { - "x": 175.6931314161083, - "y": -4526.4688878739935, - "rotation": 5.269797872803082, - "action": "CARVE_LEFT" - }, - { - "x": 172.04567978538068, - "y": -4528.613387219032, - "rotation": 5.2156926659912575, - "action": "CARVE_LEFT" - }, - { - "x": 168.21810831000502, - "y": -4530.584266378815, - "rotation": 5.161587459179433, - "action": "CARVE_LEFT" - }, - { - "x": 164.21139045380943, - "y": -4532.381718429019, - "rotation": 5.107482252367609, - "action": "CARVE_LEFT" - }, - { - "x": 160.02656963443755, - "y": -4534.006002775587, - "rotation": 5.053377045555784, - "action": "NOTHING" - }, - { - "x": 155.3962841235673, - "y": -4535.210327095947, - "rotation": 5.056867704059773, - "action": "NOTHING" - }, - { - "x": 150.78542495303458, - "y": -4536.425209199854, - "rotation": 5.060358362563761, - "action": "NOTHING" - }, - { - "x": 146.19390363479226, - "y": -4537.650630165651, - "rotation": 5.06384902106775, - "action": "NOTHING" - }, - { - "x": 141.62163225036247, - "y": -4538.88657146043, - "rotation": 5.067339679571738, - "action": "NOTHING" - }, - { - "x": 137.06852344925133, - "y": -4540.133014938876, - "rotation": 5.0708303380757265, - "action": "NOTHING" - }, - { - "x": 132.53449044736834, - "y": -4541.389942842104, - "rotation": 5.074320996579715, - "action": "NOTHING" - }, - { - "x": 128.01944702544964, - "y": -4542.657337796503, - "rotation": 5.077811655083703, - "action": "NOTHING" - }, - { - "x": 123.52330752748568, - "y": -4543.935182812587, - "rotation": 5.081302313587692, - "action": "NOTHING" - }, - { - "x": 119.04598685915303, - "y": -4545.223461283839, - "rotation": 5.08479297209168, - "action": "NOTHING" - }, - { - "x": 114.58740048625023, - "y": -4546.5221569855685, - "rotation": 5.088283630595669, - "action": "NOTHING" - }, - { - "x": 110.14746443313803, - "y": -4547.831254073766, - "rotation": 5.091774289099657, - "action": "NOTHING" - }, - { - "x": 105.72609528118358, - "y": -4549.150737083967, - "rotation": 5.095264947603646, - "action": "NOTHING" - }, - { - "x": 101.32321016720887, - "y": -4550.480590930109, - "rotation": 5.098755606107634, - "action": "NOTHING" - }, - { - "x": 96.93872678194329, - "y": -4551.820800903403, - "rotation": 5.1022462646116225, - "action": "NOTHING" - }, - { - "x": 92.57256336848026, - "y": -4553.171352671199, - "rotation": 5.105736923115611, - "action": "NOTHING" - }, - { - "x": 88.22463872073806, - "y": -4554.53223227586, - "rotation": 5.109227581619599, - "action": "NOTHING" - }, - { - "x": 83.89487218192463, - "y": -4555.903426133638, - "rotation": 5.112718240123588, - "action": "NOTHING" - }, - { - "x": 79.58318364300659, - "y": -4557.2849210335535, - "rotation": 5.116208898627576, - "action": "NOTHING" - }, - { - "x": 75.28949354118228, - "y": -4558.676704136274, - "rotation": 5.119699557131565, - "action": "CARVE_RIGHT" - }, - { - "x": 71.60922577704079, - "y": -4560.630131231041, - "rotation": 5.173804763943389, - "action": "CARVE_RIGHT" - }, - { - "x": 68.1121053940717, - "y": -4562.747536860917, - "rotation": 5.2279099707552135, - "action": "CARVE_RIGHT" - }, - { - "x": 64.7973015032774, - "y": -4565.028887342792, - "rotation": 5.282015177567038, - "action": "CARVE_RIGHT" - }, - { - "x": 61.66405805367877, - "y": -4567.47421666957, - "rotation": 5.336120384378862, - "action": "CARVE_RIGHT" - }, - { - "x": 58.71169361360519, - "y": -4570.083626311217, - "rotation": 5.390225591190687, - "action": "CARVE_RIGHT" - }, - { - "x": 55.93960115258446, - "y": -4572.857285016364, - "rotation": 5.444330798002511, - "action": "CARVE_RIGHT" - }, - { - "x": 53.34724782383137, - "y": -4575.7954286144495, - "rotation": 5.4984360048143355, - "action": "CARVE_RIGHT" - }, - { - "x": 50.93417474733319, - "y": -4578.898359818411, - "rotation": 5.55254121162616, - "action": "CARVE_RIGHT" - }, - { - "x": 48.69999679353053, - "y": -4582.16644802792, - "rotation": 5.606646418437984, - "action": "CARVE_RIGHT" - }, - { - "x": 46.644402367591994, - "y": -4585.600129133154, - "rotation": 5.660751625249809, - "action": "CARVE_RIGHT" - }, - { - "x": 44.76715319428107, - "y": -4589.1999053191175, - "rotation": 5.714856832061633, - "action": "CARVE_RIGHT" - }, - { - "x": 43.06808410341375, - "y": -4592.966344870496, - "rotation": 5.7689620388734575, - "action": "CARVE_RIGHT" - }, - { - "x": 41.54710281590521, - "y": -4596.900081977049, - "rotation": 5.823067245685282, - "action": "CARVE_RIGHT" - }, - { - "x": 40.204189730404075, - "y": -4601.00181653954, - "rotation": 5.877172452497106, - "action": "CARVE_RIGHT" - }, - { - "x": 39.039397710512695, - "y": -4605.272313976203, - "rotation": 5.931277659308931, - "action": "CARVE_RIGHT" - }, - { - "x": 38.052851872591916, - "y": -4609.712405029737, - "rotation": 5.985382866120755, - "action": "CARVE_RIGHT" - }, - { - "x": 37.24474937414876, - "y": -4614.3229855748405, - "rotation": 6.0394880729325795, - "action": "CARVE_RIGHT" - }, - { - "x": 36.6153592028055, - "y": -4619.10501642627, - "rotation": 6.093593279744404, - "action": "CARVE_RIGHT" - }, - { - "x": 36.16502196584857, - "y": -4624.05952314743, - "rotation": 6.147698486556228, - "action": "CARVE_RIGHT" - }, - { - "x": 35.894149680355845, - "y": -4629.187595859495, - "rotation": 6.201803693368053, - "action": "CARVE_RIGHT" - }, - { - "x": 35.803225563900696, - "y": -4634.4903890510495, - "rotation": 6.255908900179877, - "action": "CARVE_RIGHT" - }, - { - "x": 35.89279191674917, - "y": -4639.8025293956825, - "rotation": 0.026828799812115278, - "action": "CARVE_RIGHT" - }, - { - "x": 36.16335332595416, - "y": -4644.954430558468, - "rotation": 0.08093400662393949, - "action": "CARVE_RIGHT" - }, - { - "x": 36.615340075591405, - "y": -4649.944954627457, - "rotation": 0.1350392134357637, - "action": "CARVE_RIGHT" - }, - { - "x": 37.249108364694656, - "y": -4654.773033914867, - "rotation": 0.1891444202475879, - "action": "CARVE_RIGHT" - }, - { - "x": 38.064940524591634, - "y": -4659.437670752257, - "rotation": 0.2432496270594121, - "action": "CARVE_RIGHT" - }, - { - "x": 39.06304523564226, - "y": -4663.937937286282, - "rotation": 0.29735483387123635, - "action": "CARVE_RIGHT" - }, - { - "x": 40.24355774338072, - "y": -4668.272975274992, - "rotation": 0.3514600406830606, - "action": "CARVE_RIGHT" - }, - { - "x": 41.60654007406305, - "y": -4672.441995884697, - "rotation": 0.4055652474948848, - "action": "CARVE_RIGHT" - }, - { - "x": 43.15198124962164, - "y": -4676.444279487386, - "rotation": 0.45967045430670905, - "action": "CARVE_RIGHT" - }, - { - "x": 44.879797502028424, - "y": -4680.279175458707, - "rotation": 0.5137756611185332, - "action": "CARVE_RIGHT" - }, - { - "x": 46.789832487068104, - "y": -4683.946101976491, - "rotation": 0.5678808679303574, - "action": "CARVE_RIGHT" - }, - { - "x": 48.881857497523185, - "y": -4687.444545819838, - "rotation": 0.6219860747421816, - "action": "CARVE_RIGHT" - }, - { - "x": 51.155571675772165, - "y": -4690.774062168747, - "rotation": 0.6760912815540058, - "action": "CARVE_RIGHT" - }, - { - "x": 53.610602225802616, - "y": -4693.934274404302, - "rotation": 0.73019648836583, - "action": "CARVE_RIGHT" - }, - { - "x": 56.24650462464054, - "y": -4696.924873909402, - "rotation": 0.7843016951776541, - "action": "CARVE_RIGHT" - }, - { - "x": 59.06276283319767, - "y": -4699.745619870034, - "rotation": 0.8384069019894783, - "action": "CARVE_RIGHT" - }, - { - "x": 62.058789506538176, - "y": -4702.396339077102, - "rotation": 0.8925121088013025, - "action": "CARVE_RIGHT" - }, - { - "x": 65.23392620356637, - "y": -4704.876925728793, - "rotation": 0.9466173156131267, - "action": "CARVE_RIGHT" - }, - { - "x": 68.58744359613684, - "y": -4707.18734123348, - "rotation": 1.000722522424951, - "action": "CARVE_RIGHT" - }, - { - "x": 72.11854167758867, - "y": -4709.327614013178, - "rotation": 1.0548277292367751, - "action": "CARVE_RIGHT" - }, - { - "x": 75.82634997070515, - "y": -4711.297839307532, - "rotation": 1.1089329360485993, - "action": "CARVE_RIGHT" - }, - { - "x": 79.70992773510064, - "y": -4713.098178978342, - "rotation": 1.1630381428604235, - "action": "CARVE_RIGHT" - }, - { - "x": 83.76826417403582, - "y": -4714.728861314631, - "rotation": 1.2171433496722477, - "action": "CARVE_RIGHT" - }, - { - "x": 88.0002786406633, - "y": -4716.190180838242, - "rotation": 1.2712485564840719, - "action": "CARVE_RIGHT" - }, - { - "x": 92.40482084370454, - "y": -4717.482498109971, - "rotation": 1.325353763295896, - "action": "CARVE_RIGHT" - }, - { - "x": 96.98067105256008, - "y": -4718.606239536235, - "rotation": 1.3794589701077202, - "action": "CARVE_RIGHT" - }, - { - "x": 101.72654030185426, - "y": -4719.561897176267, - "rotation": 1.4335641769195444, - "action": "NOTHING" - }, - { - "x": 106.97716544223427, - "y": -4720.0402996176035, - "rotation": 1.4300735184155557, - "action": "NOTHING" - }, - { - "x": 112.2053422447798, - "y": -4720.52966734572, - "rotation": 1.426582859911567, - "action": "NOTHING" - }, - { - "x": 117.41118464612853, - "y": -4721.029963134859, - "rotation": 1.4230922014075784, - "action": "NOTHING" - }, - { - "x": 122.59480594476729, - "y": -4721.541150199951, - "rotation": 1.4196015429035898, - "action": "NOTHING" - }, - { - "x": 127.75631880279568, - "y": -4722.0631921953045, - "rotation": 1.416110884399601, - "action": "NOTHING" - }, - { - "x": 132.89583524768497, - "y": -4722.596053213313, - "rotation": 1.4126202258956124, - "action": "NOTHING" - }, - { - "x": 138.0134666740325, - "y": -4723.1396977831555, - "rotation": 1.4091295673916238, - "action": "CARVE_LEFT" - }, - { - "x": 142.43457511418305, - "y": -4724.31883487981, - "rotation": 1.3550243605797996, - "action": "CARVE_LEFT" - }, - { - "x": 146.67215455222498, - "y": -4725.6592141664605, - "rotation": 1.3009191537679754, - "action": "CARVE_LEFT" - }, - { - "x": 150.72735982993748, - "y": -4727.160508801052, - "rotation": 1.2468139469561512, - "action": "CARVE_LEFT" - }, - { - "x": 154.60127001131096, - "y": -4728.8224604727475, - "rotation": 1.192708740144327, - "action": "CARVE_LEFT" - }, - { - "x": 158.2948886038242, - "y": -4730.644879200634, - "rotation": 1.1386035333325029, - "action": "CARVE_LEFT" - }, - { - "x": 161.8091437791147, - "y": -4732.627643132982, - "rotation": 1.0844983265206787, - "action": "CARVE_LEFT" - }, - { - "x": 165.1448885930436, - "y": -4734.77069834706, - "rotation": 1.0303931197088545, - "action": "CARVE_LEFT" - }, - { - "x": 168.3029012051572, - "y": -4737.074058649501, - "rotation": 0.9762879128970303, - "action": "SLIDE_LEFT" - }, - { - "x": 170.22944660003728, - "y": -4740.452070652687, - "rotation": 0.9047294135652628, - "action": "SLIDE_LEFT" - }, - { - "x": 171.98144683418414, - "y": -4743.927203800079, - "rotation": 0.8331709142334953, - "action": "SLIDE_LEFT" - }, - { - "x": 173.56305482983814, - "y": -4747.496711348411, - "rotation": 0.7616124149017278, - "action": "SLIDE_LEFT" - }, - { - "x": 174.97832553320845, - "y": -4751.157934856145, - "rotation": 0.6900539155699603, - "action": "SLIDE_LEFT" - }, - { - "x": 176.23121620120807, - "y": -4754.908303923292, - "rotation": 0.6184954162381928, - "action": "SLIDE_LEFT" - }, - { - "x": 177.32558668740117, - "y": -4758.745335931948, - "rotation": 0.5469369169064253, - "action": "CARVE_LEFT" - }, - { - "x": 178.80568036037116, - "y": -4762.228257423471, - "rotation": 0.4928317100946011, - "action": "CARVE_LEFT" - }, - { - "x": 180.12430293527936, - "y": -4765.864446416767, - "rotation": 0.43872650328277685, - "action": "CARVE_LEFT" - }, - { - "x": 181.28137301541778, - "y": -4769.654693346593, - "rotation": 0.3846212964709526, - "action": "CARVE_LEFT" - }, - { - "x": 182.2767370609624, - "y": -4773.599853873742, - "rotation": 0.3305160896591284, - "action": "CARVE_LEFT" - }, - { - "x": 183.11016960024114, - "y": -4777.700848692882, - "rotation": 0.27641088284730414, - "action": "CARVE_LEFT" - }, - { - "x": 183.7813734404215, - "y": -4781.958663340926, - "rotation": 0.22230567603547993, - "action": "CARVE_LEFT" - }, - { - "x": 184.28997987761926, - "y": -4786.37434800594, - "rotation": 0.16820046922365572, - "action": "CARVE_LEFT" - }, - { - "x": 184.63554890642982, - "y": -4790.949017336563, - "rotation": 0.11409526241183152, - "action": "CARVE_LEFT" - }, - { - "x": 184.81756942888376, - "y": -4795.683850251964, - "rotation": 0.0599900556000073, - "action": "CARVE_LEFT" - }, - { - "x": 184.83545946282803, - "y": -4800.580089752319, - "rotation": 0.005884848788183086, - "action": "CARVE_LEFT" - }, - { - "x": 184.68860482101678, - "y": -4805.365764750459, - "rotation": 6.234964949155945, - "action": "CARVE_LEFT" - }, - { - "x": 184.37646012962077, - "y": -4810.006497781017, - "rotation": 6.18085974234412, - "action": "CARVE_LEFT" - }, - { - "x": 183.898554463169, - "y": -4814.501111638933, - "rotation": 6.126754535532296, - "action": "CARVE_LEFT" - }, - { - "x": 183.25449112617122, - "y": -4818.848499481169, - "rotation": 6.0726493287204715, - "action": "CARVE_LEFT" - }, - { - "x": 182.443947435341, - "y": -4823.047624621476, - "rotation": 6.018544121908647, - "action": "CARVE_LEFT" - }, - { - "x": 181.46667450241765, - "y": -4827.097520325724, - "rotation": 5.964438915096823, - "action": "CARVE_LEFT" - }, - { - "x": 180.32249701758568, - "y": -4830.997289607796, - "rotation": 5.910333708284998, - "action": "CARVE_LEFT" - }, - { - "x": 179.0113130334898, - "y": -4834.746105026034, - "rotation": 5.856228501473174, - "action": "CARVE_LEFT" - }, - { - "x": 177.53309374984448, - "y": -4838.343208480248, - "rotation": 5.8021232946613495, - "action": "CARVE_LEFT" - }, - { - "x": 175.88788329863573, - "y": -4841.787911009286, - "rotation": 5.748018087849525, - "action": "CARVE_LEFT" - }, - { - "x": 174.0757985299143, - "y": -4845.079592589148, - "rotation": 5.693912881037701, - "action": "CARVE_LEFT" - }, - { - "x": 172.09702879817826, - "y": -4848.217701931661, - "rotation": 5.639807674225876, - "action": "CARVE_LEFT" - }, - { - "x": 169.95183574934353, - "y": -4851.201756283709, - "rotation": 5.585702467414052, - "action": "CARVE_LEFT" - }, - { - "x": 167.64055310830085, - "y": -4854.031341227005, - "rotation": 5.5315972606022275, - "action": "CARVE_LEFT" - }, - { - "x": 165.16358646705768, - "y": -4856.70611047842, - "rotation": 5.477492053790403, - "action": "CARVE_LEFT" - }, - { - "x": 162.5214130734632, - "y": -4859.225785690853, - "rotation": 5.423386846978579, - "action": "CARVE_LEFT" - }, - { - "x": 159.71458162051536, - "y": -4861.590156254656, - "rotation": 5.369281640166754, - "action": "CARVE_LEFT" - }, - { - "x": 156.74371203624793, - "y": -4863.799079099596, - "rotation": 5.31517643335493, - "action": "CARVE_LEFT" - }, - { - "x": 153.60949527419638, - "y": -4865.852478497364, - "rotation": 5.261071226543105, - "action": "CARVE_LEFT" - }, - { - "x": 150.3126931044409, - "y": -4867.750345864627, - "rotation": 5.206966019731281, - "action": "CARVE_LEFT" - }, - { - "x": 146.85413790522512, - "y": -4869.492739566617, - "rotation": 5.152860812919457, - "action": "CARVE_LEFT" - }, - { - "x": 143.23473245514876, - "y": -4871.079784721263, - "rotation": 5.098755606107632, - "action": "CARVE_LEFT" - }, - { - "x": 139.45544972593322, - "y": -4872.511673003861, - "rotation": 5.044650399295808, - "action": "CARVE_LEFT" - }, - { - "x": 135.51733267575793, - "y": -4873.788662452273, - "rotation": 4.990545192483983, - "action": "CARVE_LEFT" - }, - { - "x": 131.4214940431665, - "y": -4874.9110772726735, - "rotation": 4.936439985672159, - "action": "CARVE_LEFT" - }, - { - "x": 127.16911614154083, - "y": -4875.879307645819, - "rotation": 4.882334778860335, - "action": "CARVE_LEFT" - }, - { - "x": 122.76145065414192, - "y": -4876.693809533854, - "rotation": 4.82822957204851, - "action": "CARVE_LEFT" - }, - { - "x": 118.19981842971566, - "y": -4877.355104487646, - "rotation": 4.774124365236686, - "action": "CARVE_LEFT" - }, - { - "x": 113.48560927866218, - "y": -4877.863779454653, - "rotation": 4.720019158424861, - "action": "NOTHING" - }, - { - "x": 108.27063440858318, - "y": -4877.8982090306645, - "rotation": 4.72350981692885, - "action": "NOTHING" - }, - { - "x": 103.07856926384379, - "y": -4877.943347814598, - "rotation": 4.727000475432838, - "action": "NOTHING" - }, - { - "x": 97.90928893974326, - "y": -4877.999149928322, - "rotation": 4.730491133936827, - "action": "NOTHING" - }, - { - "x": 92.76266919746124, - "y": -4878.065569956757, - "rotation": 4.733981792440815, - "action": "NOTHING" - }, - { - "x": 87.63858646222525, - "y": -4878.142562946515, - "rotation": 4.737472450944804, - "action": "NOTHING" - }, - { - "x": 82.53691782148303, - "y": -4878.230084404547, - "rotation": 4.740963109448792, - "action": "NOTHING" - }, - { - "x": 77.4575410230796, - "y": -4878.32809029679, - "rotation": 4.7444537679527805, - "action": "CARVE_RIGHT" - }, - { - "x": 73.05613210638525, - "y": -4879.043733743993, - "rotation": 4.798558974764605, - "action": "CARVE_RIGHT" - }, - { - "x": 68.8234164104738, - "y": -4879.906209710583, - "rotation": 4.852664181576429, - "action": "CARVE_RIGHT" - }, - { - "x": 64.7581332369994, - "y": -4880.915094819409, - "rotation": 4.906769388388254, - "action": "CARVE_RIGHT" - }, - { - "x": 60.859097947738825, - "y": -4882.0700344826955, - "rotation": 4.960874595200078, - "action": "CARVE_RIGHT" - }, - { - "x": 57.12520174258437, - "y": -4883.370742700086, - "rotation": 5.0149798020119025, - "action": "CARVE_RIGHT" - }, - { - "x": 53.55541143814551, - "y": -4884.81700185724, - "rotation": 5.069085008823727, - "action": "CARVE_RIGHT" - }, - { - "x": 50.148769246957556, - "y": -4886.408662524975, - "rotation": 5.123190215635551, - "action": "CARVE_RIGHT" - }, - { - "x": 46.904392557295914, - "y": -4888.145643258971, - "rotation": 5.177295422447376, - "action": "CARVE_RIGHT" - }, - { - "x": 43.821473713594195, - "y": -4890.027930400025, - "rotation": 5.2314006292592, - "action": "CARVE_RIGHT" - }, - { - "x": 40.899279797464615, - "y": -4892.055577874849, - "rotation": 5.2855058360710245, - "action": "CARVE_RIGHT" - }, - { - "x": 38.13715240931918, - "y": -4894.228706997426, - "rotation": 5.339611042882849, - "action": "CARVE_RIGHT" - }, - { - "x": 35.534507450589935, - "y": -4896.547506270902, - "rotation": 5.393716249694673, - "action": "CARVE_RIGHT" - }, - { - "x": 33.09083490654683, - "y": -4899.012231190032, - "rotation": 5.447821456506498, - "action": "CARVE_RIGHT" - }, - { - "x": 30.805698629711554, - "y": -4901.623204044168, - "rotation": 5.501926663318322, - "action": "CARVE_RIGHT" - }, - { - "x": 28.67873612386576, - "y": -4904.380813720788, - "rotation": 5.5560318701301465, - "action": "CARVE_RIGHT" - }, - { - "x": 26.70965832865218, - "y": -4907.285515509567, - "rotation": 5.610137076941971, - "action": "CARVE_RIGHT" - }, - { - "x": 24.898249404766965, - "y": -4910.337830906987, - "rotation": 5.664242283753795, - "action": "CARVE_RIGHT" - }, - { - "x": 23.244366519741817, - "y": -4913.538347421487, - "rotation": 5.71834749056562, - "action": "CARVE_RIGHT" - }, - { - "x": 21.747939634314232, - "y": -4916.88771837915, - "rotation": 5.772452697377444, - "action": "CARVE_RIGHT" - }, - { - "x": 20.40897128938439, - "y": -4920.386662729922, - "rotation": 5.8265579041892686, - "action": "CARVE_RIGHT" - }, - { - "x": 19.227536393557113, - "y": -4924.035964854371, - "rotation": 5.880663111001093, - "action": "CARVE_RIGHT" - }, - { - "x": 18.203782011267343, - "y": -4927.83647437097, - "rotation": 5.934768317812917, - "action": "CARVE_RIGHT" - }, - { - "x": 17.33792715148761, - "y": -4931.789105943922, - "rotation": 5.988873524624742, - "action": "CARVE_RIGHT" - }, - { - "x": 16.630262557015953, - "y": -4935.894839091506, - "rotation": 6.042978731436566, - "action": "CARVE_RIGHT" - }, - { - "x": 16.08115049434278, - "y": -4940.154717994957, - "rotation": 6.097083938248391, - "action": "CARVE_RIGHT" - }, - { - "x": 15.691024544095082, - "y": -4944.569851307867, - "rotation": 6.151189145060215, - "action": "CARVE_RIGHT" - }, - { - "x": 15.460389392056566, - "y": -4949.14141196612, - "rotation": 6.205294351872039, - "action": "CARVE_RIGHT" - }, - { - "x": 15.389820620762094, - "y": -4953.870636998346, - "rotation": 6.259399558683864, - "action": "CARVE_RIGHT" - }, - { - "x": 15.479949292034014, - "y": -4958.591097624502, - "rotation": 0.030319458316101944, - "action": "CARVE_RIGHT" - }, - { - "x": 15.731362392795278, - "y": -4963.170823532494, - "rotation": 0.08442466512792615, - "action": "CARVE_RIGHT" - }, - { - "x": 16.14457233335592, - "y": -4967.608598009021, - "rotation": 0.13852987193975036, - "action": "CARVE_RIGHT" - }, - { - "x": 16.72001716615345, - "y": -4971.903274823635, - "rotation": 0.19263507875157457, - "action": "CARVE_RIGHT" - }, - { - "x": 17.458060803891755, - "y": -4976.053778023167, - "rotation": 0.24674028556339878, - "action": "CARVE_RIGHT" - }, - { - "x": 18.358993237080064, - "y": -4980.059101726719, - "rotation": 0.300845492375223, - "action": "CARVE_RIGHT" - }, - { - "x": 19.4230307509736, - "y": -4983.918309921214, - "rotation": 0.35495069918704725, - "action": "CARVE_RIGHT" - }, - { - "x": 20.650316141917443, - "y": -4987.63053625751, - "rotation": 0.4090559059988715, - "action": "CARVE_RIGHT" - }, - { - "x": 22.04091893309526, - "y": -4991.194983847073, - "rotation": 0.4631611128106957, - "action": "CARVE_RIGHT" - }, - { - "x": 23.594835589684376, - "y": -4994.610925059202, - "rotation": 0.5172663196225199, - "action": "CARVE_RIGHT" - }, - { - "x": 25.31198973341885, - "y": -4997.877701318817, - "rotation": 0.5713715264343441, - "action": "CARVE_RIGHT" - }, - { - "x": 27.19223235656204, - "y": -5000.994722904802, - "rotation": 0.6254767332461683, - "action": "CARVE_RIGHT" - }, - { - "x": 29.235342035290273, - "y": -5003.961468748891, - "rotation": 0.6795819400579924, - "action": "CARVE_RIGHT" - }, - { - "x": 31.441025142489135, - "y": -5006.777486235116, - "rotation": 0.7336871468698166, - "action": "CARVE_RIGHT" - }, - { - "x": 33.80891605996398, - "y": -5009.442390999801, - "rotation": 0.7877923536816408, - "action": "CARVE_RIGHT" - }, - { - "x": 36.338577390066135, - "y": -5011.955866732107, - "rotation": 0.841897560493465, - "action": "CARVE_RIGHT" - }, - { - "x": 39.02950016673643, - "y": -5014.3176649751185, - "rotation": 0.8960027673052892, - "action": "CARVE_RIGHT" - }, - { - "x": 41.88110406596753, - "y": -5016.527604927483, - "rotation": 0.9501079741171133, - "action": "CARVE_RIGHT" - }, - { - "x": 44.892737615686585, - "y": -5018.58557324559, - "rotation": 1.0042131809289376, - "action": "CARVE_RIGHT" - }, - { - "x": 48.06367840505986, - "y": -5020.491523846299, - "rotation": 1.0583183877407618, - "action": "CARVE_RIGHT" - }, - { - "x": 51.3931332932207, - "y": -5022.2454777101975, - "rotation": 1.112423594552586, - "action": "CARVE_RIGHT" - }, - { - "x": 54.88023861742246, - "y": -5023.847522685412, - "rotation": 1.1665288013644102, - "action": "CARVE_RIGHT" - }, - { - "x": 58.52406040061789, - "y": -5025.297813291948, - "rotation": 1.2206340081762344, - "action": "CARVE_RIGHT" - }, - { - "x": 62.32359455846655, - "y": -5026.596570526576, - "rotation": 1.2747392149880585, - "action": "NOTHING" - }, - { - "x": 66.52797669088541, - "y": -5027.5138761264725, - "rotation": 1.2712485564840699, - "action": "CARVE_LEFT" - }, - { - "x": 70.1459367283421, - "y": -5028.967610585222, - "rotation": 1.2171433496722457, - "action": "CARVE_LEFT" - }, - { - "x": 73.59888272503827, - "y": -5030.568319013417, - "rotation": 1.1630381428604215, - "action": "CARVE_LEFT" - }, - { - "x": 76.8877093082407, - "y": -5032.315909182789, - "rotation": 1.1089329360485973, - "action": "CARVE_LEFT" - }, - { - "x": 80.01323611121371, - "y": -5034.210356684477, - "rotation": 1.0548277292367731, - "action": "CARVE_LEFT" - }, - { - "x": 82.9762079923071, - "y": -5036.251704729725, - "rotation": 1.000722522424949, - "action": "CARVE_LEFT" - }, - { - "x": 85.77729525344303, - "y": -5038.44006395114, - "rotation": 0.9466173156131248, - "action": "CARVE_LEFT" - }, - { - "x": 88.4170938580036, - "y": -5040.775612204487, - "rotation": 0.8925121088013006, - "action": "CARVE_LEFT" - }, - { - "x": 90.89612564812037, - "y": -5043.258594371037, - "rotation": 0.8384069019894764, - "action": "CARVE_LEFT" - }, - { - "x": 93.21483856136781, - "y": -5045.8893221604585, - "rotation": 0.7843016951776522, - "action": "CARVE_LEFT" - }, - { - "x": 95.37360684686192, - "y": -5048.668173914243, - "rotation": 0.7301964883658281, - "action": "CARVE_LEFT" - }, - { - "x": 97.37273128076573, - "y": -5051.595594409687, - "rotation": 0.6760912815540039, - "action": "CARVE_LEFT" - }, - { - "x": 99.21243938120331, - "y": -5054.6720946644, - "rotation": 0.6219860747421797, - "action": "CARVE_LEFT" - }, - { - "x": 100.89288562258362, - "y": -5057.898251741361, - "rotation": 0.5678808679303555, - "action": "CARVE_LEFT" - }, - { - "x": 102.41415164933605, - "y": -5061.274708554505, - "rotation": 0.5137756611185313, - "action": "CARVE_LEFT" - }, - { - "x": 103.77624648905896, - "y": -5064.802173674852, - "rotation": 0.4596704543067071, - "action": "CARVE_LEFT" - }, - { - "x": 104.97910676508295, - "y": -5068.481421137164, - "rotation": 0.4055652474948829, - "action": "CARVE_LEFT" - }, - { - "x": 106.0225969084502, - "y": -5072.313290247138, - "rotation": 0.35146004068305864, - "action": "CARVE_LEFT" - }, - { - "x": 106.90650936931162, - "y": -5076.298685389132, - "rotation": 0.2973548338712344, - "action": "CARVE_LEFT" - }, - { - "x": 107.6305648277433, - "y": -5080.438575834417, - "rotation": 0.2432496270594102, - "action": "CARVE_LEFT" - }, - { - "x": 108.1944124039836, - "y": -5084.733995549963, - "rotation": 0.189144420247586, - "action": "CARVE_LEFT" - }, - { - "x": 108.59762986809278, - "y": -5089.186043007746, - "rotation": 0.13503921343576178, - "action": "CARVE_LEFT" - }, - { - "x": 108.83972384903626, - "y": -5093.795880994585, - "rotation": 0.08093400662393757, - "action": "CARVE_LEFT" - }, - { - "x": 108.9201300431934, - "y": -5098.564736422506, - "rotation": 0.026828799812113356, - "action": "CARVE_LEFT" - }, - { - "x": 108.8382257320684, - "y": -5103.341484774049, - "rotation": 6.255908900179875, - "action": "CARVE_LEFT" - }, - { - "x": 108.59342697634334, - "y": -5107.975941255625, - "rotation": 6.201803693368051, - "action": "CARVE_LEFT" - }, - { - "x": 108.18522440171796, - "y": -5112.466892111128, - "rotation": 6.1476984865562265, - "action": "CARVE_LEFT" - }, - { - "x": 107.6131829802055, - "y": -5116.813194056278, - "rotation": 6.093593279744402, - "action": "CARVE_LEFT" - }, - { - "x": 106.87694181202998, - "y": -5121.013774073087, - "rotation": 6.039488072932578, - "action": "CARVE_LEFT" - }, - { - "x": 105.97621390812333, - "y": -5125.06762920488, - "rotation": 5.985382866120753, - "action": "CARVE_LEFT" - }, - { - "x": 104.91078597322063, - "y": -5128.973826351882, - "rotation": 5.931277659308929, - "action": "CARVE_LEFT" - }, - { - "x": 103.68051818955216, - "y": -5132.731502067366, - "rotation": 5.8771724524971045, - "action": "CARVE_LEFT" - }, - { - "x": 102.28534400113041, - "y": -5136.339862354355, - "rotation": 5.82306724568528, - "action": "CARVE_LEFT" - }, - { - "x": 100.72526989863064, - "y": -5139.7981824628905, - "rotation": 5.768962038873456, - "action": "CARVE_LEFT" - }, - { - "x": 99.0003752048634, - "y": -5143.105806687845, - "rotation": 5.714856832061631, - "action": "CARVE_LEFT" - }, - { - "x": 97.11081186083736, - "y": -5146.2621481672995, - "rotation": 5.660751625249807, - "action": "CARVE_LEFT" - }, - { - "x": 95.05680421241101, - "y": -5149.266688681468, - "rotation": 5.6066464184379825, - "action": "CARVE_LEFT" - }, - { - "x": 92.83864879753163, - "y": -5152.118978452176, - "rotation": 5.552541211626158, - "action": "CARVE_LEFT" - }, - { - "x": 90.45671413405994, - "y": -5154.818635942886, - "rotation": 5.498436004814334, - "action": "CARVE_LEFT" - }, - { - "x": 87.91144050817887, - "y": -5157.36534765928, - "rotation": 5.444330798002509, - "action": "CARVE_LEFT" - }, - { - "x": 85.20333976338506, - "y": -5159.758867950372, - "rotation": 5.390225591190685, - "action": "CARVE_LEFT" - }, - { - "x": 82.33299509006132, - "y": -5161.999018810191, - "rotation": 5.3361203843788605, - "action": "CARVE_LEFT" - }, - { - "x": 79.30106081562873, - "y": -5164.085689679982, - "rotation": 5.282015177567036, - "action": "CARVE_LEFT" - }, - { - "x": 76.10826219527671, - "y": -5166.018837250972, - "rotation": 5.227909970755212, - "action": "CARVE_LEFT" - }, - { - "x": 72.75539520326952, - "y": -5167.79848526766, - "rotation": 5.173804763943387, - "action": "CARVE_LEFT" - }, - { - "x": 69.24332632482783, - "y": -5169.424724331662, - "rotation": 5.119699557131563, - "action": "CARVE_LEFT" - }, - { - "x": 65.57299234858368, - "y": -5170.897711706083, - "rotation": 5.0655943503197385, - "action": "CARVE_LEFT" - }, - { - "x": 61.74540015960732, - "y": -5172.217671120432, - "rotation": 5.011489143507914, - "action": "CARVE_RIGHT" - }, - { - "x": 58.08568767217692, - "y": -5173.686395853082, - "rotation": 5.0655943503197385, - "action": "CARVE_RIGHT" - }, - { - "x": 54.59287632184866, - "y": -5175.303717852648, - "rotation": 5.119699557131563, - "action": "CARVE_RIGHT" - }, - { - "x": 51.266062786197764, - "y": -5177.069537112621, - "rotation": 5.173804763943387, - "action": "CARVE_RIGHT" - }, - { - "x": 48.10441876504555, - "y": -5178.983821471448, - "rotation": 5.227909970755212, - "action": "CARVE_RIGHT" - }, - { - "x": 45.107190761289274, - "y": -5181.046606413161, - "rotation": 5.282015177567036, - "action": "CARVE_RIGHT" - }, - { - "x": 42.27369986233328, - "y": -5183.2579948685525, - "rotation": 5.3361203843788605, - "action": "CARVE_RIGHT" - }, - { - "x": 39.60334152211978, - "y": -5185.618157016906, - "rotation": 5.390225591190685, - "action": "CARVE_RIGHT" - }, - { - "x": 37.09558534375766, - "y": -5188.127330088261, - "rotation": 5.444330798002509, - "action": "CARVE_RIGHT" - }, - { - "x": 34.7499748627479, - "y": -5190.785818166233, - "rotation": 5.498436004814334, - "action": "CARVE_RIGHT" - }, - { - "x": 32.56612733080377, - "y": -5193.59399199137, - "rotation": 5.552541211626158, - "action": "CARVE_RIGHT" - }, - { - "x": 30.54373350026454, - "y": -5196.552288765053, - "rotation": 5.6066464184379825, - "action": "CARVE_RIGHT" - }, - { - "x": 28.682557409100845, - "y": -5199.661211953938, - "rotation": 5.660751625249807, - "action": "CARVE_RIGHT" - }, - { - "x": 26.982436166510382, - "y": -5202.921331094933, - "rotation": 5.714856832061631, - "action": "CARVE_RIGHT" - }, - { - "x": 25.443279739102234, - "y": -5206.333281600718, - "rotation": 5.768962038873456, - "action": "CARVE_RIGHT" - }, - { - "x": 24.06507073766834, - "y": -5209.897764565795, - "rotation": 5.82306724568528, - "action": "CARVE_RIGHT" - }, - { - "x": 22.84786420454052, - "y": -5213.615546573078, - "rotation": 5.8771724524971045, - "action": "CARVE_RIGHT" - }, - { - "x": 21.791787401531558, - "y": -5217.48745950101, - "rotation": 5.931277659308929, - "action": "CARVE_RIGHT" - }, - { - "x": 20.897039598458743, - "y": -5221.514400331215, - "rotation": 5.985382866120753, - "action": "CARVE_RIGHT" - }, - { - "x": 20.1638918622484, - "y": -5225.6973309566865, - "rotation": 6.039488072932578, - "action": "CARVE_RIGHT" - }, - { - "x": 19.592686846619806, - "y": -5230.037277990491, - "rotation": 6.093593279744402, - "action": "CARVE_RIGHT" - }, - { - "x": 19.18383858234704, - "y": -5234.535332575011, - "rotation": 6.1476984865562265, - "action": "CARVE_RIGHT" - }, - { - "x": 18.937832268097157, - "y": -5239.192650191709, - "rotation": 6.201803693368051, - "action": "CARVE_RIGHT" - }, - { - "x": 18.855224061843238, - "y": -5244.010450471416, - "rotation": 6.255908900179875, - "action": "CARVE_RIGHT" - }, - { - "x": 18.936628963768612, - "y": -5248.838538810575, - "rotation": 0.026828799812113502, - "action": "CARVE_RIGHT" - }, - { - "x": 19.182624021066125, - "y": -5253.52265923061, - "rotation": 0.08093400662393771, - "action": "CARVE_RIGHT" - }, - { - "x": 19.59371173887725, - "y": -5258.061604568828, - "rotation": 0.13503921343576192, - "action": "CARVE_RIGHT" - }, - { - "x": 20.170320298928534, - "y": -5262.454238112652, - "rotation": 0.18914442024758613, - "action": "CARVE_RIGHT" - }, - { - "x": 20.912803777566808, - "y": -5266.69949339414, - "rotation": 0.24324962705941033, - "action": "NOTHING" - }, - { - "x": 21.727091310303813, - "y": -5270.885206071086, - "rotation": 0.23975896855542167, - "action": "NOTHING" - }, - { - "x": 22.5306565078704, - "y": -5275.087820859768, - "rotation": 0.236268310051433, - "action": "NOTHING" - }, - { - "x": 23.323470908208357, - "y": -5279.307395437758, - "rotation": 0.23277765154744434, - "action": "NOTHING" - }, - { - "x": 24.105505812864223, - "y": -5283.5439876326, - "rotation": 0.22928699304345568, - "action": "NOTHING" - }, - { - "x": 24.876732287674404, - "y": -5287.797655421328, - "rotation": 0.22579633453946701, - "action": "NOTHING" - }, - { - "x": 25.637121163448384, - "y": -5292.068456929984, - "rotation": 0.22230567603547835, - "action": "NOTHING" - }, - { - "x": 26.386643036650092, - "y": -5296.356450433137, - "rotation": 0.2188150175314897, - "action": "NOTHING" - }, - { - "x": 27.125268270077402, - "y": -5300.661694353407, - "rotation": 0.21532435902750102, - "action": "NOTHING" - }, - { - "x": 27.85296699353977, - "y": -5304.984247260986, - "rotation": 0.21183370052351236, - "action": "NOTHING" - }, - { - "x": 28.56970910453403, - "y": -5309.324167873162, - "rotation": 0.2083430420195237, - "action": "NOTHING" - }, - { - "x": 29.27546426891835, - "y": -5313.681515053844, - "rotation": 0.20485238351553503, - "action": "NOTHING" - }, - { - "x": 29.97020192158432, - "y": -5318.0563478130925, - "rotation": 0.20136172501154637, - "action": "NOTHING" - }, - { - "x": 30.65389126712724, - "y": -5322.4487253066445, - "rotation": 0.1978710665075577, - "action": "NOTHING" - }, - { - "x": 31.326501280514545, - "y": -5326.858706835444, - "rotation": 0.19438040800356904, - "action": "NOTHING" - }, - { - "x": 31.988000707752434, - "y": -5331.286351845172, - "rotation": 0.19088974949958037, - "action": "NOTHING" - }, - { - "x": 32.638358066550644, - "y": -5335.731719925783, - "rotation": 0.1873990909955917, - "action": "NOTHING" - }, - { - "x": 33.277541646985426, - "y": -5340.194870811034, - "rotation": 0.18390843249160305, - "action": "NOTHING" - }, - { - "x": 33.90551951216072, - "y": -5344.675864378021, - "rotation": 0.18041777398761438, - "action": "CARVE_LEFT" - }, - { - "x": 34.301792785678124, - "y": -5349.378873158931, - "rotation": 0.12631256717579017, - "action": "CARVE_LEFT" - }, - { - "x": 34.52869038495863, - "y": -5354.2468920838855, - "rotation": 0.07220736036396597, - "action": "CARVE_LEFT" - }, - { - "x": 34.58567242338391, - "y": -5359.281126383439, - "rotation": 0.018102153552141752, - "action": "CARVE_LEFT" - }, - { - "x": 34.4721496514078, - "y": -5364.271635436578, - "rotation": 6.247182253919903, - "action": "CARVE_LEFT" - }, - { - "x": 34.1875857763209, - "y": -5369.111658069241, - "rotation": 6.193077047108079, - "action": "CARVE_LEFT" - }, - { - "x": 33.73151891763324, - "y": -5373.800025934034, - "rotation": 6.1389718402962545, - "action": "CARVE_LEFT" - }, - { - "x": 33.103561388811805, - "y": -5378.335641011175, - "rotation": 6.08486663348443, - "action": "CARVE_LEFT" - }, - { - "x": 32.303399479618335, - "y": -5382.717475403356, - "rotation": 6.030761426672606, - "action": "CARVE_LEFT" - }, - { - "x": 31.33079323904571, - "y": -5386.944571131194, - "rotation": 5.976656219860781, - "action": "CARVE_LEFT" - }, - { - "x": 30.185576258851363, - "y": -5391.01603992922, - "rotation": 5.922551013048957, - "action": "CARVE_LEFT" - }, - { - "x": 28.867655457686155, - "y": -5394.9310630424425, - "rotation": 5.8684458062371325, - "action": "CARVE_LEFT" - }, - { - "x": 27.377010865817148, - "y": -5398.688891023461, - "rotation": 5.814340599425308, - "action": "CARVE_LEFT" - }, - { - "x": 25.71369541044269, - "y": -5402.28884353014, - "rotation": 5.760235392613484, - "action": "CARVE_LEFT" - }, - { - "x": 23.877834701598236, - "y": -5405.730309123835, - "rotation": 5.706130185801659, - "action": "CARVE_LEFT" - }, - { - "x": 21.869626818651398, - "y": -5409.012745068168, - "rotation": 5.652024978989835, - "action": "CARVE_LEFT" - }, - { - "x": 19.68934209738459, - "y": -5412.135677128371, - "rotation": 5.5979197721780105, - "action": "CARVE_LEFT" - }, - { - "x": 17.33732291766379, - "y": -5415.098699371154, - "rotation": 5.543814565366186, - "action": "NOTHING" - }, - { - "x": 14.736381011705038, - "y": -5417.831089817013, - "rotation": 5.5473052238701746, - "action": "NOTHING" - }, - { - "x": 12.147827471617585, - "y": -5420.57485017267, - "rotation": 5.550795882374163, - "action": "NOTHING" - }, - { - "x": 9.571638315248556, - "y": -5423.330005120854, - "rotation": 5.554286540878151, - "action": "NOTHING" - }, - { - "x": 7.007789949490459, - "y": -5426.096579601366, - "rotation": 5.55777719938214, - "action": "NOTHING" - }, - { - "x": 4.456259169178262, - "y": -5428.874598810285, - "rotation": 5.561267857886128, - "action": "NOTHING" - }, - { - "x": 1.9170231559894364, - "y": -5431.664088199175, - "rotation": 5.564758516390117, - "action": "NOTHING" - }, - { - "x": -0.609940522653035, - "y": -5434.4650734743, - "rotation": 5.568249174894105, - "action": "NOTHING" - }, - { - "x": -3.124653914674701, - "y": -5437.27758059583, - "rotation": 5.571739833398094, - "action": "NOTHING" - }, - { - "x": -5.627138684440732, - "y": -5440.10163577706, - "rotation": 5.575230491902082, - "action": "NOTHING" - }, - { - "x": -8.117416113844076, - "y": -5442.937265483626, - "rotation": 5.5787211504060705, - "action": "NOTHING" - }, - { - "x": -10.595507103390677, - "y": -5445.784496432722, - "rotation": 5.582211808910059, - "action": "NOTHING" - }, - { - "x": -13.061432173281778, - "y": -5448.643355592325, - "rotation": 5.585702467414047, - "action": "NOTHING" - }, - { - "x": -15.515211464493301, - "y": -5451.513870180414, - "rotation": 5.589193125918036, - "action": "NOTHING" - }, - { - "x": -17.956864739852325, - "y": -5454.396067664203, - "rotation": 5.592683784422024, - "action": "CARVE_RIGHT" - }, - { - "x": -19.982353477700645, - "y": -5457.664080118072, - "rotation": 5.646788991233849, - "action": "CARVE_RIGHT" - }, - { - "x": -21.836071288413187, - "y": -5461.09233944502, - "rotation": 5.700894198045673, - "action": "CARVE_RIGHT" - }, - { - "x": -23.51817338937319, - "y": -5464.681422619202, - "rotation": 5.7549994048574975, - "action": "CARVE_RIGHT" - }, - { - "x": -25.028742146335528, - "y": -5468.4319724844545, - "rotation": 5.809104611669322, - "action": "CARVE_RIGHT" - }, - { - "x": -26.36778728666696, - "y": -5472.344697560346, - "rotation": 5.863209818481146, - "action": "CARVE_RIGHT" - }, - { - "x": -27.535246112000696, - "y": -5476.420371848749, - "rotation": 5.917315025292971, - "action": "CARVE_RIGHT" - }, - { - "x": -28.530983710306863, - "y": -5480.659834640954, - "rotation": 5.971420232104795, - "action": "CARVE_RIGHT" - }, - { - "x": -29.354793167380407, - "y": -5485.063990325312, - "rotation": 6.0255254389166195, - "action": "CARVE_RIGHT" - }, - { - "x": -30.00639577774796, - "y": -5489.633808195409, - "rotation": 6.079630645728444, - "action": "CARVE_RIGHT" - }, - { - "x": -30.485441254995205, - "y": -5494.370322258767, - "rotation": 6.133735852540268, - "action": "CARVE_RIGHT" - }, - { - "x": -30.791507941516265, - "y": -5499.274631046075, - "rotation": 6.187841059352093, - "action": "CARVE_RIGHT" - }, - { - "x": -30.924103017686654, - "y": -5504.347897420943, - "rotation": 6.241946266163917, - "action": "CARVE_RIGHT" - }, - { - "x": -30.88266544934814, - "y": -5509.514265600583, - "rotation": 0.012866165796155293, - "action": "CARVE_RIGHT" - }, - { - "x": -30.66664367405558, - "y": -5514.526935975591, - "rotation": 0.0669713726079795, - "action": "CARVE_RIGHT" - }, - { - "x": -30.275560580278636, - "y": -5519.384725943372, - "rotation": 0.12107657941980371, - "action": "CARVE_RIGHT" - }, - { - "x": -29.70901328904297, - "y": -5524.086523265013, - "rotation": 0.17518178623162792, - "action": "CARVE_RIGHT" - }, - { - "x": -28.966672936171925, - "y": -5528.631285860065, - "rotation": 0.22928699304345213, - "action": "CARVE_RIGHT" - }, - { - "x": -28.048284455126996, - "y": -5533.018041601895, - "rotation": 0.28339219985527636, - "action": "CARVE_RIGHT" - }, - { - "x": -26.953666360445638, - "y": -5537.2458881135935, - "rotation": 0.3374974066671006, - "action": "CARVE_RIGHT" - }, - { - "x": -25.682710531774713, - "y": -5541.313992564447, - "rotation": 0.39160261347892483, - "action": "CARVE_RIGHT" - }, - { - "x": -24.235381998498088, - "y": -5545.2215914669605, - "rotation": 0.44570782029074907, - "action": "CARVE_RIGHT" - }, - { - "x": -22.611718724956766, - "y": -5548.967990474443, - "rotation": 0.4998130271025733, - "action": "CARVE_RIGHT" - }, - { - "x": -20.81183139626002, - "y": -5552.552564179144, - "rotation": 0.5539182339143975, - "action": "CARVE_RIGHT" - }, - { - "x": -18.83590320468594, - "y": -5555.97475591095, - "rotation": 0.6080234407262217, - "action": "CARVE_RIGHT" - }, - { - "x": -16.684189636669867, - "y": -5559.234077536626, - "rotation": 0.6621286475380459, - "action": "CARVE_RIGHT" - }, - { - "x": -14.357018260379105, - "y": -5562.330109259606, - "rotation": 0.7162338543498701, - "action": "CARVE_RIGHT" - }, - { - "x": -11.854788513872453, - "y": -5565.262499420344, - "rotation": 0.7703390611616943, - "action": "NOTHING" - }, - { - "x": -9.087553495228708, - "y": -5567.9487139281155, - "rotation": 0.7668484026577056, - "action": "NOTHING" - }, - { - "x": -6.333309472901444, - "y": -5570.6462051627395, - "rotation": 0.7633577441537169, - "action": "NOTHING" - }, - { - "x": -3.592027592294692, - "y": -5573.354994728006, - "rotation": 0.7598670856497283, - "action": "NOTHING" - }, - { - "x": -0.8636794020078775, - "y": -5576.075104494728, - "rotation": 0.7563764271457396, - "action": "NOTHING" - }, - { - "x": 1.8517631473057818, - "y": -5578.806556599919, - "rotation": 0.7528857686417509, - "action": "NOTHING" - }, - { - "x": 4.554327704077808, - "y": -5581.549373445967, - "rotation": 0.7493951101377623, - "action": "NOTHING" - }, - { - "x": 7.244041516959932, - "y": -5584.303577699826, - "rotation": 0.7459044516337736, - "action": "NOTHING" - }, - { "x": 9.9209314359565, "y": -5587.069192292191, "rotation": 0.742413793129785, "action": "NOTHING" }, - { - "x": 12.58502391355385, - "y": -5589.846240416688, - "rotation": 0.7389231346257963, - "action": "NOTHING" - }, - { - "x": 15.23634500584663, - "y": -5592.634745529061, - "rotation": 0.7354324761218076, - "action": "NOTHING" - }, - { - "x": 17.874920373661084, - "y": -5595.434731346364, - "rotation": 0.731941817617819, - "action": "NOTHING" - }, - { - "x": 20.500775283675342, - "y": -5598.246221846154, - "rotation": 0.7284511591138303, - "action": "NOTHING" - }, - { - "x": 23.113934609536653, - "y": -5601.0692412656845, - "rotation": 0.7249605006098416, - "action": "NOTHING" - }, - { - "x": 25.714422832975636, - "y": -5603.903814101104, - "rotation": 0.721469842105853, - "action": "NOTHING" - }, - { - "x": 28.302264044917536, - "y": -5606.749965106658, - "rotation": 0.7179791836018643, - "action": "NOTHING" - }, - { - "x": 30.877481946590454, - "y": -5609.607719293888, - "rotation": 0.7144885250978756, - "action": "NOTHING" - }, - { - "x": 33.44009985063064, - "y": -5612.477101930837, - "rotation": 0.710997866593887, - "action": "NOTHING" - }, - { - "x": 35.99014068218476, - "y": -5615.358138541257, - "rotation": 0.7075072080898983, - "action": "NOTHING" - }, - { - "x": 38.52762698000923, - "y": -5618.250854903816, - "rotation": 0.7040165495859096, - "action": "NOTHING" - }, - { - "x": 41.05258089756658, - "y": -5621.15527705131, - "rotation": 0.700525891081921, - "action": "NOTHING" - }, - { - "x": 43.56502420411884, - "y": -5624.071431269879, - "rotation": 0.6970352325779323, - "action": "NOTHING" - }, - { - "x": 46.06497828581803, - "y": -5626.999344098218, - "rotation": 0.6935445740739437, - "action": "CARVE_LEFT" - }, - { - "x": 48.13949788964006, - "y": -5630.321395157495, - "rotation": 0.6394393672621195, - "action": "CARVE_LEFT" - }, - { - "x": 50.03882568461816, - "y": -5633.806601127694, - "rotation": 0.5853341604502953, - "action": "CARVE_LEFT" - }, - { - "x": 51.763135805298475, - "y": -5637.455522037856, - "rotation": 0.5312289536384711, - "action": "CARVE_LEFT" - }, - { - "x": 53.31252947391339, - "y": -5641.268783841641, - "rotation": 0.4771237468266469, - "action": "CARVE_LEFT" - }, - { - "x": 54.687035213797216, - "y": -5645.247078223215, - "rotation": 0.42301854001482264, - "action": "CARVE_LEFT" - }, - { - "x": 55.886609062215726, - "y": -5649.391162403662, - "rotation": 0.3689133332029984, - "action": "CARVE_LEFT" - }, - { - "x": 56.91113478261114, - "y": -5653.701858947942, - "rotation": 0.31480812639117417, - "action": "CARVE_LEFT" - }, - { - "x": 57.76042407626405, - "y": -5658.180055572375, - "rotation": 0.26070291957934993, - "action": "CARVE_LEFT" - }, - { - "x": 58.43421679337382, - "y": -5662.826704952654, - "rotation": 0.20659771276752573, - "action": "CARVE_LEFT" - }, - { - "x": 58.93218114355905, - "y": -5667.642824532391, - "rotation": 0.15249250595570152, - "action": "CARVE_LEFT" - }, - { - "x": 59.253913905779555, - "y": -5672.629496332193, - "rotation": 0.09838729914387731, - "action": "CARVE_LEFT" - }, - { - "x": 59.39894063768147, - "y": -5677.787866759256, - "rotation": 0.044282092332053095, - "action": "CARVE_LEFT" - }, - { - "x": 59.36671748088637, - "y": -5683.059209775916, - "rotation": 6.273362192699815, - "action": "CARVE_LEFT" - }, - { - "x": 59.15670296832978, - "y": -5688.173713913771, - "rotation": 6.2192569858879905, - "action": "CARVE_LEFT" - }, - { - "x": 58.76843004902077, - "y": -5693.130206262822, - "rotation": 6.165151779076166, - "action": "CARVE_LEFT" - }, - { - "x": 58.20150586978761, - "y": -5697.927584243758, - "rotation": 6.111046572264342, - "action": "CARVE_LEFT" - }, - { - "x": 57.455611557623584, - "y": -5702.564815402839, - "rotation": 6.056941365452517, - "action": "CARVE_LEFT" - }, - { - "x": 56.530502002631344, - "y": -5707.04093720734, - "rotation": 6.002836158640693, - "action": "CARVE_LEFT" - }, - { - "x": 55.42600564156425, - "y": -5711.355056841564, - "rotation": 5.9487309518288685, - "action": "CARVE_LEFT" - }, - { - "x": 54.142024241963135, - "y": -5715.506351003402, - "rotation": 5.894625745017044, - "action": "CARVE_LEFT" - }, - { - "x": 52.67853268688686, - "y": -5719.494065701464, - "rotation": 5.84052053820522, - "action": "CARVE_LEFT" - }, - { - "x": 51.035578760235204, - "y": -5723.317516052753, - "rotation": 5.786415331393395, - "action": "CARVE_LEFT" - }, - { - "x": 49.21328293266235, - "y": -5726.976086080901, - "rotation": 5.732310124581571, - "action": "CARVE_LEFT" - }, - { - "x": 47.21183814807963, - "y": -5730.469228514963, - "rotation": 5.6782049177697465, - "action": "CARVE_LEFT" - }, - { - "x": 45.03150961074574, - "y": -5733.79646458875, - "rotation": 5.624099710957922, - "action": "CARVE_LEFT" - }, - { - "x": 42.67263457294312, - "y": -5736.957383840723, - "rotation": 5.569994504146098, - "action": "CARVE_LEFT" - }, - { - "x": 40.13562212323863, - "y": -5739.951643914434, - "rotation": 5.515889297334273, - "action": "CARVE_LEFT" - }, - { - "x": 37.420952975327396, - "y": -5742.778970359507, - "rotation": 5.461784090522449, - "action": "CARVE_LEFT" - }, - { - "x": 34.52917925745785, - "y": -5745.439156433179, - "rotation": 5.407678883710624, - "action": "CARVE_LEFT" - }, - { - "x": 31.460924302436755, - "y": -5747.932062902371, - "rotation": 5.3535736768988, - "action": "CARVE_LEFT" - }, - { - "x": 28.216882438212544, - "y": -5750.257617846312, - "rotation": 5.299468470086976, - "action": "CARVE_LEFT" - }, - { - "x": 24.797818779035406, - "y": -5752.4158164597, - "rotation": 5.245363263275151, - "action": "CARVE_LEFT" - }, - { - "x": 21.204569017192725, - "y": -5754.406720856406, - "rotation": 5.191258056463327, - "action": "CARVE_LEFT" - }, - { - "x": 17.438039215318224, - "y": -5756.230459873712, - "rotation": 5.137152849651502, - "action": "CARVE_LEFT" - }, - { - "x": 13.499205599273381, - "y": -5757.887228877096, - "rotation": 5.083047642839678, - "action": "NOTHING" - }, - { - "x": 9.140937847115246, - "y": -5759.148966505835, - "rotation": 5.0865383013436665, - "action": "NOTHING" - }, - { - "x": 4.800801824904665, - "y": -5760.420887672436, - "rotation": 5.090028959847655, - "action": "NOTHING" - }, - { - "x": 0.47871577110657615, - "y": -5761.702977869662, - "rotation": 5.093519618351643, - "action": "NOTHING" - }, - { - "x": -3.825401525386898, - "y": -5762.995222965297, - "rotation": 5.097010276855632, - "action": "NOTHING" - }, - { - "x": -8.111630726789802, - "y": -5764.297609201019, - "rotation": 5.10050093535962, - "action": "NOTHING" - }, - { - "x": -12.380051947951618, - "y": -5765.6101231912835, - "rotation": 5.103991593863609, - "action": "NOTHING" - }, - { - "x": -16.63074475788247, - "y": -5766.932751922202, - "rotation": 5.107482252367597, - "action": "NOTHING" - }, - { - "x": -20.86378818127426, - "y": -5768.265482750433, - "rotation": 5.110972910871586, - "action": "NOTHING" - }, - { - "x": -25.07926070001774, - "y": -5769.608303402064, - "rotation": 5.114463569375574, - "action": "NOTHING" - }, - { - "x": -29.277240254715586, - "y": -5770.96120197151, - "rotation": 5.1179542278795624, - "action": "NOTHING" - }, - { - "x": -33.45780424619138, - "y": -5772.3241669204035, - "rotation": 5.121444886383551, - "action": "NOTHING" - }, - { - "x": -37.621029536994634, - "y": -5773.697187076498, - "rotation": 5.124935544887539, - "action": "NOTHING" - }, - { - "x": -41.76699245290176, - "y": -5775.080251632564, - "rotation": 5.128426203391528, - "action": "NOTHING" - }, - { - "x": -45.895768784413065, - "y": -5776.473350145296, - "rotation": 5.131916861895516, - "action": "NOTHING" - }, - { - "x": -50.007433788245734, - "y": -5777.876472534219, - "rotation": 5.135407520399505, - "action": "CARVE_RIGHT" - }, - { - "x": -53.52957989748436, - "y": -5779.819661942951, - "rotation": 5.189512727211329, - "action": "CARVE_RIGHT" - }, - { - "x": -56.87423438642307, - "y": -5781.9221476937455, - "rotation": 5.2436179340231535, - "action": "CARVE_RIGHT" - }, - { - "x": -60.04218311187299, - "y": -5784.183936579793, - "rotation": 5.297723140834978, - "action": "CARVE_RIGHT" - }, - { - "x": -63.03413723245892, - "y": -5786.605102943506, - "rotation": 5.351828347646802, - "action": "CARVE_RIGHT" - }, - { - "x": -65.85073342693212, - "y": -5789.185788477932, - "rotation": 5.405933554458627, - "action": "CARVE_RIGHT" - }, - { - "x": -68.49253411188411, - "y": -5791.926202028717, - "rotation": 5.460038761270451, - "action": "CARVE_RIGHT" - }, - { - "x": -70.96002765886288, - "y": -5794.826619396607, - "rotation": 5.5141439680822755, - "action": "CARVE_RIGHT" - }, - { - "x": -73.25362861089341, - "y": -5797.8873831405, - "rotation": 5.5682491748941, - "action": "CARVE_RIGHT" - }, - { - "x": -75.37367789840368, - "y": -5801.108902381035, - "rotation": 5.622354381705924, - "action": "CARVE_RIGHT" - }, - { - "x": -77.3204430545581, - "y": -5804.491652604728, - "rotation": 5.676459588517749, - "action": "CARVE_RIGHT" - }, - { - "x": -79.09411842999961, - "y": -5808.0361754686455, - "rotation": 5.730564795329573, - "action": "CARVE_RIGHT" - }, - { - "x": -80.69482540700233, - "y": -5811.743078605611, - "rotation": 5.7846700021413975, - "action": "CARVE_RIGHT" - }, - { - "x": -82.12261261303595, - "y": -5815.613035429956, - "rotation": 5.838775208953222, - "action": "CARVE_RIGHT" - }, - { - "x": -83.3774561337438, - "y": -5819.646784943802, - "rotation": 5.892880415765046, - "action": "CARVE_RIGHT" - }, - { - "x": -84.45925972533574, - "y": -5823.845131543879, - "rotation": 5.946985622576871, - "action": "CARVE_RIGHT" - }, - { - "x": -85.3678550263978, - "y": -5828.2089448288725, - "rotation": 6.001090829388695, - "action": "CARVE_RIGHT" - }, - { - "x": -86.10300176911989, - "y": -5832.739159407307, - "rotation": 6.0551960362005195, - "action": "CARVE_RIGHT" - }, - { - "x": -86.66438798994302, - "y": -5837.436774705955, - "rotation": 6.109301243012344, - "action": "CARVE_RIGHT" - }, - { - "x": -87.05163023962795, - "y": -5842.302854778775, - "rotation": 6.163406449824168, - "action": "CARVE_RIGHT" - }, - { - "x": -87.26427379274632, - "y": -5847.338528116381, - "rotation": 6.217511656635993, - "action": "CARVE_RIGHT" - }, - { - "x": -87.30179285659611, - "y": -5852.544987456028, - "rotation": 6.271616863447817, - "action": "CARVE_RIGHT" - }, - { - "x": -87.16362071629472, - "y": -5857.666450189762, - "rotation": 0.04253676308005527, - "action": "CARVE_RIGHT" - }, - { - "x": -86.8492525891705, - "y": -5862.632227803505, - "rotation": 0.09664196989187948, - "action": "CARVE_RIGHT" - }, - { - "x": -86.35825800409681, - "y": -5867.4411819690595, - "rotation": 0.1507471767037037, - "action": "CARVE_RIGHT" - }, - { - "x": -85.69028058351999, - "y": -5872.092244590825, - "rotation": 0.2048523835155279, - "action": "CARVE_RIGHT" - }, - { - "x": -84.84503782608684, - "y": -5876.584417600949, - "rotation": 0.2589575903273521, - "action": "CARVE_RIGHT" - }, - { - "x": -83.82232088986986, - "y": -5880.916772755029, - "rotation": 0.31306279713917634, - "action": "CARVE_RIGHT" - }, - { - "x": -82.62199437618881, - "y": -5885.088451428394, - "rotation": 0.3671680039510006, - "action": "CARVE_RIGHT" - }, - { - "x": -81.24399611402684, - "y": -5889.098664412923, - "rotation": 0.4212732107628248, - "action": "CARVE_RIGHT" - }, - { - "x": -79.68833694503982, - "y": -5892.946691714436, - "rotation": 0.47537841757464905, - "action": "CARVE_RIGHT" - }, - { - "x": -77.95510050915716, - "y": -5896.631882350635, - "rotation": 0.5294836243864732, - "action": "CARVE_RIGHT" - }, - { - "x": -76.04444303077258, - "y": -5900.153654149597, - "rotation": 0.5835888311982974, - "action": "CARVE_RIGHT" - }, - { - "x": -73.9565931055234, - "y": -5903.511493548823, - "rotation": 0.6376940380101216, - "action": "CARVE_RIGHT" - }, - { - "x": -71.69185148765652, - "y": -5906.704955394836, - "rotation": 0.6917992448219458, - "action": "CARVE_RIGHT" - }, - { - "x": -69.25059087797993, - "y": -5909.733662743332, - "rotation": 0.74590445163377, - "action": "CARVE_RIGHT" - }, - { - "x": -66.63325571239778, - "y": -5912.597306659874, - "rotation": 0.8000096584455941, - "action": "CARVE_RIGHT" - }, - { - "x": -63.84036195102782, - "y": -5915.295646021137, - "rotation": 0.8541148652574183, - "action": "CARVE_RIGHT" - }, - { - "x": -60.87249686789944, - "y": -5917.828507316696, - "rotation": 0.9082200720692425, - "action": "CARVE_RIGHT" - }, - { - "x": -57.730318841230904, - "y": -5920.195784451362, - "rotation": 0.9623252788810667, - "action": "CARVE_RIGHT" - }, - { - "x": -54.41455714428419, - "y": -5922.397438548053, - "rotation": 1.016430485692891, - "action": "CARVE_RIGHT" - }, - { - "x": -50.92601173679592, - "y": -5924.433497751214, - "rotation": 1.0705356925047151, - "action": "NOTHING" - }, - { - "x": -47.06604793182062, - "y": -5926.1208000630295, - "rotation": 1.0670450340007265, - "action": "NOTHING" - }, - { - "x": -43.22221667232857, - "y": -5927.818246288008, - "rotation": 1.0635543754967378, - "action": "NOTHING" - }, - { - "x": -39.39445324968234, - "y": -5929.525833723394, - "rotation": 1.0600637169927491, - "action": "NOTHING" - }, - { - "x": -35.5826934586118, - "y": -5931.2435600066465, - "rotation": 1.0565730584887605, - "action": "NOTHING" - }, - { - "x": -31.786873595805247, - "y": -5932.971423114409, - "rotation": 1.0530823999847718, - "action": "NOTHING" - }, - { - "x": -28.006930458504385, - "y": -5934.709421361486, - "rotation": 1.0495917414807832, - "action": "NOTHING" - }, - { - "x": -24.242801343102997, - "y": -5936.457553399822, - "rotation": 1.0461010829767945, - "action": "NOTHING" - }, - { - "x": -20.494424043749376, - "y": -5938.215818217479, - "rotation": 1.0426104244728058, - "action": "NOTHING" - }, - { - "x": -16.761736850952488, - "y": -5939.984215137624, - "rotation": 1.0391197659688172, - "action": "NOTHING" - }, - { - "x": -13.044678550191872, - "y": -5941.762743817516, - "rotation": 1.0356291074648285, - "action": "NOTHING" - }, - { - "x": -9.343188420531234, - "y": -5943.551404247492, - "rotation": 1.0321384489608398, - "action": "NOTHING" - }, - { - "x": -5.65720623323576, - "y": -5945.350196749964, - "rotation": 1.0286477904568512, - "action": "NOTHING" - }, - { - "x": -1.9866722503931147, - "y": -5947.1591219784095, - "rotation": 1.0251571319528625, - "action": "NOTHING" - }, - { - "x": 1.6684727764618668, - "y": -5948.978180916372, - "rotation": 1.0216664734488738, - "action": "NOTHING" - }, - { - "x": 5.308287607718816, - "y": -5950.807374876464, - "rotation": 1.0181758149448852, - "action": "NOTHING" - }, - { - "x": 8.932830517059802, - "y": -5952.6467054993645, - "rotation": 1.0146851564408965, - "action": "NOTHING" - }, - { - "x": 12.542159292823644, - "y": -5954.496174752832, - "rotation": 1.0111944979369079, - "action": "CARVE_LEFT" - }, - { - "x": 15.614426248522749, - "y": -5956.839006959271, - "rotation": 0.9570892911250837, - "action": "CARVE_LEFT" - }, - { - "x": 18.51123549654249, - "y": -5959.341115445756, - "rotation": 0.9029840843132595, - "action": "CARVE_LEFT" - }, - { - "x": 21.2331839088133, - "y": -5962.00267789246, - "rotation": 0.8488788775014353, - "action": "CARVE_LEFT" - }, - { - "x": 23.780794211779256, - "y": -5964.823939026035, - "rotation": 0.7947736706896111, - "action": "CARVE_LEFT" - }, - { - "x": 26.154515203193686, - "y": -5967.805210422413, - "rotation": 0.740668463877787, - "action": "CARVE_LEFT" - }, - { - "x": 28.354721968319726, - "y": -5970.946870310149, - "rotation": 0.6865632570659628, - "action": "CARVE_LEFT" - }, - { - "x": 30.381716095537428, - "y": -5974.2493633743, - "rotation": 0.6324580502541386, - "action": "CARVE_LEFT" - }, - { - "x": 32.23572589135894, - "y": -5977.713200560851, - "rotation": 0.5783528434423144, - "action": "CARVE_LEFT" - }, - { - "x": 33.91690659485336, - "y": -5981.338958881677, - "rotation": 0.5242476366304902, - "action": "CARVE_LEFT" - }, - { - "x": 35.4253405914828, - "y": -5985.127281220044, - "rotation": 0.470142429818666, - "action": "CARVE_LEFT" - }, - { - "x": 36.76103762635123, - "y": -5989.078876136641, - "rotation": 0.41603722300684176, - "action": "CARVE_LEFT" - }, - { - "x": 37.923935016867624, - "y": -5993.194517676155, - "rotation": 0.3619320161950175, - "action": "CARVE_LEFT" - }, - { - "x": 38.91389786482496, - "y": -5997.47504517437, - "rotation": 0.3078268093831933, - "action": "CARVE_LEFT" - }, - { - "x": 39.73071926789665, - "y": -6001.921363065809, - "rotation": 0.25372160257136905, - "action": "CARVE_LEFT" - }, - { - "x": 40.374120530551885, - "y": -6006.534440691891, - "rotation": 0.19961639575954485, - "action": "CARVE_LEFT" - }, - { - "x": 40.84375137439145, - "y": -6011.315312109636, - "rotation": 0.14551118894772064, - "action": "CARVE_LEFT" - }, - { - "x": 41.13919014790559, - "y": -6016.2650759008775, - "rotation": 0.09140598213589643, - "action": "CARVE_LEFT" - }, - { - "x": 41.25994403565531, - "y": -6021.3848949820185, - "rotation": 0.037300775324072215, - "action": "CARVE_LEFT" - }, - { - "x": 41.20545393910061, - "y": -6026.574635184556, - "rotation": 6.266380875691834, - "action": "CARVE_LEFT" - }, - { - "x": 40.97517886065575, - "y": -6031.609435096149, - "rotation": 6.21227566888001, - "action": "CARVE_LEFT" - }, - { - "x": 40.568652220783406, - "y": -6036.488122153496, - "rotation": 6.158170462068186, - "action": "CARVE_LEFT" - }, - { - "x": 39.9854816397293, - "y": -6041.209594125996, - "rotation": 6.104065255256361, - "action": "CARVE_LEFT" - }, - { - "x": 39.22534871985713, - "y": -6045.7728189106265, - "rotation": 6.049960048444537, - "action": "CARVE_LEFT" - }, - { - "x": 38.28800882858203, - "y": -6050.176834327376, - "rotation": 5.995854841632712, - "action": "CARVE_LEFT" - }, - { - "x": 37.17329088190106, - "y": -6054.420747915243, - "rotation": 5.941749634820888, - "action": "CARVE_LEFT" - }, - { - "x": 35.88109712851917, - "y": -6058.5037367287905, - "rotation": 5.887644428009064, - "action": "CARVE_LEFT" - }, - { - "x": 34.411402934569, - "y": -6062.425047135262, - "rotation": 5.833539221197239, - "action": "CARVE_LEFT" - }, - { - "x": 32.764256568922974, - "y": -6066.183994612246, - "rotation": 5.779434014385415, - "action": "CARVE_LEFT" - }, - { - "x": 30.93977898909619, - "y": -6069.7799635459105, - "rotation": 5.72532880757359, - "action": "CARVE_LEFT" - }, - { - "x": 28.93816362773843, - "y": -6073.21240702977, - "rotation": 5.671223600761766, - "action": "CARVE_LEFT" - }, - { - "x": 26.75967617971381, - "y": -6076.480846664022, - "rotation": 5.617118393949942, - "action": "CARVE_LEFT" - }, - { - "x": 24.404654389766517, - "y": -6079.584872355425, - "rotation": 5.563013187138117, - "action": "CARVE_LEFT" - }, - { - "x": 21.873507840771037, - "y": -6082.524142117732, - "rotation": 5.508907980326293, - "action": "CARVE_LEFT" - }, - { - "x": 19.16671774256539, - "y": -6085.298381872659, - "rotation": 5.454802773514468, - "action": "CARVE_LEFT" - }, - { - "x": 16.28483672136579, - "y": -6087.907385251416, - "rotation": 5.400697566702644, - "action": "CARVE_LEFT" - }, - { - "x": 13.22848860976119, - "y": -6090.351013396769, - "rotation": 5.34659235989082, - "action": "CARVE_LEFT" - }, - { - "x": 9.998368237286227, - "y": -6092.629194765655, - "rotation": 5.292487153078995, - "action": "CARVE_LEFT" - }, - { - "x": 6.595241221570987, - "y": -6094.741924932328, - "rotation": 5.238381946267171, - "action": "CARVE_LEFT" - }, - { - "x": 3.019943760066086, - "y": -6096.689266392061, - "rotation": 5.184276739455346, - "action": "NOTHING" - }, - { - "x": -0.9360649450771832, - "y": -6098.278885617758, - "rotation": 5.187767397959335, - "action": "NOTHING" - }, - { - "x": -4.87559828044313, - "y": -6099.878606124889, - "rotation": 5.191258056463323, - "action": "NOTHING" - }, - { - "x": -8.798724391852936, - "y": -6101.488422820259, - "rotation": 5.194748714967312, - "action": "NOTHING" - }, - { - "x": -12.705510912301754, - "y": -6103.108330957898, - "rotation": 5.1982393734713, - "action": "NOTHING" - }, - { - "x": -16.59602496339252, - "y": -6104.73832613802, - "rotation": 5.201730031975289, - "action": "NOTHING" - }, - { - "x": -20.47033315676593, - "y": -6106.378404305976, - "rotation": 5.205220690479277, - "action": "NOTHING" - }, - { - "x": -24.328501595526607, - "y": -6108.028561751214, - "rotation": 5.2087113489832655, - "action": "NOTHING" - }, - { - "x": -28.170595875665466, - "y": -6109.688795106238, - "rotation": 5.212202007487254, - "action": "NOTHING" - }, - { - "x": -31.99668108747827, - "y": -6111.35910134558, - "rotation": 5.215692665991242, - "action": "NOTHING" - }, - { - "x": -35.806821816980396, - "y": -6113.039477784758, - "rotation": 5.219183324495231, - "action": "NOTHING" - }, - { - "x": -39.601082147317854, - "y": -6114.729922079255, - "rotation": 5.222673982999219, - "action": "NOTHING" - }, - { - "x": -43.379525660174494, - "y": -6116.430432223487, - "rotation": 5.226164641503208, - "action": "NOTHING" - }, - { - "x": -47.14221543717548, - "y": -6118.141006549781, - "rotation": 5.229655300007196, - "action": "NOTHING" - }, - { - "x": -50.88921406128702, - "y": -6119.861643727358, - "rotation": 5.233145958511185, - "action": "NOTHING" - }, - { - "x": -54.62058361821236, - "y": -6121.592342761308, - "rotation": 5.236636617015173, - "action": "NOTHING" - }, - { - "x": -58.33638569778401, - "y": -6123.33310299158, - "rotation": 5.2401272755191615, - "action": "NOTHING" - }, - { - "x": -62.03668139535231, - "y": -6125.083924091967, - "rotation": 5.24361793402315, - "action": "NOTHING" - }, - { - "x": -65.72153131317025, - "y": -6126.844806069099, - "rotation": 5.247108592527138, - "action": "NOTHING" - }, - { - "x": -69.39099556177456, - "y": -6128.615749261436, - "rotation": 5.250599251031127, - "action": "NOTHING" - }, - { - "x": -73.04513376136322, - "y": -6130.3967543382605, - "rotation": 5.254089909535115, - "action": "NOTHING" - }, - { - "x": -76.68400504316915, - "y": -6132.1878222986825, - "rotation": 5.257580568039104, - "action": "NOTHING" - }, - { - "x": -80.30766805083033, - "y": -6133.988954470637, - "rotation": 5.261071226543092, - "action": "CARVE_RIGHT" - }, - { - "x": -83.39394207960599, - "y": -6136.2836836785455, - "rotation": 5.3151764333549165, - "action": "CARVE_RIGHT" - }, - { - "x": -86.3058743061373, - "y": -6138.736587230331, - "rotation": 5.369281640166741, - "action": "CARVE_RIGHT" - }, - { - "x": -89.0440712171509, - "y": -6141.347834054694, - "rotation": 5.423386846978565, - "action": "CARVE_RIGHT" - }, - { - "x": -91.60906512768622, - "y": -6144.117660150746, - "rotation": 5.47749205379039, - "action": "CARVE_RIGHT" - }, - { - "x": -94.0013143979598, - "y": -6147.04636839074, - "rotation": 5.531597260602214, - "action": "CARVE_RIGHT" - }, - { - "x": -96.22120364963443, - "y": -6150.134328323355, - "rotation": 5.5857024674140385, - "action": "CARVE_RIGHT" - }, - { - "x": -98.26904398149466, - "y": -6153.38197597751, - "rotation": 5.639807674225863, - "action": "CARVE_RIGHT" - }, - { - "x": -100.14507318453018, - "y": -6156.789813666732, - "rotation": 5.693912881037687, - "action": "CARVE_RIGHT" - }, - { - "x": -101.84945595642874, - "y": -6160.35840979405, - "rotation": 5.748018087849512, - "action": "NOTHING" - }, - { - "x": -103.73180162698047, - "y": -6163.764794665308, - "rotation": 5.7515087463535, - "action": "NOTHING" - }, - { - "x": -105.60273689499742, - "y": -6167.184354944166, - "rotation": 5.754999404857489, - "action": "NOTHING" - }, - { - "x": -107.46226399498074, - "y": -6170.617129485826, - "rotation": 5.758490063361477, - "action": "NOTHING" - }, - { - "x": -109.31038483451371, - "y": -6174.063157358155, - "rotation": 5.7619807218654655, - "action": "NOTHING" - }, - { - "x": -111.14710099519655, - "y": -6177.522477841023, - "rotation": 5.765471380369454, - "action": "CARVE_RIGHT" - }, - { - "x": -112.62817821754601, - "y": -6181.3138436812205, - "rotation": 5.819576587181278, - "action": "CARVE_RIGHT" - }, - { - "x": -113.9372857331681, - "y": -6185.267908058646, - "rotation": 5.873681793993103, - "action": "CARVE_RIGHT" - }, - { - "x": -115.07434876663584, - "y": -6189.385455915018, - "rotation": 5.927787000804927, - "action": "CARVE_RIGHT" - }, - { - "x": -116.03922036353362, - "y": -6193.667337449902, - "rotation": 5.9818922076167516, - "action": "CARVE_RIGHT" - }, - { - "x": -116.83168160185099, - "y": -6198.114467928439, - "rotation": 6.035997414428576, - "action": "CARVE_RIGHT" - }, - { - "x": -117.45144180279567, - "y": -6202.727827489601, - "rotation": 6.0901026212404, - "action": "CARVE_RIGHT" - }, - { - "x": -117.8981387410273, - "y": -6207.508460954982, - "rotation": 6.144207828052225, - "action": "CARVE_RIGHT" - }, - { - "x": -118.17133885431339, - "y": -6212.457477638114, - "rotation": 6.198313034864049, - "action": "CARVE_RIGHT" - }, - { - "x": -118.27053745260925, - "y": -6217.576051154308, - "rotation": 6.252418241675874, - "action": "CARVE_RIGHT" - }, - { - "x": -118.19516793829632, - "y": -6222.725213696231, - "rotation": 0.023338141308111737, - "action": "CARVE_RIGHT" - }, - { - "x": -117.94469503541957, - "y": -6227.7200264415815, - "rotation": 0.07744334811993595, - "action": "CARVE_RIGHT" - }, - { - "x": -117.51865787049353, - "y": -6232.5593221997815, - "rotation": 0.13154855493176015, - "action": "CARVE_RIGHT" - }, - { - "x": -116.91666975427783, - "y": -6237.2420040983725, - "rotation": 0.18565376174358436, - "action": "CARVE_RIGHT" - }, - { - "x": -116.13841796415294, - "y": -6241.767045377927, - "rotation": 0.23975896855540857, - "action": "CARVE_RIGHT" - }, - { - "x": -115.18366352709414, - "y": -6246.133489187523, - "rotation": 0.2938641753672328, - "action": "CARVE_RIGHT" - }, - { - "x": -114.05224100324268, - "y": -6250.340448380776, - "rotation": 0.34796938217905704, - "action": "CARVE_RIGHT" - }, - { - "x": -112.74405827007212, - "y": -6254.3871053124385, - "rotation": 0.4020745889908813, - "action": "CARVE_RIGHT" - }, - { - "x": -111.25909630714844, - "y": -6258.272711635545, - "rotation": 0.4561797958027055, - "action": "CARVE_RIGHT" - }, - { - "x": -109.59740898148246, - "y": -6261.996588099127, - "rotation": 0.5102850026145297, - "action": "CARVE_RIGHT" - }, - { - "x": -107.75912283347276, - "y": -6265.558124346466, - "rotation": 0.5643902094263539, - "action": "CARVE_RIGHT" - }, - { - "x": -105.74443686343777, - "y": -6268.956778713918, - "rotation": 0.618495416238178, - "action": "CARVE_RIGHT" - }, - { - "x": -103.55362231873532, - "y": -6272.192078030275, - "rotation": 0.6726006230500022, - "action": "CARVE_RIGHT" - }, - { - "x": -101.18702248146823, - "y": -6275.2636174166855, - "rotation": 0.7267058298618264, - "action": "CARVE_RIGHT" - }, - { - "x": -98.64505245677422, - "y": -6278.171060087119, - "rotation": 0.7808110366736506, - "action": "CARVE_RIGHT" - }, - { - "x": -95.92819896169878, - "y": -6280.914137149382, - "rotation": 0.8349162434854748, - "action": "CARVE_RIGHT" - }, - { - "x": -93.03702011464937, - "y": -6283.492647406677, - "rotation": 0.889021450297299, - "action": "CARVE_RIGHT" - }, - { - "x": -89.97214522542933, - "y": -6285.906457159704, - "rotation": 0.9431266571091231, - "action": "CARVE_RIGHT" - }, - { - "x": -86.7342745858502, - "y": -6288.155500009311, - "rotation": 0.9972318639209473, - "action": "CARVE_RIGHT" - }, - { - "x": -83.32417926092066, - "y": -6290.239776659686, - "rotation": 1.0513370707327716, - "action": "CARVE_RIGHT" - }, - { - "x": -79.74270088061074, - "y": -6292.159354722079, - "rotation": 1.1054422775445958, - "action": "CARVE_RIGHT" - }, - { - "x": -75.99075143218973, - "y": -6293.914368519076, - "rotation": 1.15954748435642, - "action": "NOTHING" - }, - { - "x": -71.83920508244711, - "y": -6295.293425953579, - "rotation": 1.1560568258524313, - "action": "NOTHING" - }, - { - "x": -67.70486912908464, - "y": -6296.682519485621, - "rotation": 1.1525661673484426, - "action": "NOTHING" - }, - { - "x": -63.58766813204998, - "y": -6298.0816389087695, - "rotation": 1.149075508844454, - "action": "NOTHING" - }, - { - "x": -59.487527184093075, - "y": -6299.490774378706, - "rotation": 1.1455848503404653, - "action": "NOTHING" - }, - { - "x": -55.4043719092798, - "y": -6300.909916412141, - "rotation": 1.1420941918364766, - "action": "NOTHING" - }, - { - "x": -51.33812846150949, - "y": -6302.339055885727, - "rotation": 1.138603533332488, - "action": "NOTHING" - }, - { - "x": -47.28872352303646, - "y": -6303.778184034979, - "rotation": 1.1351128748284993, - "action": "NOTHING" - }, - { - "x": -43.256084302995454, - "y": -6305.227292453195, - "rotation": 1.1316222163245107, - "action": "NOTHING" - }, - { - "x": -39.240138535931045, - "y": -6306.686373090381, - "rotation": 1.128131557820522, - "action": "NOTHING" - }, - { - "x": -35.240814480330926, - "y": -6308.155418252177, - "rotation": 1.1246408993165333, - "action": "NOTHING" - }, - { - "x": -31.25804091716312, - "y": -6309.63442059879, - "rotation": 1.1211502408125447, - "action": "NOTHING" - }, - { - "x": -27.291747148417116, - "y": -6311.123373143924, - "rotation": 1.117659582308556, - "action": "NOTHING" - }, - { - "x": -23.341862995648846, - "y": -6312.622269253721, - "rotation": 1.1141689238045673, - "action": "NOTHING" - }, - { - "x": -19.408318798529596, - "y": -6314.131102645696, - "rotation": 1.1106782653005787, - "action": "NOTHING" - }, - { - "x": -15.491045413398753, - "y": -6315.649867387682, - "rotation": 1.10718760679659, - "action": "NOTHING" - }, - { - "x": -11.589974211820419, - "y": -6317.178557896775, - "rotation": 1.1036969482926013, - "action": "NOTHING" - }, - { - "x": -7.705037079143882, - "y": -6318.717168938279, - "rotation": 1.1002062897886127, - "action": "NOTHING" - }, - { - "x": -3.836166413067917, - "y": -6320.265695624664, - "rotation": 1.096715631284624, - "action": "NOTHING" - }, - { - "x": 0.01670487779106855, - "y": -6321.824133414512, - "rotation": 1.0932249727806354, - "action": "NOTHING" - }, - { - "x": 3.853643375327085, - "y": -6323.392478111482, - "rotation": 1.0897343142766467, - "action": "CARVE_LEFT" - }, - { - "x": 7.13235122144704, - "y": -6325.472891355783, - "rotation": 1.0356291074648225, - "action": "CARVE_LEFT" - }, - { - "x": 10.237290210541358, - "y": -6327.710123923502, - "rotation": 0.9815239006529983, - "action": "CARVE_LEFT" - }, - { - "x": 13.169153645816703, - "y": -6330.104266171646, - "rotation": 0.9274186938411741, - "action": "CARVE_LEFT" - }, - { - "x": 15.928560407199328, - "y": -6332.655475756595, - "rotation": 0.87331348702935, - "action": "CARVE_LEFT" - }, - { - "x": 18.516055168886254, - "y": -6335.363977436214, - "rotation": 0.8192082802175258, - "action": "CARVE_LEFT" - }, - { - "x": 20.932108616299413, - "y": -6338.2300628725025, - "rotation": 0.7651030734057016, - "action": "CARVE_LEFT" - }, - { - "x": 23.177117662444356, - "y": -6341.254090434794, - "rotation": 0.7109978665938774, - "action": "CARVE_LEFT" - }, - { - "x": 25.251405663675087, - "y": -6344.436485003494, - "rotation": 0.6568926597820532, - "action": "CARVE_LEFT" - }, - { - "x": 27.155222634866593, - "y": -6347.77773777436, - "rotation": 0.6027874529702291, - "action": "CARVE_LEFT" - }, - { - "x": 28.888745463996628, - "y": -6351.278406063315, - "rotation": 0.5486822461584049, - "action": "CARVE_LEFT" - }, - { - "x": 30.452078126138304, - "y": -6354.939113111813, - "rotation": 0.49457703934658065, - "action": "CARVE_LEFT" - }, - { - "x": 31.845251896865058, - "y": -6358.760547892725, - "rotation": 0.4404718325347564, - "action": "CARVE_LEFT" - }, - { - "x": 33.06822556506953, - "y": -6362.743464916771, - "rotation": 0.3863666257229322, - "action": "CARVE_LEFT" - }, - { - "x": 34.12088564519791, - "y": -6366.888684039476, - "rotation": 0.33226141891110794, - "action": "CARVE_LEFT" - }, - { - "x": 35.003046588901256, - "y": -6371.197090268672, - "rotation": 0.2781562120992837, - "action": "CARVE_LEFT" - }, - { - "x": 35.714450996105434, - "y": -6375.669633572515, - "rotation": 0.2240510052874595, - "action": "CARVE_LEFT" - }, - { - "x": 36.254769825501036, - "y": -6380.307328688042, - "rotation": 0.1699457984756353, - "action": "CARVE_LEFT" - }, - { - "x": 36.62360260445498, - "y": -6385.111254930253, - "rotation": 0.11584059166381108, - "action": "CARVE_LEFT" - }, - { - "x": 36.820477638345196, - "y": -6390.082556001719, - "rotation": 0.06173538485198687, - "action": "CARVE_LEFT" - }, - { - "x": 36.844852219319996, - "y": -6395.222439802714, - "rotation": 0.007630178040162652, - "action": "NOTHING" - }, - { - "x": 36.85957248674938, - "y": -6400.3808500453315, - "rotation": 0.004139519536173994, - "action": "NOTHING" - }, - { - "x": 36.86188414640826, - "y": -6405.560362576692, - "rotation": 0.0006488610321853344, - "action": "NOTHING" - }, - { - "x": 36.851741155282156, - "y": -6410.742186246673, - "rotation": 6.280343509707783, - "action": "NOTHING" - }, - { - "x": 36.85406135064152, - "y": -6415.940823897712, - "rotation": 0.0006488610321850885, - "action": "NOTHING" - }, - { - "x": 36.843881058204275, - "y": -6421.141703959897, - "rotation": 6.280343509707783, - "action": "NOTHING" - }, - { - "x": 36.84620975174836, - "y": -6426.359382672655, - "rotation": 0.0006488610321850885, - "action": "NOTHING" - }, - { "x": 36.8359923219452, "y": -6431.57923537115, "rotation": 6.280343509707783, "action": "NOTHING" }, - { - "x": 36.83832947632312, - "y": -6436.815871457113, - "rotation": 0.0006488610321850885, - "action": "NOTHING" - }, - { - "x": 36.8280750723787, - "y": -6442.054613404147, - "rotation": 6.280343509707783, - "action": "NOTHING" - }, - { - "x": 36.83042065040374, - "y": -6447.310123542627, - "rotation": 0.0006488610321850885, - "action": "NOTHING" - }, - { - "x": 36.82012943482534, - "y": -6452.56767171693, - "rotation": 6.280343509707783, - "action": "NOTHING" - }, - { - "x": 36.822483399474216, - "y": -6457.841972953445, - "rotation": 0.0006488610321850885, - "action": "NOTHING" - }, - { - "x": 36.81215553405486, - "y": -6463.1182446986395, - "rotation": 6.280343509707783, - "action": "NOTHING" - }, - { - "x": 36.81451784846703, - "y": -6468.411254443309, - "rotation": 0.0006488610321850885, - "action": "NOTHING" - }, - { - "x": 36.80415349428862, - "y": -6473.706167466305, - "rotation": 6.280343509707783, - "action": "NOTHING" - }, - { - "x": 36.80652412176553, - "y": -6479.017803492241, - "rotation": 0.0006488610321850885, - "action": "NOTHING" - }, - { - "x": 36.796123439202006, - "y": -6484.331275861639, - "rotation": 6.280343509707783, - "action": "NOTHING" - }, - { - "x": 36.7985023432064, - "y": -6489.661456303356, - "rotation": 0.0006488610321850885, - "action": "NOTHING" - }, - { - "x": 36.78806549192684, - "y": -6494.99340644786, - "rotation": 6.280343509707783, - "action": "NOTHING" - }, - { - "x": 36.790452636082065, - "y": -6500.342049799683, - "rotation": 0.0006488610321850885, - "action": "NOTHING" - }, - { - "x": 36.77997977505375, - "y": -6505.692396506515, - "rotation": 6.280343509707783, - "action": "NOTHING" - }, - { - "x": 36.78237512314302, - "y": -6511.059421621001, - "rotation": 0.0006488610321850885, - "action": "CARVE_RIGHT" - }, - { - "x": 36.964555966442106, - "y": -6516.267734341735, - "rotation": 0.0547540678440093, - "action": "CARVE_RIGHT" - }, - { - "x": 37.32723128439848, - "y": -6521.315937810487, - "rotation": 0.10885927465583352, - "action": "CARVE_RIGHT" - }, - { - "x": 37.87079632055637, - "y": -6526.202927294104, - "rotation": 0.16296448146765774, - "action": "CARVE_RIGHT" - }, - { - "x": 38.59557233502273, - "y": -6530.927668187901, - "rotation": 0.21706968827948195, - "action": "CARVE_RIGHT" - }, - { - "x": 39.501806821525676, - "y": -6535.489195811109, - "rotation": 0.27117489509130616, - "action": "CARVE_RIGHT" - }, - { - "x": 40.589673723876, - "y": -6539.8866152028795, - "rotation": 0.3252801019031304, - "action": "CARVE_RIGHT" - }, - { - "x": 41.85927365183323, - "y": -6544.119100918843, - "rotation": 0.3793853087149546, - "action": "CARVE_RIGHT" - }, - { - "x": 43.31063409637791, - "y": -6548.185896828239, - "rotation": 0.43349051552677886, - "action": "CARVE_RIGHT" - }, - { - "x": 44.94370964439159, - "y": -6552.086315911586, - "rotation": 0.4875957223386031, - "action": "CARVE_RIGHT" - }, - { - "x": 46.75838219274612, - "y": -6555.819740058922, - "rotation": 0.5417009291504273, - "action": "CARVE_RIGHT" - }, - { - "x": 48.75446116180381, - "y": -6559.385619868585, - "rotation": 0.5958061359622515, - "action": "CARVE_RIGHT" - }, - { - "x": 50.931683708330034, - "y": -6562.783474446553, - "rotation": 0.6499113427740757, - "action": "CARVE_RIGHT" - }, - { - "x": 53.289714937819745, - "y": -6566.012891206328, - "rotation": 0.7040165495858999, - "action": "CARVE_RIGHT" - }, - { - "x": 55.828148116239575, - "y": -6569.0735256693815, - "rotation": 0.7581217563977241, - "action": "CARVE_RIGHT" - }, - { - "x": 58.54650488118696, - "y": -6571.965101266132, - "rotation": 0.8122269632095482, - "action": "CARVE_RIGHT" - }, - { - "x": 61.44423545246788, - "y": -6574.687409137476, - "rotation": 0.8663321700213724, - "action": "CARVE_RIGHT" - }, - { - "x": 64.52071884209472, - "y": -6577.240307936868, - "rotation": 0.9204373768331966, - "action": "CARVE_RIGHT" - }, - { - "x": 67.77526306370585, - "y": -6579.623723632933, - "rotation": 0.9745425836450208, - "action": "CARVE_RIGHT" - }, - { - "x": 71.20710534140834, - "y": -6581.837649312632, - "rotation": 1.028647790456845, - "action": "CARVE_RIGHT" - }, - { - "x": 74.81541231804543, - "y": -6583.882144984956, - "rotation": 1.0827529972686691, - "action": "NOTHING" - }, - { - "x": 78.80780139864913, - "y": -6585.565732259468, - "rotation": 1.0792623387646805, - "action": "NOTHING" - }, - { - "x": 82.78341801792567, - "y": -6587.259631046371, - "rotation": 1.0757716802606918, - "action": "NOTHING" - }, - { - "x": 86.74233009388084, - "y": -6588.963836606087, - "rotation": 1.0722810217567031, - "action": "NOTHING" - }, - { - "x": 90.6846050318539, - "y": -6590.678344545804, - "rotation": 1.0687903632527145, - "action": "NOTHING" - }, - { - "x": 94.61030972595186, - "y": -6592.403150818432, - "rotation": 1.0652997047487258, - "action": "NOTHING" - }, - { - "x": 98.51951056047977, - "y": -6594.138251721555, - "rotation": 1.0618090462447372, - "action": "NOTHING" - }, - { - "x": 102.41227341136734, - "y": -6595.883643896396, - "rotation": 1.0583183877407485, - "action": "NOTHING" - }, - { - "x": 106.28866364759166, - "y": -6597.639324326775, - "rotation": 1.0548277292367598, - "action": "NOTHING" - }, - { - "x": 110.14874613259617, - "y": -6599.405290338073, - "rotation": 1.0513370707327712, - "action": "NOTHING" - }, - { - "x": 113.99258522570584, - "y": -6601.181539596207, - "rotation": 1.0478464122287825, - "action": "NOTHING" - }, - { - "x": 117.8202447835385, - "y": -6602.968070106591, - "rotation": 1.0443557537247938, - "action": "NOTHING" - }, - { - "x": 121.63178816141249, - "y": -6604.764880213119, - "rotation": 1.0408650952208052, - "action": "NOTHING" - }, - { - "x": 125.42727821475052, - "y": -6606.571968597135, - "rotation": 1.0373744367168165, - "action": "NOTHING" - }, - { - "x": 129.20677730047973, - "y": -6608.389334276418, - "rotation": 1.0338837782128278, - "action": "NOTHING" - }, - { - "x": 132.9703472784281, - "y": -6610.216976604159, - "rotation": 1.0303931197088392, - "action": "NOTHING" - }, - { - "x": 136.71804951271704, - "y": -6612.054895267949, - "rotation": 1.0269024612048505, - "action": "NOTHING" - }, - { - "x": 140.44994487315034, - "y": -6613.903090288769, - "rotation": 1.0234118027008619, - "action": "NOTHING" - }, - { - "x": 144.16609373659927, - "y": -6615.761562019976, - "rotation": 1.0199211441968732, - "action": "NOTHING" - }, - { - "x": 147.8665559883842, - "y": -6617.6303111463, - "rotation": 1.0164304856928845, - "action": "CARVE_LEFT" - }, - { - "x": 151.01718226708962, - "y": -6620.003953087067, - "rotation": 0.9623252788810603, - "action": "CARVE_LEFT" - }, - { - "x": 153.98871273070256, - "y": -6622.539942523597, - "rotation": 0.9082200720692362, - "action": "CARVE_LEFT" - }, - { - "x": 156.7817668773119, - "y": -6625.238436840201, - "rotation": 0.854114865257412, - "action": "CARVE_LEFT" - }, - { - "x": 159.39688998788537, - "y": -6628.099660532557, - "rotation": 0.8000096584455878, - "action": "CARVE_LEFT" - }, - { - "x": 161.83455334327084, - "y": -6631.123905010329, - "rotation": 0.7459044516337636, - "action": "CARVE_LEFT" - }, - { - "x": 164.09515444060193, - "y": -6634.311528400312, - "rotation": 0.6917992448219394, - "action": "CARVE_LEFT" - }, - { - "x": 166.17901720910976, - "y": -6637.66295535014, - "rotation": 0.6376940380101153, - "action": "CARVE_LEFT" - }, - { - "x": 168.0863922253421, - "y": -6641.178676832512, - "rotation": 0.5835888311982911, - "action": "CARVE_LEFT" - }, - { - "x": 169.81745692779174, - "y": -6644.859249949978, - "rotation": 0.5294836243864669, - "action": "CARVE_LEFT" - }, - { - "x": 171.37231583093535, - "y": -6648.70529774025, - "rotation": 0.47537841757464266, - "action": "CARVE_LEFT" - }, - { - "x": 172.7510007386848, - "y": -6652.717508982053, - "rotation": 0.42127321076281843, - "action": "CARVE_LEFT" - }, - { - "x": 173.95347095725202, - "y": -6656.8966380015145, - "rotation": 0.3671680039509942, - "action": "CARVE_LEFT" - }, - { - "x": 174.97961350742932, - "y": -6661.243504479082, - "rotation": 0.31306279713916996, - "action": "CARVE_LEFT" - }, - { - "x": 175.8292433362865, - "y": -6665.758993256979, - "rotation": 0.2589575903273457, - "action": "CARVE_LEFT" - }, - { - "x": 176.50210352828634, - "y": -6670.444054147185, - "rotation": 0.2048523835155215, - "action": "CARVE_LEFT" - }, - { - "x": 176.9978655158201, - "y": -6675.299701739951, - "rotation": 0.1507471767036973, - "action": "CARVE_LEFT" - }, - { - "x": 177.3161292891644, - "y": -6680.32701521284, - "rotation": 0.0966419698918731, - "action": "CARVE_LEFT" - }, - { - "x": 177.45642360586106, - "y": -6685.5271381402945, - "rotation": 0.04253676308004888, - "action": "CARVE_LEFT" - }, - { - "x": 177.41820841376665, - "y": -6690.830198061854, - "rotation": 6.271616863447811, - "action": "NOTHING" - }, - { - "x": 177.38850855198396, - "y": -6696.150289978895, - "rotation": 6.275107521951799, - "action": "NOTHING" - }, - { - "x": 177.37161397692256, - "y": -6701.491412615596, - "rotation": 6.278598180455788, - "action": "NOTHING" - }, - { - "x": 177.3675687036858, - "y": -6706.853633210611, - "rotation": 6.282088838959776, - "action": "NOTHING" - }, - { - "x": 177.3764168325872, - "y": -6712.220569583402, - "rotation": 0.0023941902841784213, - "action": "NOTHING" - }, - { - "x": 177.37235774613774, - "y": -6717.601100312072, - "rotation": 6.282088838959776, - "action": "CARVE_LEFT" - }, - { - "x": 177.18817498142715, - "y": -6722.82256642902, - "rotation": 6.227983632147952, - "action": "CARVE_LEFT" - }, - { - "x": 176.8229960015944, - "y": -6727.883419719955, - "rotation": 6.173878425336127, - "action": "CARVE_LEFT" - }, - { - "x": 176.27642837044903, - "y": -6732.782558136923, - "rotation": 6.119773218524303, - "action": "CARVE_LEFT" - }, - { - "x": 175.5481536261955, - "y": -6737.518949751881, - "rotation": 6.065668011712479, - "action": "CARVE_LEFT" - }, - { - "x": 174.63792706440086, - "y": -6742.091632552161, - "rotation": 6.011562804900654, - "action": "CARVE_LEFT" - }, - { - "x": 173.54557752155938, - "y": -6746.499714236504, - "rotation": 5.95745759808883, - "action": "CARVE_LEFT" - }, - { - "x": 172.2710071592526, - "y": -6750.742372011644, - "rotation": 5.903352391277005, - "action": "CARVE_LEFT" - }, - { - "x": 170.814191248903, - "y": -6754.8188523894605, - "rotation": 5.849247184465181, - "action": "CARVE_LEFT" - }, - { - "x": 169.17517795711993, - "y": -6758.7284709846745, - "rotation": 5.795141977653357, - "action": "CARVE_LEFT" - }, - { - "x": 167.35408813163616, - "y": -6762.47061231311, - "rotation": 5.741036770841532, - "action": "CARVE_LEFT" - }, - { - "x": 165.35111508783348, - "y": -6766.044729590501, - "rotation": 5.686931564029708, - "action": "CARVE_LEFT" - }, - { - "x": 163.1665243958558, - "y": -6769.450344531857, - "rotation": 5.632826357217883, - "action": "CARVE_LEFT" - }, - { - "x": 160.80065366830829, - "y": -6772.68704715137, - "rotation": 5.578721150406059, - "action": "CARVE_LEFT" - }, - { - "x": 158.2539123485408, - "y": -6775.754495562883, - "rotation": 5.524615943594235, - "action": "CARVE_LEFT" - }, - { - "x": 155.52678149951433, - "y": -6778.652415780891, - "rotation": 5.47051073678241, - "action": "CARVE_LEFT" - }, - { - "x": 152.61981359324855, - "y": -6781.380601522102, - "rotation": 5.416405529970586, - "action": "CARVE_LEFT" - }, - { - "x": 149.53363230084943, - "y": -6783.93891400753, - "rotation": 5.362300323158761, - "action": "CARVE_LEFT" - }, - { - "x": 146.2689322831149, - "y": -6786.327281765143, - "rotation": 5.308195116346937, - "action": "CARVE_LEFT" - }, - { - "x": 142.82647898171732, - "y": -6788.545700433044, - "rotation": 5.254089909535113, - "action": "CARVE_LEFT" - }, - { - "x": 139.20710841096113, - "y": -6790.594232563191, - "rotation": 5.199984702723288, - "action": "CARVE_LEFT" - }, - { - "x": 135.4117269501143, - "y": -6792.473007425669, - "rotation": 5.145879495911464, - "action": "NOTHING" - }, - { - "x": 131.21227464279946, - "y": -6793.971619986153, - "rotation": 5.149370154415452, - "action": "NOTHING" - }, - { - "x": 127.03038506729864, - "y": -6795.480531622469, - "rotation": 5.152860812919441, - "action": "NOTHING" - }, - { - "x": 122.8659832842123, - "y": -6796.999732730919, - "rotation": 5.156351471423429, - "action": "NOTHING" - }, - { - "x": 118.71899488617505, - "y": -6798.529214068903, - "rotation": 5.1598421299274175, - "action": "NOTHING" - }, - { - "x": 114.58934599637016, - "y": -6800.068966753832, - "rotation": 5.163332788431406, - "action": "NOTHING" - }, - { - "x": 110.47696326704812, - "y": -6801.618982262047, - "rotation": 5.166823446935394, - "action": "NOTHING" - }, - { - "x": 106.38177387804913, - "y": -6803.17925242774, - "rotation": 5.170314105439383, - "action": "NOTHING" - }, - { - "x": 102.30370553532944, - "y": -6804.749769441871, - "rotation": 5.173804763943371, - "action": "NOTHING" - }, - { - "x": 98.24268646949176, - "y": -6806.3305258511, - "rotation": 5.17729542244736, - "action": "CARVE_RIGHT" - }, - { - "x": 94.77017168034793, - "y": -6808.450682191926, - "rotation": 5.231400629259184, - "action": "CARVE_RIGHT" - }, - { - "x": 91.47923617403602, - "y": -6810.7341915211155, - "rotation": 5.2855058360710085, - "action": "CARVE_RIGHT" - }, - { - "x": 88.36913167744925, - "y": -6813.181094833684, - "rotation": 5.339611042882833, - "action": "CARVE_RIGHT" - }, - { - "x": 85.43918451300932, - "y": -6815.79150058013, - "rotation": 5.393716249694657, - "action": "CARVE_RIGHT" - }, - { - "x": 82.68879538062338, - "y": -6818.565584468096, - "rotation": 5.447821456506482, - "action": "CARVE_RIGHT" - }, - { - "x": 80.11743914023934, - "y": -6821.503589264577, - "rotation": 5.501926663318306, - "action": "CARVE_RIGHT" - }, - { - "x": 77.72466459499807, - "y": -6824.6058245986715, - "rotation": 5.556031870130131, - "action": "CARVE_RIGHT" - }, - { - "x": 75.51009427498064, - "y": -6827.872666764871, - "rotation": 5.610137076941955, - "action": "CARVE_RIGHT" - }, - { - "x": 73.4734242215493, - "y": -6831.304558526903, - "rotation": 5.664242283753779, - "action": "CARVE_RIGHT" - }, - { - "x": 71.61442377228039, - "y": -6834.902008922103, - "rotation": 5.718347490565604, - "action": "CARVE_RIGHT" - }, - { - "x": 69.93293534648797, - "y": -6838.665593066334, - "rotation": 5.772452697377428, - "action": "CARVE_RIGHT" - }, - { - "x": 68.42887423133617, - "y": -6842.595951959435, - "rotation": 5.826557904189253, - "action": "CARVE_RIGHT" - }, - { - "x": 67.10222836853902, - "y": -6846.6937922912175, - "rotation": 5.880663111001077, - "action": "CARVE_RIGHT" - }, - { - "x": 65.95305814164617, - "y": -6850.9598862479825, - "rotation": 5.934768317812901, - "action": "CARVE_RIGHT" - }, - { - "x": 64.98149616391281, - "y": -6855.395071319584, - "rotation": 5.988873524624726, - "action": "CARVE_RIGHT" - }, - { - "x": 64.18774706675242, - "y": -6860.000250107014, - "rotation": 6.04297873143655, - "action": "CARVE_RIGHT" - }, - { - "x": 63.57208728877069, - "y": -6864.776390130527, - "rotation": 6.097083938248375, - "action": "CARVE_RIGHT" - }, - { - "x": 63.13486486537913, - "y": -6869.724523638287, - "rotation": 6.151189145060199, - "action": "CARVE_RIGHT" - }, - { - "x": 62.87649921898686, - "y": -6874.845747415544, - "rotation": 6.205294351872023, - "action": "CARVE_RIGHT" - }, - { - "x": 62.797480949768996, - "y": -6880.141222594339, - "rotation": 6.259399558683848, - "action": "CARVE_RIGHT" - }, - { - "x": 62.89835641737919, - "y": -6885.42454327664, - "rotation": 0.030319458316085957, - "action": "CARVE_RIGHT" - }, - { - "x": 63.17962818594122, - "y": -6890.548172879751, - "rotation": 0.08442466512791016, - "action": "CARVE_RIGHT" - }, - { - "x": 63.641724521516174, - "y": -6895.510975374118, - "rotation": 0.13852987193973437, - "action": "CARVE_RIGHT" - }, - { - "x": 64.28499961002588, - "y": -6900.311884949778, - "rotation": 0.19263507875155858, - "action": "NOTHING" - }, - { - "x": 64.98765619294717, - "y": -6905.064410609362, - "rotation": 0.18914442024756992, - "action": "NOTHING" - }, - { - "x": 65.67819168918238, - "y": -6909.834790595458, - "rotation": 0.18565376174358125, - "action": "NOTHING" - }, - { - "x": 66.35657828713721, - "y": -6914.623082737793, - "rotation": 0.1821631032395926, - "action": "NOTHING" - }, - { - "x": 67.02278793558445, - "y": -6919.429345017405, - "rotation": 0.17867244473560392, - "action": "NOTHING" - }, - { - "x": 67.67679234436015, - "y": -6924.25363556615, - "rotation": 0.17518178623161526, - "action": "NOTHING" - }, - { - "x": 68.31856298505794, - "y": -6929.09601266622, - "rotation": 0.1716911277276266, - "action": "NOTHING" - }, - { - "x": 68.94807109172139, - "y": -6933.956534749653, - "rotation": 0.16820046922363793, - "action": "NOTHING" - }, - { - "x": 69.56528766153451, - "y": -6938.8352603978465, - "rotation": 0.16470981071964927, - "action": "NOTHING" - }, - { - "x": 70.1701834555104, - "y": -6943.732248341077, - "rotation": 0.1612191522156606, - "action": "NOTHING" - }, - { - "x": 70.76272899917791, - "y": -6948.647557458016, - "rotation": 0.15772849371167194, - "action": "NOTHING" - }, - { - "x": 71.34289458326654, - "y": -6953.581246775249, - "rotation": 0.15423783520768328, - "action": "NOTHING" - }, - { - "x": 71.9106502643894, - "y": -6958.533375466796, - "rotation": 0.1507471767036946, - "action": "NOTHING" - }, - { - "x": 72.46596586572431, - "y": -6963.504002853635, - "rotation": 0.14725651819970595, - "action": "NOTHING" - }, - { - "x": 73.00881097769303, - "y": -6968.493188403222, - "rotation": 0.14376585969571729, - "action": "NOTHING" - }, - { - "x": 73.53915495863866, - "y": -6973.500991729019, - "rotation": 0.14027520119172862, - "action": "NOTHING" - }, - { - "x": 74.05696693550118, - "y": -6978.527472590019, - "rotation": 0.13678454268773996, - "action": "NOTHING" - }, - { - "x": 74.56221580449107, - "y": -6983.572690890273, - "rotation": 0.1332938841837513, - "action": "NOTHING" - }, - { - "x": 75.05487023176124, - "y": -6988.63670667842, - "rotation": 0.12980322567976263, - "action": "NOTHING" - }, - { - "x": 75.53489865407693, - "y": -6993.719580147212, - "rotation": 0.12631256717577397, - "action": "CARVE_LEFT" - }, - { - "x": 75.78218931690124, - "y": -6999.025126042853, - "rotation": 0.07220736036394976, - "action": "CARVE_LEFT" - }, - { - "x": 75.84427258347556, - "y": -7004.51004231918, - "rotation": 0.018102153552125543, - "action": "CARVE_LEFT" - }, - { - "x": 75.72062638962703, - "y": -7009.945581277979, - "rotation": 6.247182253919887, - "action": "CARVE_LEFT" - }, - { - "x": 75.4107814064164, - "y": -7015.215599234045, - "rotation": 6.193077047108063, - "action": "CARVE_LEFT" - }, - { - "x": 74.91434249617058, - "y": -7020.318991838206, - "rotation": 6.1389718402962385, - "action": "CARVE_LEFT" - }, - { - "x": 74.2309884948682, - "y": -7025.254724860068, - "rotation": 6.084866633484414, - "action": "CARVE_LEFT" - }, - { - "x": 73.36047199512382, - "y": -7030.021833983503, - "rotation": 6.03076142667259, - "action": "CARVE_LEFT" - }, - { - "x": 72.30261912976874, - "y": -7034.6194246026935, - "rotation": 5.976656219860765, - "action": "CARVE_LEFT" - }, - { - "x": 71.05732935602724, - "y": -7039.046671618738, - "rotation": 5.922551013048941, - "action": "CARVE_LEFT" - }, - { - "x": 69.62457524028639, - "y": -7043.302819236813, - "rotation": 5.8684458062371165, - "action": "CARVE_LEFT" - }, - { - "x": 68.00440224345812, - "y": -7047.387180763888, - "rotation": 5.814340599425292, - "action": "CARVE_LEFT" - }, - { - "x": 66.19692850693168, - "y": -7051.299138407004, - "rotation": 5.760235392613468, - "action": "CARVE_LEFT" - }, - { - "x": 64.20234463911528, - "y": -7055.038143072095, - "rotation": 5.706130185801643, - "action": "CARVE_LEFT" - }, - { - "x": 62.020913502565016, - "y": -7058.603714163369, - "rotation": 5.652024978989819, - "action": "CARVE_LEFT" - }, - { - "x": 59.652970001699764, - "y": -7061.99543938323, - "rotation": 5.5979197721779945, - "action": "CARVE_LEFT" - }, - { - "x": 57.09892087110043, - "y": -7065.212974532763, - "rotation": 5.54381456536617, - "action": "CARVE_LEFT" - }, - { - "x": 54.35924446439198, - "y": -7068.256043312751, - "rotation": 5.489709358554346, - "action": "CARVE_LEFT" - }, - { - "x": 51.4344905437067, - "y": -7071.12443712525, - "rotation": 5.435604151742521, - "action": "CARVE_LEFT" - }, - { - "x": 48.32528006972725, - "y": -7073.818014875697, - "rotation": 5.381498944930697, - "action": "CARVE_LEFT" - }, - { - "x": 45.03230499230784, - "y": -7076.336702775577, - "rotation": 5.3273937381188725, - "action": "CARVE_LEFT" - }, - { - "x": 41.556328041672145, - "y": -7078.68049414561, - "rotation": 5.273288531307048, - "action": "CARVE_LEFT" - }, - { - "x": 37.898182520186275, - "y": -7080.849449219502, - "rotation": 5.219183324495224, - "action": "CARVE_LEFT" - }, - { - "x": 34.058772094705446, - "y": -7082.843694948215, - "rotation": 5.165078117683399, - "action": "CARVE_LEFT" - }, - { - "x": 30.03907058949273, - "y": -7084.663424804783, - "rotation": 5.110972910871575, - "action": "CARVE_LEFT" - }, - { - "x": 25.84012177970836, - "y": -7086.3088985896675, - "rotation": 5.0568677040597505, - "action": "CARVE_LEFT" - }, - { - "x": 21.463039185468183, - "y": -7087.780442236638, - "rotation": 5.002762497247926, - "action": "CARVE_LEFT" - }, - { - "x": 16.90900586646965, - "y": -7089.078447619195, - "rotation": 4.948657290436102, - "action": "CARVE_LEFT" - }, - { - "x": 12.179274217183899, - "y": -7090.203372357516, - "rotation": 4.894552083624277, - "action": "CARVE_LEFT" - }, - { - "x": 7.275165762612437, - "y": -7091.15573962594, - "rotation": 4.840446876812453, - "action": "NOTHING" - }, - { - "x": 1.849558582102767, - "y": -7091.614911319768, - "rotation": 4.843937535316441, - "action": "NOTHING" - }, - { - "x": -3.5527644449777354, - "y": -7092.085385415717, - "rotation": 4.84742819382043, - "action": "NOTHING" - }, - { - "x": -8.931920728769505, - "y": -7092.567122432759, - "rotation": 4.850918852324418, - "action": "NOTHING" - }, - { - "x": -14.28802703131926, - "y": -7093.060083337643, - "rotation": 4.854409510828407, - "action": "NOTHING" - }, - { - "x": -19.62119946837054, - "y": -7093.56422954357, - "rotation": 4.857900169332395, - "action": "NOTHING" - }, - { - "x": -24.931553511149524, - "y": -7094.079522908876, - "rotation": 4.8613908278363835, - "action": "NOTHING" - }, - { - "x": -30.21920398814609, - "y": -7094.605925735716, - "rotation": 4.864881486340372, - "action": "CARVE_RIGHT" - }, - { - "x": -34.7882187900862, - "y": -7095.787864747272, - "rotation": 4.918986693152196, - "action": "CARVE_RIGHT" - }, - { - "x": -39.16862766247887, - "y": -7097.135316701879, - "rotation": 4.973091899964021, - "action": "CARVE_RIGHT" - }, - { - "x": -43.36161919729524, - "y": -7098.6479244535385, - "rotation": 5.027197106775845, - "action": "CARVE_RIGHT" - }, - { - "x": -47.36830610285707, - "y": -7100.325399483405, - "rotation": 5.08130231358767, - "action": "CARVE_RIGHT" - }, - { - "x": -51.189725425416334, - "y": -7102.1675216982185, - "rotation": 5.135407520399494, - "action": "CARVE_RIGHT" - }, - { - "x": -54.826838770127154, - "y": -7104.1741392292915, - "rotation": 5.189512727211318, - "action": "CARVE_RIGHT" - }, - { - "x": -58.28053252141164, - "y": -7106.345168232048, - "rotation": 5.243617934023143, - "action": "CARVE_RIGHT" - }, - { - "x": -61.55161806272124, - "y": -7108.680592686115, - "rotation": 5.297723140834967, - "action": "CARVE_RIGHT" - }, - { - "x": -64.64083199569528, - "y": -7111.180464195964, - "rotation": 5.351828347646792, - "action": "CARVE_RIGHT" - }, - { - "x": -67.5488363587181, - "y": -7113.844901792106, - "rotation": 5.405933554458616, - "action": "CARVE_RIGHT" - }, - { - "x": -70.27621884487661, - "y": -7116.674091732822, - "rotation": 5.46003876127044, - "action": "CARVE_RIGHT" - }, - { - "x": -72.82349301931959, - "y": -7119.668287306455, - "rotation": 5.514143968082265, - "action": "CARVE_RIGHT" - }, - { - "x": -75.19109853602053, - "y": -7122.827808634235, - "rotation": 5.568249174894089, - "action": "CARVE_RIGHT" - }, - { - "x": -77.37940135394551, - "y": -7126.153042473653, - "rotation": 5.622354381705914, - "action": "CARVE_RIGHT" - }, - { - "x": -79.38869395262755, - "y": -7129.644442022371, - "rotation": 5.676459588517738, - "action": "CARVE_RIGHT" - }, - { - "x": -81.21919554714921, - "y": -7133.30252672268, - "rotation": 5.730564795329562, - "action": "CARVE_RIGHT" - }, - { - "x": -82.87105230253496, - "y": -7137.127882066494, - "rotation": 5.784670002141387, - "action": "CARVE_RIGHT" - }, - { - "x": -84.34433754755467, - "y": -7141.121159400873, - "rotation": 5.838775208953211, - "action": "CARVE_RIGHT" - }, - { - "x": -85.63905198794006, - "y": -7145.283075734096, - "rotation": 5.892880415765036, - "action": "CARVE_RIGHT" - }, - { - "x": -86.75512391901546, - "y": -7149.614413542262, - "rotation": 5.94698562257686, - "action": "CARVE_RIGHT" - }, - { - "x": -87.6924094377445, - "y": -7154.116020576418, - "rotation": 6.001090829388684, - "action": "CARVE_RIGHT" - }, - { - "x": -88.4506926541943, - "y": -7158.78880967023, - "rotation": 6.055196036200509, - "action": "CARVE_RIGHT" - }, - { - "x": -89.02968590241858, - "y": -7163.633758548177, - "rotation": 6.109301243012333, - "action": "CARVE_RIGHT" - }, - { - "x": -89.42902995076139, - "y": -7168.651909634277, - "rotation": 6.163406449824158, - "action": "CARVE_RIGHT" - }, - { - "x": -89.64829421158282, - "y": -7173.844369861338, - "rotation": 6.217511656635982, - "action": "CARVE_RIGHT" - }, - { - "x": -89.68697695040835, - "y": -7179.212310480739, - "rotation": 6.2716168634478064, - "action": "CARVE_RIGHT" - }, - { - "x": -89.54453543125516, - "y": -7184.492021213224, - "rotation": 0.042536763080044615, - "action": "CARVE_RIGHT" - }, - { - "x": -89.22048877125626, - "y": -7189.610681507291, - "rotation": 0.09664196989186882, - "action": "CARVE_RIGHT" - }, - { - "x": -88.71443032022648, - "y": -7194.567175876223, - "rotation": 0.15074717670369303, - "action": "CARVE_RIGHT" - }, - { - "x": -88.02602744292184, - "y": -7199.360458991367, - "rotation": 0.20485238351551724, - "action": "CARVE_RIGHT" - }, - { - "x": -87.15502130189763, - "y": -7203.989555477497, - "rotation": 0.25895759032734145, - "action": "CARVE_RIGHT" - }, - { - "x": -86.10122664096379, - "y": -7208.453559708742, - "rotation": 0.3130627971391657, - "action": "CARVE_RIGHT" - }, - { - "x": -84.86453156923578, - "y": -7212.751635605076, - "rotation": 0.3671680039509899, - "action": "CARVE_RIGHT" - }, - { - "x": -83.44489734577961, - "y": -7216.883016429356, - "rotation": 0.42127321076281415, - "action": "CARVE_RIGHT" - }, - { - "x": -81.84235816484924, - "y": -7220.8470045849235, - "rotation": 0.4753784175746384, - "action": "CARVE_RIGHT" - }, - { - "x": -80.057020941715, - "y": -7224.642971413767, - "rotation": 0.5294836243864626, - "action": "CARVE_RIGHT" - }, - { - "x": -78.08906509908121, - "y": -7228.270356995221, - "rotation": 0.5835888311982868, - "action": "CARVE_RIGHT" - }, - { - "x": -75.9387423540918, - "y": -7231.728669945236, - "rotation": 0.6376940380101109, - "action": "CARVE_RIGHT" - }, - { - "x": -73.60637650592193, - "y": -7235.017487216184, - "rotation": 0.6917992448219351, - "action": "CARVE_RIGHT" - }, - { - "x": -71.0923632239545, - "y": -7238.136453897222, - "rotation": 0.7459044516337593, - "action": "CARVE_RIGHT" - }, - { - "x": -68.39716983653966, - "y": -7241.085283015199, - "rotation": 0.8000096584455835, - "action": "CARVE_RIGHT" - }, - { - "x": -65.5213351203361, - "y": -7243.863755336112, - "rotation": 0.8541148652574077, - "action": "CARVE_RIGHT" - }, - { - "x": -62.46546909023222, - "y": -7246.471719167105, - "rotation": 0.9082200720692318, - "action": "CARVE_RIGHT" - }, - { - "x": -59.230252789845906, - "y": -7248.90909015901, - "rotation": 0.962325278881056, - "action": "CARVE_RIGHT" - }, - { - "x": -55.816438082601394, - "y": -7251.175851109434, - "rotation": 1.0164304856928803, - "action": "CARVE_RIGHT" - }, - { - "x": -52.224847443381506, - "y": -7253.272051766383, - "rotation": 1.0705356925047045, - "action": "CARVE_RIGHT" - }, - { - "x": -48.45637375075391, - "y": -7255.197808632426, - "rotation": 1.1246408993165287, - "action": "CARVE_RIGHT" - }, - { - "x": -44.51198007976982, - "y": -7256.953304769397, - "rotation": 1.1787461061283528, - "action": "CARVE_RIGHT" - }, - { - "x": -40.392699495333574, - "y": -7258.538789603633, - "rotation": 1.232851312940177, - "action": "CARVE_RIGHT" - }, - { - "x": -36.09963484614171, - "y": -7259.9545787317475, - "rotation": 1.2869565197520012, - "action": "CARVE_RIGHT" - }, - { - "x": -31.63395855918994, - "y": -7261.201053726936, - "rotation": 1.3410617265638254, - "action": "CARVE_RIGHT" - }, - { - "x": -26.996912434846482, - "y": -7262.278661945815, - "rotation": 1.3951669333756496, - "action": "CARVE_RIGHT" - }, - { - "x": -22.18980744249039, - "y": -7263.187916335788, - "rotation": 1.4492721401874737, - "action": "CARVE_RIGHT" - }, - { - "x": -17.21402351671326, - "y": -7263.929395242947, - "rotation": 1.503377346999298, - "action": "CARVE_RIGHT" - }, - { - "x": -12.071009354082882, - "y": -7264.503742220498, - "rotation": 1.557482553811122, - "action": "NOTHING" - }, - { - "x": -6.381660126993115, - "y": -7264.560707982642, - "rotation": 1.5539918953071334, - "action": "CARVE_LEFT" - }, - { - "x": -1.4501653976097337, - "y": -7265.307924124557, - "rotation": 1.4998866884953093, - "action": "CARVE_LEFT" - }, - { - "x": 3.293847263214066, - "y": -7266.21801658684, - "rotation": 1.445781481683485, - "action": "CARVE_LEFT" - }, - { - "x": 7.851738758343125, - "y": -7267.290472187593, - "rotation": 1.391676274871661, - "action": "CARVE_LEFT" - }, - { - "x": 12.224793610611808, - "y": -7268.524846823957, - "rotation": 1.3375710680598367, - "action": "CARVE_LEFT" - }, - { - "x": 16.414220185753692, - "y": -7269.920765269314, - "rotation": 1.2834658612480125, - "action": "CARVE_LEFT" - }, - { - "x": 20.421150914720027, - "y": -7271.477920971041, - "rotation": 1.2293606544361884, - "action": "CARVE_LEFT" - }, - { - "x": 24.246642515388622, - "y": -7273.196075848827, - "rotation": 1.1752554476243642, - "action": "CARVE_LEFT" - }, - { - "x": 27.891676213664716, - "y": -7275.075060093536, - "rotation": 1.12115024081254, - "action": "CARVE_LEFT" - }, - { - "x": 31.357157963975467, - "y": -7277.114771966635, - "rotation": 1.0670450340007158, - "action": "CARVE_LEFT" - }, - { - "x": 34.64391866915963, - "y": -7279.315177600161, - "rotation": 1.0129398271888916, - "action": "CARVE_LEFT" - }, - { - "x": 37.75271439975407, - "y": -7281.676310797252, - "rotation": 0.9588346203770675, - "action": "CARVE_LEFT" - }, - { - "x": 40.6842266126786, - "y": -7284.198272833215, - "rotation": 0.9047294135652433, - "action": "CARVE_LEFT" - }, - { - "x": 43.43906236932089, - "y": -7286.881232257153, - "rotation": 0.8506242067534191, - "action": "CARVE_LEFT" - }, - { - "x": 46.01775455302282, - "y": -7289.725424694128, - "rotation": 0.7965189999415949, - "action": "CARVE_LEFT" - }, - { - "x": 48.420762085970075, - "y": -7292.731152647879, - "rotation": 0.7424137931297707, - "action": "CARVE_LEFT" - }, - { - "x": 50.648470145486364, - "y": -7295.898785304071, - "rotation": 0.6883085863179466, - "action": "CARVE_LEFT" - }, - { - "x": 52.70119037973396, - "y": -7299.2287583340985, - "rotation": 0.6342033795061224, - "action": "CARVE_LEFT" - }, - { - "x": 54.57916112282206, - "y": -7302.721573699424, - "rotation": 0.5800981726942982, - "action": "CARVE_LEFT" - }, - { - "x": 56.28254760932459, - "y": -7306.3777994564525, - "rotation": 0.525992965882474, - "action": "CARVE_LEFT" - }, - { - "x": 57.811442188208915, - "y": -7310.198069561949, - "rotation": 0.4718877590706498, - "action": "CARVE_LEFT" - }, - { - "x": 59.165864536177104, - "y": -7314.1830836789895, - "rotation": 0.41778255225882555, - "action": "CARVE_LEFT" - }, - { - "x": 60.34576187042125, - "y": -7318.3336069834495, - "rotation": 0.3636773454470013, - "action": "CARVE_LEFT" - }, - { - "x": 61.35100916079439, - "y": -7322.650469971021, - "rotation": 0.3095721386351771, - "action": "CARVE_LEFT" - }, - { - "x": 62.181409341398606, - "y": -7327.134568264767, - "rotation": 0.25546693182335284, - "action": "CARVE_LEFT" - }, - { - "x": 62.83669352159176, - "y": -7331.786862423202, - "rotation": 0.20136172501152863, - "action": "CARVE_LEFT" - }, - { - "x": 63.316521196414534, - "y": -7336.608377748906, - "rotation": 0.14725651819970442, - "action": "CARVE_LEFT" - }, - { - "x": 63.620480456439125, - "y": -7341.600204097661, - "rotation": 0.09315131138788021, - "action": "CARVE_LEFT" - }, - { - "x": 63.748088197041305, - "y": -7346.763495688122, - "rotation": 0.039046104576056, - "action": "CARVE_LEFT" - }, - { - "x": 63.69879407919345, - "y": -7352.0077793836845, - "rotation": 6.268126204943818, - "action": "CARVE_LEFT" - }, - { - "x": 63.47206207212271, - "y": -7357.095506240599, - "rotation": 6.214020998131994, - "action": "CARVE_LEFT" - }, - { - "x": 63.0674305458375, - "y": -7362.025508467849, - "rotation": 6.159915791320169, - "action": "CARVE_LEFT" - }, - { - "x": 62.484512052914106, - "y": -7366.796688590762, - "rotation": 6.105810584508345, - "action": "CARVE_LEFT" - }, - { - "x": 61.72299311088332, - "y": -7371.408019245933, - "rotation": 6.05170537769652, - "action": "CARVE_LEFT" - }, - { - "x": 60.78263398521564, - "y": -7375.858542976714, - "rotation": 5.997600170884696, - "action": "CARVE_LEFT" - }, - { - "x": 59.6632684729032, - "y": -7380.1473720292515, - "rotation": 5.943494964072872, - "action": "CARVE_LEFT" - }, - { - "x": 58.36480368663712, - "y": -7384.273688149099, - "rotation": 5.889389757261047, - "action": "CARVE_LEFT" - }, - { - "x": 56.8872198395785, - "y": -7388.236742378373, - "rotation": 5.835284550449223, - "action": "CARVE_LEFT" - }, - { - "x": 55.23057003072163, - "y": -7392.035854853473, - "rotation": 5.781179343637398, - "action": "CARVE_LEFT" - }, - { - "x": 53.394980030847755, - "y": -7395.670414603357, - "rotation": 5.727074136825574, - "action": "CARVE_LEFT" - }, - { - "x": 51.380648069067895, - "y": -7399.139879348364, - "rotation": 5.67296893001375, - "action": "CARVE_LEFT" - }, - { - "x": 49.18784461995316, - "y": -7402.443775299592, - "rotation": 5.618863723201925, - "action": "NOTHING" - }, - { - "x": 46.764003241288876, - "y": -7405.534177190344, - "rotation": 5.622354381705914, - "action": "NOTHING" - }, - { - "x": 44.352750160822765, - "y": -7408.636710581907, - "rotation": 5.625845040209902, - "action": "NOTHING" - }, - { - "x": 41.954067153031446, - "y": -7411.751404218991, - "rotation": 5.6293356987138905, - "action": "NOTHING" - }, - { - "x": 39.567936365735285, - "y": -7414.878287091631, - "rotation": 5.632826357217879, - "action": "NOTHING" - }, - { - "x": 37.19434031903669, - "y": -7418.017388434423, - "rotation": 5.636317015721867, - "action": "NOTHING" - }, - { - "x": 34.83326190426128, - "y": -7421.168737725765, - "rotation": 5.639807674225856, - "action": "CARVE_RIGHT" - }, - { - "x": 32.8867441878176, - "y": -7424.704618950909, - "rotation": 5.69391288103768, - "action": "CARVE_RIGHT" - }, - { - "x": 31.11848578024739, - "y": -7428.406956365599, - "rotation": 5.748018087849505, - "action": "CARVE_RIGHT" - }, - { - "x": 29.528366107763258, - "y": -7432.276358577971, - "rotation": 5.802123294661329, - "action": "CARVE_RIGHT" - }, - { - "x": 28.116337357177134, - "y": -7436.313499982533, - "rotation": 5.856228501473153, - "action": "CARVE_RIGHT" - }, - { - "x": 26.882424262892897, - "y": -7440.519120566426, - "rotation": 5.910333708284978, - "action": "CARVE_RIGHT" - }, - { - "x": 25.82672389448407, - "y": -7444.894025716211, - "rotation": 5.964438915096802, - "action": "CARVE_RIGHT" - }, - { - "x": 24.949405444855024, - "y": -7449.439086025198, - "rotation": 6.018544121908627, - "action": "CARVE_RIGHT" - }, - { - "x": 24.250710018984204, - "y": -7454.155237101294, - "rotation": 6.072649328720451, - "action": "CARVE_RIGHT" - }, - { - "x": 23.730950423247773, - "y": -7459.043479375394, - "rotation": 6.1267545355322754, - "action": "CARVE_RIGHT" - }, - { - "x": 23.390510955322206, - "y": -7464.104877910291, - "rotation": 6.1808597423441, - "action": "CARVE_RIGHT" - }, - { - "x": 23.229847194664263, - "y": -7469.340562210116, - "rotation": 6.234964949155924, - "action": "CARVE_RIGHT" - }, - { - "x": 23.24948522057765, - "y": -7474.715201435841, - "rotation": 0.005884848788162422, - "action": "CARVE_RIGHT" - }, - { - "x": 23.4499583241116, - "y": -7479.930034557231, - "rotation": 0.05999005559998664, - "action": "CARVE_RIGHT" - }, - { - "x": 23.831725409201148, - "y": -7484.983896535581, - "rotation": 0.11409526241181085, - "action": "CARVE_RIGHT" - }, - { - "x": 24.39517121083366, - "y": -7489.875692635417, - "rotation": 0.16820046922363507, - "action": "CARVE_RIGHT" - }, - { - "x": 25.140606512615395, - "y": -7494.604398219467, - "rotation": 0.22230567603545928, - "action": "CARVE_RIGHT" - }, - { - "x": 26.068268363739808, - "y": -7499.169058544185, - "rotation": 0.2764108828472835, - "action": "CARVE_RIGHT" - }, - { - "x": 27.17832029535908, - "y": -7503.5687885558455, - "rotation": 0.3305160896591077, - "action": "CARVE_RIGHT" - }, - { - "x": 28.470852536360503, - "y": -7507.802772687188, - "rotation": 0.38462129647093196, - "action": "CARVE_RIGHT" - }, - { - "x": 29.945882228549287, - "y": -7511.870264654625, - "rotation": 0.4387265032827562, - "action": "CARVE_RIGHT" - }, - { - "x": 31.603353641239316, - "y": -7515.7705872560055, - "rotation": 0.49283171009458043, - "action": "CARVE_RIGHT" - }, - { - "x": 33.44313838525348, - "y": -7519.503132168926, - "rotation": 0.5469369169064047, - "action": "CARVE_RIGHT" - }, - { - "x": 35.465035626335066, - "y": -7523.067359749604, - "rotation": 0.6010421237182288, - "action": "CARVE_RIGHT" - }, - { - "x": 37.66877229797187, - "y": -7526.462798832301, - "rotation": 0.655147330530053, - "action": "CARVE_RIGHT" - }, - { - "x": 40.05400331363445, - "y": -7529.689046529286, - "rotation": 0.7092525373418772, - "action": "CARVE_RIGHT" - }, - { - "x": 42.62031177843018, - "y": -7532.7457680313655, - "rotation": 0.7633577441537014, - "action": "NOTHING" - }, - { - "x": 45.45814608473246, - "y": -7535.549965589906, - "rotation": 0.7598670856497127, - "action": "NOTHING" - }, - { - "x": 48.28239172103672, - "y": -7538.365683234114, - "rotation": 0.7563764271457241, - "action": "NOTHING" - }, - { - "x": 51.093079151286574, - "y": -7541.192941759738, - "rotation": 0.7528857686417354, - "action": "NOTHING" - }, - { - "x": 53.89023843105627, - "y": -7544.031762232836, - "rotation": 0.7493951101377467, - "action": "NOTHING" - }, - { - "x": 56.67389920870723, - "y": -7546.882165988948, - "rotation": 0.7459044516337581, - "action": "NOTHING" - }, - { - "x": 59.44409072654157, - "y": -7549.744174632262, - "rotation": 0.7424137931297694, - "action": "NOTHING" - }, - { - "x": 62.200841821952395, - "y": -7552.617810034783, - "rotation": 0.7389231346257807, - "action": "NOTHING" - }, - { - "x": 64.94418092857113, - "y": -7555.5030943355105, - "rotation": 0.7354324761217921, - "action": "NOTHING" - }, - { - "x": 67.67413607741166, - "y": -7558.40004993961, - "rotation": 0.7319418176178034, - "action": "NOTHING" - }, - { - "x": 70.39073489801143, - "y": -7561.308699517593, - "rotation": 0.7284511591138148, - "action": "NOTHING" - }, - { - "x": 73.0940046195695, - "y": -7564.229066004497, - "rotation": 0.7249605006098261, - "action": "NOTHING" - }, - { - "x": 75.78397207208148, - "y": -7567.161172599071, - "rotation": 0.7214698421058374, - "action": "NOTHING" - }, - { - "x": 78.46066368747142, - "y": -7570.105042762953, - "rotation": 0.7179791836018488, - "action": "NOTHING" - }, - { - "x": 81.12410550072073, - "y": -7573.060700219867, - "rotation": 0.7144885250978601, - "action": "NOTHING" - }, - { - "x": 83.77432315099392, - "y": -7576.028168954804, - "rotation": 0.7109978665938714, - "action": "NOTHING" - }, - { - "x": 86.41134188276145, - "y": -7579.00747321322, - "rotation": 0.7075072080898828, - "action": "CARVE_LEFT" - }, - { - "x": 88.6030178856054, - "y": -7582.398770334777, - "rotation": 0.6534020012780586, - "action": "CARVE_LEFT" - }, - { - "x": 90.61334577674948, - "y": -7585.958344987749, - "rotation": 0.5992967944662344, - "action": "CARVE_LEFT" - }, - { - "x": 92.44254503131239, - "y": -7589.6867164900195, - "rotation": 0.5451915876544102, - "action": "CARVE_LEFT" - }, - { - "x": 94.09076206989529, - "y": -7593.584470212963, - "rotation": 0.491086380842586, - "action": "CARVE_LEFT" - }, - { - "x": 95.55807047240371, - "y": -7597.652257386962, - "rotation": 0.43698117403076175, - "action": "CARVE_LEFT" - }, - { - "x": 96.84447119128231, - "y": -7601.890794907457, - "rotation": 0.3828759672189375, - "action": "CARVE_LEFT" - }, - { - "x": 97.94989276416383, - "y": -7606.300865141529, - "rotation": 0.3287707604071133, - "action": "CARVE_LEFT" - }, - { - "x": 98.87419152593407, - "y": -7610.883315735019, - "rotation": 0.27466555359528905, - "action": "CARVE_LEFT" - }, - { - "x": 99.61715182021405, - "y": -7615.639059420176, - "rotation": 0.22056034678346484, - "action": "CARVE_LEFT" - }, - { - "x": 100.17848621026134, - "y": -7620.569073823838, - "rotation": 0.16645513997164063, - "action": "CARVE_LEFT" - }, - { - "x": 100.55783568929171, - "y": -7625.674401276141, - "rotation": 0.11234993315981642, - "action": "CARVE_LEFT" - }, - { - "x": 100.75476989022283, - "y": -7630.9561486197545, - "rotation": 0.05824472634799221, - "action": "CARVE_LEFT" - }, - { - "x": 100.76878729484152, - "y": -7636.415487019644, - "rotation": 0.004139519536167993, - "action": "CARVE_LEFT" - }, - { - "x": 100.59935674900387, - "y": -7641.738517272364, - "rotation": 6.23321961990393, - "action": "CARVE_LEFT" - }, - { - "x": 100.24601748880029, - "y": -7646.8981145502285, - "rotation": 6.179114413092106, - "action": "CARVE_LEFT" - }, - { - "x": 99.70838292035687, - "y": -7651.893182486296, - "rotation": 6.125009206280281, - "action": "CARVE_LEFT" - }, - { - "x": 98.98614040227307, - "y": -7656.722694812637, - "rotation": 6.070903999468457, - "action": "CARVE_LEFT" - }, - { - "x": 98.07905102865759, - "y": -7661.385695155873, - "rotation": 6.016798792656632, - "action": "CARVE_LEFT" - }, - { - "x": 96.98694941276104, - "y": -7665.881296833261, - "rotation": 5.962693585844808, - "action": "CARVE_LEFT" - }, - { - "x": 95.70974347120362, - "y": -7670.208682649355, - "rotation": 5.908588379032984, - "action": "CARVE_LEFT" - }, - { - "x": 94.24741420879657, - "y": -7674.367104693211, - "rotation": 5.854483172221159, - "action": "CARVE_LEFT" - }, - { - "x": 92.60001550395535, - "y": -7678.355884136156, - "rotation": 5.800377965409335, - "action": "CARVE_LEFT" - }, - { - "x": 90.7676738947035, - "y": -7682.174411030107, - "rotation": 5.74627275859751, - "action": "CARVE_LEFT" - }, - { - "x": 88.75058836526526, - "y": -7685.822144106444, - "rotation": 5.692167551785686, - "action": "CARVE_LEFT" - }, - { - "x": 86.54903013324544, - "y": -7689.298610575437, - "rotation": 5.638062344973862, - "action": "CARVE_LEFT" - }, - { - "x": 84.16334243739526, - "y": -7692.603405926219, - "rotation": 5.583957138162037, - "action": "CARVE_LEFT" - }, - { - "x": 81.59394032596222, - "y": -7695.736193727313, - "rotation": 5.529851931350213, - "action": "CARVE_LEFT" - }, - { - "x": 78.84131044562275, - "y": -7698.696705427699, - "rotation": 5.475746724538388, - "action": "CARVE_LEFT" - }, - { - "x": 75.90601083099594, - "y": -7701.4847401584375, - "rotation": 5.421641517726564, - "action": "CARVE_LEFT" - }, - { - "x": 72.78867069473692, - "y": -7704.100164534822, - "rotation": 5.36753631091474, - "action": "CARVE_LEFT" - }, - { - "x": 69.4899902182083, - "y": -7706.542912459093, - "rotation": 5.313431104102915, - "action": "CARVE_LEFT" - }, - { - "x": 66.01074034272816, - "y": -7708.812984923674, - "rotation": 5.259325897291091, - "action": "CARVE_LEFT" - }, - { - "x": 62.351762561392995, - "y": -7710.9104498149645, - "rotation": 5.205220690479266, - "action": "CARVE_LEFT" - }, - { - "x": 58.51396871147428, - "y": -7712.835441717662, - "rotation": 5.151115483667442, - "action": "CARVE_LEFT" - }, - { - "x": 54.49834076738689, - "y": -7714.588161719624, - "rotation": 5.097010276855618, - "action": "CARVE_LEFT" - }, - { - "x": 50.30593063422812, - "y": -7716.168877217261, - "rotation": 5.042905070043793, - "action": "CARVE_LEFT" - }, - { - "x": 45.937859941885556, - "y": -7717.577921721477, - "rotation": 4.988799863231969, - "action": "CARVE_LEFT" - }, - { - "x": 41.39531983971249, - "y": -7718.815694664127, - "rotation": 4.934694656420144, - "action": "CARVE_LEFT" - }, - { - "x": 36.67957079176924, - "y": -7719.882661205014, - "rotation": 4.88058944960832, - "action": "CARVE_LEFT" - }, - { - "x": 31.79194237262896, - "y": -7720.77935203942, - "rotation": 4.826484242796496, - "action": "CARVE_LEFT" - }, - { - "x": 26.73383306374643, - "y": -7721.506363206156, - "rotation": 4.772379035984671, - "action": "CARVE_LEFT" - }, - { - "x": 21.506710050388307, - "y": -7722.064355896147, - "rotation": 4.718273829172847, - "action": "CARVE_LEFT" - }, - { - "x": 16.272153758828473, - "y": -7722.602890494045, - "rotation": 4.71238898038469, - "action": "NOTHING" - }, - { - "x": 10.481621791308564, - "y": -7722.614831704899, - "rotation": 4.715879638888678, - "action": "NOTHING" - }, - { - "x": 4.716596777522969, - "y": -7722.638662000095, - "rotation": 4.719370297392667, - "action": "CARVE_RIGHT" - }, - { - "x": -0.2815012915964221, - "y": -7723.360930507193, - "rotation": 4.773475504204491, - "action": "CARVE_RIGHT" - }, - { - "x": -5.090631629700874, - "y": -7724.247238834005, - "rotation": 4.827580711016315, - "action": "CARVE_RIGHT" - }, - { - "x": -9.712174287613799, - "y": -7725.297056535689, - "rotation": 4.88168591782814, - "action": "CARVE_RIGHT" - }, - { - "x": -14.147432878413522, - "y": -7726.509922298861, - "rotation": 4.935791124639964, - "action": "CARVE_RIGHT" - }, - { - "x": -18.397634800524237, - "y": -7727.885443738641, - "rotation": 4.989896331451789, - "action": "CARVE_RIGHT" - }, - { - "x": -22.46393146019532, - "y": -7729.423297196263, - "rotation": 5.044001538263613, - "action": "CARVE_RIGHT" - }, - { - "x": -26.347398493370598, - "y": -7731.123227537245, - "rotation": 5.098106745075437, - "action": "CARVE_RIGHT" - }, - { - "x": -30.04903598694922, - "y": -7732.98504795011, - "rotation": 5.152211951887262, - "action": "CARVE_RIGHT" - }, - { - "x": -33.56976869943969, - "y": -7735.008639745662, - "rotation": 5.206317158699086, - "action": "CARVE_RIGHT" - }, - { - "x": -36.91044628100869, - "y": -7737.193952156813, - "rotation": 5.260422365510911, - "action": "CARVE_RIGHT" - }, - { - "x": -40.07184349292626, - "y": -7739.541002138967, - "rotation": 5.314527572322735, - "action": "CARVE_RIGHT" - }, - { - "x": -43.05466042640899, - "y": -7742.049874170946, - "rotation": 5.368632779134559, - "action": "CARVE_RIGHT" - }, - { - "x": -45.859522720862664, - "y": -7744.72072005647, - "rotation": 5.422737985946384, - "action": "CARVE_RIGHT" - }, - { - "x": -48.48698178152618, - "y": -7747.553758726177, - "rotation": 5.476843192758208, - "action": "CARVE_RIGHT" - }, - { - "x": -50.937514996518075, - "y": -7750.549276040198, - "rotation": 5.530948399570033, - "action": "CARVE_RIGHT" - }, - { - "x": -53.211525953287364, - "y": -7753.707624591266, - "rotation": 5.585053606381857, - "action": "CARVE_RIGHT" - }, - { - "x": -55.30934465447027, - "y": -7757.029223508375, - "rotation": 5.639158813193681, - "action": "CARVE_RIGHT" - }, - { - "x": -57.23122773315434, - "y": -7760.514558260975, - "rotation": 5.693264020005506, - "action": "CARVE_RIGHT" - }, - { - "x": -58.97735866755158, - "y": -7764.164180463706, - "rotation": 5.74736922681733, - "action": "CARVE_RIGHT" - }, - { - "x": -60.5478479950821, - "y": -7767.978707681675, - "rotation": 5.801474433629155, - "action": "CARVE_RIGHT" - }, - { - "x": -61.94273352586992, - "y": -7771.958823236266, - "rotation": 5.855579640440979, - "action": "CARVE_RIGHT" - }, - { - "x": -63.16198055565236, - "y": -7776.105276011486, - "rotation": 5.909684847252803, - "action": "CARVE_RIGHT" - }, - { - "x": -64.20548207810468, - "y": -7780.418880260847, - "rotation": 5.963790054064628, - "action": "CARVE_RIGHT" - }, - { - "x": -65.07305899658142, - "y": -7784.900515414772, - "rotation": 6.017895260876452, - "action": "CARVE_RIGHT" - }, - { - "x": -65.76446033527607, - "y": -7789.551125888544, - "rotation": 6.072000467688277, - "action": "CARVE_RIGHT" - }, - { - "x": -66.2793634498005, - "y": -7794.371720890779, - "rotation": 6.126105674500101, - "action": "CARVE_RIGHT" - }, - { - "x": -66.61737423718579, - "y": -7799.363374232424, - "rotation": 6.180210881311925, - "action": "CARVE_RIGHT" - }, - { - "x": -66.77802734530586, - "y": -7804.527224136284, - "rotation": 6.23431608812375, - "action": "CARVE_RIGHT" - }, - { - "x": -66.7607868353256, - "y": -7809.832405756746, - "rotation": 0.005235987755987992, - "action": "CARVE_RIGHT" - }, - { - "x": -66.56510796746505, - "y": -7814.980166823012, - "rotation": 0.05934119456781221, - "action": "CARVE_RIGHT" - }, - { - "x": -66.19052042649943, - "y": -7819.969331364363, - "rotation": 0.11344640137963642, - "action": "CARVE_RIGHT" - }, - { - "x": -65.63662810348332, - "y": -7824.798793748685, - "rotation": 0.16755160819146064, - "action": "CARVE_RIGHT" - }, - { - "x": -64.90310887807503, - "y": -7829.467518477333, - "rotation": 0.22165681500328485, - "action": "CARVE_RIGHT" - }, - { - "x": -63.98971440145963, - "y": -7833.974539980557, - "rotation": 0.27576202181510906, - "action": "CARVE_RIGHT" - }, - { - "x": -62.89626987986891, - "y": -7838.318962413489, - "rotation": 0.3298672286269333, - "action": "CARVE_RIGHT" - }, - { - "x": -61.62267385869691, - "y": -7842.49995945269, - "rotation": 0.38397243543875753, - "action": "CARVE_RIGHT" - }, - { - "x": -60.16889800720928, - "y": -7846.516774093255, - "rotation": 0.43807764225058177, - "action": "CARVE_RIGHT" - }, - { - "x": -58.53498690384494, - "y": -7850.368718446472, - "rotation": 0.492182849062406, - "action": "CARVE_RIGHT" - }, - { - "x": -56.72105782210855, - "y": -7854.055173538038, - "rotation": 0.5462880558742302, - "action": "CARVE_RIGHT" - }, - { - "x": -54.72730051705213, - "y": -7857.575589106828, - "rotation": 0.6003932626860544, - "action": "CARVE_RIGHT" - }, - { - "x": -52.55397701234432, - "y": -7860.929483404217, - "rotation": 0.6544984694978786, - "action": "CARVE_RIGHT" - }, - { - "x": -50.20142138792575, - "y": -7864.116442993946, - "rotation": 0.7086036763097028, - "action": "CARVE_RIGHT" - }, - { - "x": -47.6700395682489, - "y": -7867.136122552549, - "rotation": 0.762708883121527, - "action": "CARVE_RIGHT" - }, - { - "x": -44.96030911110102, - "y": -7869.988244670313, - "rotation": 0.8168140899333511, - "action": "CARVE_RIGHT" - }, - { - "x": -42.07277899700842, - "y": -7872.6725996527975, - "rotation": 0.8709192967451753, - "action": "CARVE_RIGHT" - }, - { - "x": -39.00806941922076, - "y": -7875.189045322889, - "rotation": 0.9250245035569995, - "action": "CARVE_RIGHT" - }, - { - "x": -35.766871574273644, - "y": -7877.537506823403, - "rotation": 0.9791297103688237, - "action": "CARVE_RIGHT" - }, - { - "x": -32.349947453128124, - "y": -7879.71797642023, - "rotation": 1.0332349171806479, - "action": "CARVE_RIGHT" - }, - { - "x": -28.75812963288553, - "y": -7881.7305133060145, - "rotation": 1.087340123992472, - "action": "CARVE_RIGHT" - }, - { - "x": -24.992321069076077, - "y": -7883.575243404381, - "rotation": 1.1414453308042962, - "action": "CARVE_RIGHT" - }, - { - "x": -21.053494888519786, - "y": -7885.25235917469, - "rotation": 1.1955505376161204, - "action": "CARVE_RIGHT" - }, - { - "x": -16.942694182758196, - "y": -7886.76211941734, - "rotation": 1.2496557444279446, - "action": "CARVE_RIGHT" - }, - { - "x": -12.661031802055318, - "y": -7888.104849079591, - "rotation": 1.3037609512397688, - "action": "CARVE_RIGHT" - }, - { - "x": -8.209690149966391, - "y": -7889.280939061934, - "rotation": 1.357866158051593, - "action": "CARVE_RIGHT" - }, - { - "x": -3.589920978472879, - "y": -7890.290846024983, - "rotation": 1.4119713648634171, - "action": "CARVE_RIGHT" - }, - { - "x": 1.1969548163177626, - "y": -7891.135092196903, - "rotation": 1.4660765716752413, - "action": "NOTHING" - }, - { - "x": 6.492823383020515, - "y": -7891.497887047004, - "rotation": 1.4625859131712526, - "action": "NOTHING" - }, - { - "x": 11.765927652891188, - "y": -7891.871667253977, - "rotation": 1.459095254667264, - "action": "NOTHING" - }, - { - "x": 17.016384996563175, - "y": -7892.256393011907, - "rotation": 1.4556045961632753, - "action": "NOTHING" - }, - { - "x": 22.244312137528688, - "y": -7892.652024962567, - "rotation": 1.4521139376592866, - "action": "NOTHING" - }, - { - "x": 27.44982515392529, - "y": -7893.058524194102, - "rotation": 1.448623279155298, - "action": "NOTHING" - }, - { - "x": 32.63303948031772, - "y": -7893.475852239705, - "rotation": 1.4451326206513093, - "action": "NOTHING" - }, - { - "x": 37.794069909475, - "y": -7893.903971076309, - "rotation": 1.4416419621473207, - "action": "NOTHING" - }, - { - "x": 42.93303059414282, - "y": -7894.342843123273, - "rotation": 1.438151303643332, - "action": "NOTHING" - }, - { - "x": 48.05003504881127, - "y": -7894.79243124108, - "rotation": 1.4346606451393433, - "action": "CARVE_LEFT" - }, - { - "x": 52.473484858279946, - "y": -7895.874630297804, - "rotation": 1.3805554383275191, - "action": "CARVE_LEFT" - }, - { - "x": 56.71633221938584, - "y": -7897.115228941402, - "rotation": 1.326450231515695, - "action": "CARVE_LEFT" - }, - { - "x": 60.77975282803907, - "y": -7898.513881312668, - "rotation": 1.2723450247038708, - "action": "CARVE_LEFT" - }, - { - "x": 64.6648465467196, - "y": -7900.070310134489, - "rotation": 1.2182398178920466, - "action": "CARVE_LEFT" - }, - { - "x": 68.37263762589829, - "y": -7901.784306510421, - "rotation": 1.1641346110802224, - "action": "CARVE_LEFT" - }, - { - "x": 71.9040749248507, - "y": -7903.655729723819, - "rotation": 1.1100294042683982, - "action": "CARVE_LEFT" - }, - { - "x": 75.26003213186533, - "y": -7905.6845070375175, - "rotation": 1.055924197456574, - "action": "CARVE_LEFT" - }, - { - "x": 78.44130798384778, - "y": -7907.870633494068, - "rotation": 1.0018189906447499, - "action": "CARVE_LEFT" - }, - { - "x": 81.4486264853225, - "y": -7910.214171716519, - "rotation": 0.9477137838329257, - "action": "CARVE_LEFT" - }, - { - "x": 84.28263712683373, - "y": -7912.71525170975, - "rotation": 0.8936085770211015, - "action": "CARVE_LEFT" - }, - { - "x": 86.94391510274713, - "y": -7915.374070662355, - "rotation": 0.8395033702092773, - "action": "CARVE_LEFT" - }, - { - "x": 89.43296152845372, - "y": -7918.1908927490595, - "rotation": 0.7853981633974532, - "action": "CARVE_LEFT" - }, - { - "x": 91.75020365697782, - "y": -7921.166048933697, - "rotation": 0.731292956585629, - "action": "CARVE_LEFT" - }, - { - "x": 93.89599509499034, - "y": -7924.299936772719, - "rotation": 0.6771877497738048, - "action": "CARVE_LEFT" - }, - { - "x": 95.87061601822914, - "y": -7927.593020219245, - "rotation": 0.6230825429619806, - "action": "CARVE_LEFT" - }, - { - "x": 97.67427338632803, - "y": -7931.04582942766, - "rotation": 0.5689773361501564, - "action": "CARVE_LEFT" - }, - { - "x": 99.30710115705587, - "y": -7934.658960558742, - "rotation": 0.5148721293383323, - "action": "CARVE_LEFT" - }, - { - "x": 100.76916049996743, - "y": -7938.433075585338, - "rotation": 0.460766922526508, - "action": "CARVE_LEFT" - }, - { - "x": 102.0604400094675, - "y": -7942.368902098558, - "rotation": 0.4066617157146838, - "action": "CARVE_LEFT" - }, - { - "x": 103.18085591728979, - "y": -7946.467233114519, - "rotation": 0.35255650890285956, - "action": "CARVE_LEFT" - }, - { - "x": 104.13025230439222, - "y": -7950.7289268816185, - "rotation": 0.2984513020910353, - "action": "CARVE_LEFT" - }, - { - "x": 104.90840131227006, - "y": -7955.154906688331, - "rotation": 0.2443460952792111, - "action": "CARVE_LEFT" - }, - { - "x": 105.5150033536886, - "y": -7959.746160671544, - "rotation": 0.1902408884673869, - "action": "CARVE_LEFT" - }, - { - "x": 105.94968732283667, - "y": -7964.50374162542, - "rotation": 0.1361356816555627, - "action": "CARVE_LEFT" - }, - { - "x": 106.21201080490269, - "y": -7969.428766810781, - "rotation": 0.08203047484373849, - "action": "CARVE_LEFT" - }, - { - "x": 106.30146028507478, - "y": -7974.522417765024, - "rotation": 0.027925268031914273, - "action": "CARVE_LEFT" - }, - { - "x": 106.21746269696634, - "y": -7979.629678523471, - "rotation": 6.2570053683996765, - "action": "CARVE_LEFT" - }, - { - "x": 105.9594816163615, - "y": -7984.583663042332, - "rotation": 6.202900161587852, - "action": "CARVE_LEFT" - }, - { - "x": 105.52705502673719, - "y": -7989.383202992107, - "rotation": 6.148794954776028, - "action": "CARVE_LEFT" - }, - { - "x": 104.9197951010212, - "y": -7994.0272003664095, - "rotation": 6.094689747964203, - "action": "CARVE_LEFT" - }, - { - "x": 104.13738798395046, - "y": -7998.514627276867, - "rotation": 6.040584541152379, - "action": "CARVE_LEFT" - }, - { - "x": 103.17959357502787, - "y": -8002.844525748576, - "rotation": 5.9864793343405545, - "action": "CARVE_LEFT" - }, - { - "x": 102.04624531207601, - "y": -8007.016007516121, - "rotation": 5.93237412752873, - "action": "CARVE_LEFT" - }, - { - "x": 100.73724995538635, - "y": -8011.028253820151, - "rotation": 5.878268920716906, - "action": "CARVE_LEFT" - }, - { - "x": 99.25258737246222, - "y": -8014.880515204516, - "rotation": 5.824163713905081, - "action": "CARVE_LEFT" - }, - { - "x": 97.592310323354, - "y": -8018.572111313959, - "rotation": 5.770058507093257, - "action": "CARVE_LEFT" - }, - { - "x": 95.7565442465851, - "y": -8022.102430692361, - "rotation": 5.7159533002814324, - "action": "CARVE_LEFT" - }, - { - "x": 93.74548704566692, - "y": -8025.4709305815395, - "rotation": 5.661848093469608, - "action": "CARVE_LEFT" - }, - { - "x": 91.55940887620154, - "y": -8028.677136720601, - "rotation": 5.607742886657784, - "action": "CARVE_LEFT" - }, - { - "x": 89.19865193357032, - "y": -8031.7206431458435, - "rotation": 5.553637679845959, - "action": "CARVE_LEFT" - }, - { - "x": 86.66363024120695, - "y": -8034.601111991204, - "rotation": 5.499532473034135, - "action": "CARVE_LEFT" - }, - { - "x": 83.95482943945352, - "y": -8037.318273289259, - "rotation": 5.44542726622231, - "action": "CARVE_LEFT" - }, - { - "x": 81.07280657499797, - "y": -8039.871924772768, - "rotation": 5.391322059410486, - "action": "CARVE_LEFT" - }, - { - "x": 78.01818989089125, - "y": -8042.26193167676, - "rotation": 5.337216852598662, - "action": "CARVE_LEFT" - }, - { - "x": 74.79167861714298, - "y": -8044.488226541168, - "rotation": 5.283111645786837, - "action": "CARVE_LEFT" - }, - { - "x": 71.39404276189376, - "y": -8046.550809014001, - "rotation": 5.229006438975013, - "action": "CARVE_LEFT" - }, - { - "x": 67.82612290316284, - "y": -8048.449745655058, - "rotation": 5.174901232163188, - "action": "CARVE_LEFT" - }, - { - "x": 64.0888299811695, - "y": -8050.185169740179, - "rotation": 5.120796025351364, - "action": "CARVE_LEFT" - }, - { - "x": 60.183145091226585, - "y": -8051.757281066037, - "rotation": 5.06669081853954, - "action": "CARVE_LEFT" - }, - { - "x": 56.1101192772049, - "y": -8053.166345755462, - "rotation": 5.012585611727715, - "action": "CARVE_LEFT" - }, - { - "x": 51.87087332556671, - "y": -8054.412696063305, - "rotation": 4.958480404915891, - "action": "NOTHING" - }, - { "x": 47.1803161005498, "y": -8055.23312475744, "rotation": 4.961971063419879, "action": "NOTHING" }, - { - "x": 42.50937802731728, - "y": -8056.063742884272, - "rotation": 4.965461721923868, - "action": "NOTHING" - }, - { - "x": 37.85796279437428, - "y": -8056.904525481344, - "rotation": 4.968952380427856, - "action": "NOTHING" - }, - { - "x": 33.22597467988779, - "y": -8057.7554479909095, - "rotation": 4.972443038931845, - "action": "NOTHING" - }, - { - "x": 28.61331855005113, - "y": -8058.61648625873, - "rotation": 4.975933697435833, - "action": "NOTHING" - }, - { - "x": 24.019899857452714, - "y": -8059.487616532873, - "rotation": 4.9794243559398215, - "action": "NOTHING" - }, - { - "x": 19.445624639449168, - "y": -8060.368815462516, - "rotation": 4.98291501444381, - "action": "NOTHING" - }, - { - "x": 14.890399516542743, - "y": -8061.260060096752, - "rotation": 4.986405672947798, - "action": "NOTHING" - }, - { - "x": 10.354131690763065, - "y": -8062.1613278834, - "rotation": 4.989896331451787, - "action": "NOTHING" - }, - { - "x": 5.836728944053173, - "y": -8063.072596667819, - "rotation": 4.993386989955775, - "action": "NOTHING" - }, - { - "x": 1.3380996366598383, - "y": -8063.993844691721, - "rotation": 4.996877648459764, - "action": "NOTHING" - }, - { - "x": -3.141847294471841, - "y": -8064.9250505919945, - "rotation": 5.000368306963752, - "action": "NOTHING" - }, - { - "x": -7.6032023372995665, - "y": -8065.866193399524, - "rotation": 5.003858965467741, - "action": "NOTHING" - }, - { - "x": -12.046055406280729, - "y": -8066.817252538017, - "rotation": 5.007349623971729, - "action": "NOTHING" - }, - { - "x": -16.470495843965047, - "y": -8067.7782078228365, - "rotation": 5.0108402824757174, - "action": "CARVE_RIGHT" - }, - { - "x": -20.27779934747066, - "y": -8069.303472677526, - "rotation": 5.064945489287542, - "action": "CARVE_RIGHT" - }, - { - "x": -23.91141861553197, - "y": -8070.983181734476, - "rotation": 5.119050696099366, - "action": "CARVE_RIGHT" - }, - { - "x": -27.37228696295135, - "y": -8072.8172081706225, - "rotation": 5.173155902911191, - "action": "CARVE_RIGHT" - }, - { - "x": -30.661262584426677, - "y": -8074.805493096369, - "rotation": 5.227261109723015, - "action": "CARVE_RIGHT" - }, - { - "x": -33.77912877400691, - "y": -8076.948045355953, - "rotation": 5.2813663165348395, - "action": "CARVE_RIGHT" - }, - { - "x": -36.72659414394557, - "y": -8079.244941328366, - "rotation": 5.335471523346664, - "action": "CARVE_RIGHT" - }, - { - "x": -39.504292842953845, - "y": -8081.696324728821, - "rotation": 5.389576730158488, - "action": "CARVE_RIGHT" - }, - { - "x": -42.112784773854806, - "y": -8084.302406410768, - "rotation": 5.443681936970313, - "action": "CARVE_RIGHT" - }, - { - "x": -44.552555810640335, - "y": -8087.063464168446, - "rotation": 5.497787143782137, - "action": "CARVE_RIGHT" - }, - { - "x": -46.8240180149324, - "y": -8089.979842539996, - "rotation": 5.5518923505939615, - "action": "CARVE_RIGHT" - }, - { - "x": -48.92750985185015, - "y": -8093.051952611096, - "rotation": 5.605997557405786, - "action": "CARVE_RIGHT" - }, - { - "x": -50.86329640528448, - "y": -8096.280271819152, - "rotation": 5.66010276421761, - "action": "CARVE_RIGHT" - }, - { - "x": -52.63156959258159, - "y": -8099.665343758025, - "rotation": 5.714207971029435, - "action": "CARVE_RIGHT" - }, - { - "x": -54.23244837863709, - "y": -8103.207777983289, - "rotation": 5.768313177841259, - "action": "CARVE_RIGHT" - }, - { - "x": -55.665978989402205, - "y": -8106.908249818036, - "rotation": 5.8224183846530835, - "action": "CARVE_RIGHT" - }, - { - "x": -56.9321351248037, - "y": -8110.76750015921, - "rotation": 5.876523591464908, - "action": "CARVE_RIGHT" - }, - { - "x": -58.030818171078934, - "y": -8114.786335284474, - "rotation": 5.930628798276732, - "action": "CARVE_RIGHT" - }, - { - "x": -58.96185741252773, - "y": -8118.965626659616, - "rotation": 5.984734005088557, - "action": "NOTHING" - }, - { - "x": -59.98545601989404, - "y": -8123.06518058239, - "rotation": 5.988224663592545, - "action": "NOTHING" - }, - { - "x": -60.99814327524213, - "y": -8127.180836815314, - "rotation": 5.991715322096534, - "action": "NOTHING" - }, - { - "x": -61.999897009126826, - "y": -8131.312649354064, - "rotation": 5.995205980600522, - "action": "NOTHING" - }, - { - "x": -62.99069479672825, - "y": -8135.460672357144, - "rotation": 5.9986966391045105, - "action": "NOTHING" - }, - { - "x": -63.97051395858997, - "y": -8139.624960145365, - "rotation": 6.002187297608499, - "action": "NOTHING" - }, - { - "x": -64.93933156135515, - "y": -8143.805567201322, - "rotation": 6.005677956112487, - "action": "NOTHING" - }, - { - "x": -65.89712441850067, - "y": -8148.002548168881, - "rotation": 6.009168614616476, - "action": "NOTHING" - }, - { - "x": -66.84386909106927, - "y": -8152.215957852653, - "rotation": 6.012659273120464, - "action": "NOTHING" - }, - { - "x": -67.77954188839965, - "y": -8156.4458512174915, - "rotation": 6.016149931624453, - "action": "NOTHING" - }, - { - "x": -68.70411886885465, - "y": -8160.692283387964, - "rotation": 6.019640590128441, - "action": "NOTHING" - }, - { - "x": -69.61757584054737, - "y": -8164.955309647853, - "rotation": 6.0231312486324295, - "action": "NOTHING" - }, - { - "x": -70.5198883620654, - "y": -8169.234985439633, - "rotation": 6.026621907136418, - "action": "NOTHING" - }, - { - "x": -71.41103174319295, - "y": -8173.531366363971, - "rotation": 6.030112565640406, - "action": "NOTHING" - }, - { - "x": -72.29098104563113, - "y": -8177.844508179211, - "rotation": 6.033603224144395, - "action": "NOTHING" - }, - { - "x": -73.15971108371622, - "y": -8182.174466800871, - "rotation": 6.037093882648383, - "action": "NOTHING" - }, - { - "x": -74.01719642513594, - "y": -8186.521298301141, - "rotation": 6.040584541152372, - "action": "NOTHING" - }, - { - "x": -74.86341139164384, - "y": -8190.8850589083695, - "rotation": 6.04407519965636, - "action": "NOTHING" - }, - { - "x": -75.69833005977168, - "y": -8195.265805006571, - "rotation": 6.047565858160349, - "action": "NOTHING" - }, - { - "x": -76.52192626153989, - "y": -8199.663593134921, - "rotation": 6.051056516664337, - "action": "NOTHING" - }, - { - "x": -77.3341735851661, - "y": -8204.078479987258, - "rotation": 6.0545471751683255, - "action": "NOTHING" - }, - { - "x": -78.13504537577172, - "y": -8208.510522411583, - "rotation": 6.058037833672314, - "action": "NOTHING" - }, - { - "x": -78.92451473608659, - "y": -8212.959777409567, - "rotation": 6.061528492176302, - "action": "NOTHING" - }, - { - "x": -79.70255452715173, - "y": -8217.426302136053, - "rotation": 6.065019150680291, - "action": "NOTHING" - }, - { - "x": -80.46913736902013, - "y": -8221.910153898561, - "rotation": 6.068509809184279, - "action": "CARVE_RIGHT" - }, - { - "x": -80.9858469263033, - "y": -8226.63209711528, - "rotation": 6.122615015996104, - "action": "CARVE_RIGHT" - }, - { - "x": -81.32893770123032, - "y": -8231.522234298893, - "rotation": 6.176720222807928, - "action": "CARVE_RIGHT" - }, - { - "x": -81.49793469625763, - "y": -8236.581712236439, - "rotation": 6.2308254296197525, - "action": "CARVE_RIGHT" - }, - { - "x": -81.49229195740304, - "y": -8241.80124567695, - "rotation": 0.0017453292519906682, - "action": "CARVE_RIGHT" - }, - { - "x": -81.31144579967096, - "y": -8246.86661259491, - "rotation": 0.05585053606381488, - "action": "CARVE_RIGHT" - }, - { - "x": -80.95490702335661, - "y": -8251.776618964788, - "rotation": 0.1099557428756391, - "action": "CARVE_RIGHT" - }, - { - "x": -80.42226069559457, - "y": -8256.53014115699, - "rotation": 0.16406094968746332, - "action": "CARVE_RIGHT" - }, - { - "x": -79.71316593250819, - "y": -8261.126125732551, - "rotation": 0.21816615649928753, - "action": "CARVE_RIGHT" - }, - { - "x": -78.82735568195791, - "y": -8265.563589238394, - "rotation": 0.27227136331111174, - "action": "CARVE_RIGHT" - }, - { - "x": -77.76463650688723, - "y": -8269.841618003162, - "rotation": 0.32637657012293597, - "action": "CARVE_RIGHT" - }, - { - "x": -76.52488836926453, - "y": -8273.959367933594, - "rotation": 0.3804817769347602, - "action": "CARVE_RIGHT" - }, - { - "x": -75.10806441461928, - "y": -8277.91606431147, - "rotation": 0.43458698374658444, - "action": "CARVE_RIGHT" - }, - { - "x": -73.51419075717105, - "y": -8281.71100159111, - "rotation": 0.4886921905584087, - "action": "CARVE_RIGHT" - }, - { - "x": -71.74336626554972, - "y": -8285.343543197418, - "rotation": 0.5427973973702329, - "action": "CARVE_RIGHT" - }, - { - "x": -69.79576234910536, - "y": -8288.813121324503, - "rotation": 0.5969026041820571, - "action": "CARVE_RIGHT" - }, - { - "x": -67.67162274480619, - "y": -8292.119236734829, - "rotation": 0.6510078109938813, - "action": "CARVE_RIGHT" - }, - { - "x": -65.37126330472317, - "y": -8295.261458558924, - "rotation": 0.7051130178057055, - "action": "CARVE_RIGHT" - }, - { - "x": -62.89507178409953, - "y": -8298.239424095646, - "rotation": 0.7592182246175296, - "action": "CARVE_RIGHT" - }, - { - "x": -60.24350763000373, - "y": -8301.052838612986, - "rotation": 0.8133234314293538, - "action": "CARVE_RIGHT" - }, - { - "x": -57.4171017705644, - "y": -8303.701475149423, - "rotation": 0.867428638241178, - "action": "NOTHING" - }, - { - "x": -54.29055633454487, - "y": -8306.070070176711, - "rotation": 0.8639379797371893, - "action": "NOTHING" - }, - { - "x": -51.17787578578179, - "y": -8308.449419931325, - "rotation": 0.8604473212332007, - "action": "NOTHING" - }, - { - "x": -48.079019929007146, - "y": -8310.83953844498, - "rotation": 0.856956662729212, - "action": "NOTHING" - }, - { - "x": -44.99394900411085, - "y": -8313.240440039564, - "rotation": 0.8534660042252233, - "action": "NOTHING" - }, - { - "x": -41.92262368491338, - "y": -8315.652139326257, - "rotation": 0.8499753457212347, - "action": "NOTHING" - }, - { - "x": -38.865005077941746, - "y": -8318.074651204633, - "rotation": 0.846484687217246, - "action": "NOTHING" - }, - { - "x": -35.82105472120869, - "y": -8320.507990861788, - "rotation": 0.8429940287132573, - "action": "NOTHING" - }, - { - "x": -32.79073458299522, - "y": -8322.952173771451, - "rotation": 0.8395033702092687, - "action": "NOTHING" - }, - { - "x": -29.77400706063638, - "y": -8325.40721569311, - "rotation": 0.83601271170528, - "action": "NOTHING" - }, - { - "x": -26.770834979310273, - "y": -8327.873132671139, - "rotation": 0.8325220532012914, - "action": "NOTHING" - }, - { - "x": -23.781181590830368, - "y": -8330.349941033914, - "rotation": 0.8290313946973027, - "action": "NOTHING" - }, - { - "x": -20.805010572441017, - "y": -8332.837657392954, - "rotation": 0.825540736193314, - "action": "NOTHING" - }, - { - "x": -17.842286025616218, - "y": -8335.336298642045, - "rotation": 0.8220500776893254, - "action": "NOTHING" - }, - { - "x": -14.892972474861619, - "y": -8337.845881956377, - "rotation": 0.8185594191853367, - "action": "NOTHING" - }, - { - "x": -11.957034866519715, - "y": -8340.366424791677, - "rotation": 0.815068760681348, - "action": "NOTHING" - }, - { - "x": -9.034438567578277, - "y": -8342.897944883352, - "rotation": 0.8115781021773594, - "action": "NOTHING" - }, - { - "x": -6.125149364481969, - "y": -8345.440460245629, - "rotation": 0.8080874436733707, - "action": "NOTHING" - }, - { - "x": -3.229133461947156, - "y": -8347.993989170696, - "rotation": 0.804596785169382, - "action": "NOTHING" - }, - { - "x": -0.3463574817799122, - "y": -8350.558550227854, - "rotation": 0.8011061266653934, - "action": "NOTHING" - }, - { - "x": 2.5232115383028115, - "y": -8353.134162262655, - "rotation": 0.7976154681614047, - "action": "NOTHING" - }, - { - "x": 5.379606145848843, - "y": -8355.720844396066, - "rotation": 0.794124809657416, - "action": "NOTHING" - }, - { - "x": 8.222858474843287, - "y": -8358.318616023613, - "rotation": 0.7906341511534274, - "action": "NOTHING" - }, - { - "x": 11.053000246877868, - "y": -8360.927496814538, - "rotation": 0.7871434926494387, - "action": "NOTHING" - }, - { - "x": 13.870062772317139, - "y": -8363.54750671096, - "rotation": 0.7836528341454501, - "action": "NOTHING" - }, - { - "x": 16.674076951461544, - "y": -8366.178665927035, - "rotation": 0.7801621756414614, - "action": "NOTHING" - }, - { - "x": 19.465073275707354, - "y": -8368.820994948117, - "rotation": 0.7766715171374727, - "action": "NOTHING" - }, - { - "x": 22.243081828703495, - "y": -8371.474514529922, - "rotation": 0.7731808586334841, - "action": "NOTHING" - }, - { - "x": 25.008132287505262, - "y": -8374.139245697701, - "rotation": 0.7696902001294954, - "action": "NOTHING" - }, - { - "x": 27.76025392372491, - "y": -8376.815209745404, - "rotation": 0.7661995416255067, - "action": "NOTHING" - }, - { - "x": 30.49947560467918, - "y": -8379.502428234857, - "rotation": 0.7627088831215181, - "action": "NOTHING" - }, - { - "x": 33.22582579453372, - "y": -8382.20092299493, - "rotation": 0.7592182246175294, - "action": "NOTHING" - }, - { - "x": 35.93933255544443, - "y": -8384.910716120723, - "rotation": 0.7557275661135407, - "action": "NOTHING" - }, - { - "x": 38.64002354869575, - "y": -8387.631829972735, - "rotation": 0.7522369076095521, - "action": "NOTHING" - }, - { - "x": 41.32792603583586, - "y": -8390.364287176057, - "rotation": 0.7487462491055634, - "action": "NOTHING" - }, - { - "x": 44.003066879808834, - "y": -8393.108110619545, - "rotation": 0.7452555906015748, - "action": "CARVE_LEFT" - }, - { - "x": 46.2357189699274, - "y": -8396.261220099605, - "rotation": 0.6911503837897506, - "action": "CARVE_LEFT" - }, - { - "x": 48.29371040756606, - "y": -8399.576350903513, - "rotation": 0.6370451769779264, - "action": "CARVE_LEFT" - }, - { - "x": 50.177281889250814, - "y": -8403.054002840756, - "rotation": 0.5829399701661022, - "action": "CARVE_LEFT" - }, - { - "x": 51.886601005590904, - "y": -8406.694741821593, - "rotation": 0.528834763354278, - "action": "CARVE_LEFT" - }, - { - "x": 53.42176245522419, - "y": -8410.49919966246, - "rotation": 0.4747295565424538, - "action": "CARVE_LEFT" - }, - { - "x": 54.78278825817502, - "y": -8414.468073891903, - "rotation": 0.42062434973062957, - "action": "CARVE_LEFT" - }, - { - "x": 55.9696279686261, - "y": -8418.602127557055, - "rotation": 0.36651914291880533, - "action": "CARVE_LEFT" - }, - { - "x": 56.982158887105946, - "y": -8422.902189030632, - "rotation": 0.3124139361069811, - "action": "CARVE_LEFT" - }, - { - "x": 57.82018627209343, - "y": -8427.369151818479, - "rotation": 0.25830872929515686, - "action": "CARVE_LEFT" - }, - { - "x": 58.48344355104099, - "y": -8432.00397436763, - "rotation": 0.20420352248333265, - "action": "CARVE_LEFT" - }, - { - "x": 58.97159253081803, - "y": -8436.80767987491, - "rotation": 0.15009831567150844, - "action": "CARVE_LEFT" - }, - { - "x": 59.284223607575974, - "y": -8441.781356096059, - "rotation": 0.09599310885968423, - "action": "CARVE_LEFT" - }, - { - "x": 59.420855976036655, - "y": -8446.926155155381, - "rotation": 0.04188790204786002, - "action": "CARVE_LEFT" - }, - { - "x": 59.38094030780537, - "y": -8452.169046498457, - "rotation": 6.270968002415622, - "action": "CARVE_LEFT" - }, - { - "x": 59.16393523561617, - "y": -8457.255763833886, - "rotation": 6.216862795603798, - "action": "NOTHING" - }, - { - "x": 58.935140469899984, - "y": -8462.340091960912, - "rotation": 6.220353454107786, - "action": "NOTHING" - }, - { - "x": 58.71870747718123, - "y": -8467.444421255423, - "rotation": 6.223844112611775, - "action": "NOTHING" - }, - { - "x": 58.514676252583804, - "y": -8472.568816595427, - "rotation": 6.227334771115763, - "action": "NOTHING" - }, - { - "x": 58.32308699392444, - "y": -8477.713342985353, - "rotation": 6.230825429619752, - "action": "NOTHING" - }, - { - "x": 58.14398010112015, - "y": -8482.878065555635, - "rotation": 6.23431608812374, - "action": "NOTHING" - }, - { - "x": 57.97739617559718, - "y": -8488.063049562297, - "rotation": 6.2378067466277285, - "action": "NOTHING" - }, - { - "x": 57.82337601970165, - "y": -8493.268360386544, - "rotation": 6.241297405131717, - "action": "NOTHING" - }, - { - "x": 57.681960636111796, - "y": -8498.49406353435, - "rotation": 6.244788063635705, - "action": "NOTHING" - }, - { - "x": 57.55319122725184, - "y": -8503.74022463605, - "rotation": 6.248278722139694, - "action": "NOTHING" - }, - { - "x": 57.43710919470741, - "y": -8509.006909445936, - "rotation": 6.251769380643682, - "action": "NOTHING" - }, - { - "x": 57.33375613864268, - "y": -8514.29418384184, - "rotation": 6.255260039147671, - "action": "NOTHING" - }, - { - "x": 57.243173857218956, - "y": -8519.602113824736, - "rotation": 6.258750697651659, - "action": "NOTHING" - }, - { - "x": 57.165404346015016, - "y": -8524.930765518338, - "rotation": 6.262241356155648, - "action": "NOTHING" - }, - { - "x": 57.10048979744894, - "y": -8530.280205168689, - "rotation": 6.265732014659636, - "action": "NOTHING" - }, - { - "x": 57.04847260020154, - "y": -8535.650499143763, - "rotation": 6.2692226731636245, - "action": "NOTHING" - }, - { - "x": 57.00939533864145, - "y": -8541.04171393307, - "rotation": 6.272713331667613, - "action": "NOTHING" - }, - { "x": 56.98330079225166, "y": -8546.45391614724, "rotation": 6.276203990171601, "action": "NOTHING" } - ] -} diff --git a/src/public/ghosts/wengen.json b/src/public/ghosts/wengen.json deleted file mode 100644 index 77c1fe2..0000000 --- a/src/public/ghosts/wengen.json +++ /dev/null @@ -1,18269 +0,0 @@ -{ - "date": "2024-04-09T19:35:23.960Z", - "eventId": "event1712691153233", - "trackName": "wengen", - "trackVersion": 4, - "trackStyle": "SG", - "skier": "Emilie Hugas", - "totalTime": 51801.5, - "timedSectors": [ - { "sectorNumber": 1, "time": 21221.099999904633 }, - { "sectorNumber": 2, "time": 35968.199999809265 }, - { "sectorNumber": 3, "time": 51800.89999985695 } - ], - "positions": [ - { "x": 0, "y": 0, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.021000000000000005, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.06295800000000001, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.125832084, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.20958041983200001, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.31416125899233605, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.43953293647435143, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.5856538706014027, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.7524825628602, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.9399775977344796, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.1480976425390108, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.376801447253933, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.626047844359425, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.8957957486707062, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -2.1860041571733646, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -2.496632148859018, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -2.8276388845613, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -3.1789836067921775, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -3.5506256395785933, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -3.9425243882994363, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -4.354639339522837, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -4.786930060843791, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -5.239356200722104, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -5.71187748832066, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -6.204453733344018, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -6.7170448258773305, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -7.249610736225576, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -7.8021115147531255, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -8.374507291723619, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -8.966758277140173, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -9.578824760585892, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -10.210667111064721, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -10.862245776842592, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -11.533521285288908, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -12.22445424271833, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -12.935005334232894, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -13.665135323564428, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -14.414805052917298, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -15.183975442811464, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -15.972607491925842, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -16.780662276941992, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -17.60810095238811, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -18.454884750483334, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -19.320974980982367, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -20.206333031020403, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -21.11092036495836, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -22.034698524228443, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -22.977629127179984, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -23.939673868925624, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -24.920794521187773, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -25.920952932145397, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -26.940111026281105, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -27.978230804228545, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -29.035274342620088, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -30.11120379393485, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -31.205981386346977, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -32.319569423574286, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -33.45193028472714, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -34.60302642415768, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -35.772820371309365, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -36.96127473056674, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -38.16835218110561, "rotation": 0, "action": "CARVE_RIGHT" }, - { - "x": 0.008472396034567982, - "y": -39.38532121791593, - "rotation": 0.011178660648990568, - "action": "CARVE_RIGHT" - }, - { - "x": 0.025786249440079935, - "y": -40.61165300112399, - "rotation": 0.02252157684574619, - "action": "CARVE_RIGHT" - }, - { - "x": 0.052310643966396723, - "y": -41.84681687156757, - "rotation": 0.034027015718118406, - "action": "CARVE_RIGHT" - }, - { - "x": 0.08841443366666873, - "y": -43.090280611217814, - "rotation": 0.04569322773784798, - "action": "CARVE_RIGHT" - }, - { - "x": 0.1344659913418355, - "y": -44.34151070325293, - "rotation": 0.05751844697048537, - "action": "CARVE_RIGHT" - }, - { - "x": 0.19083295767182726, - "y": -45.59997259165766, - "rotation": 0.06950089132684262, - "action": "CARVE_RIGHT" - }, - { - "x": 0.2578819911646575, - "y": -46.86513094022344, - "rotation": 0.08163876281594246, - "action": "CARVE_RIGHT" - }, - { - "x": 0.33597851905371523, - "y": -48.136449890824835, - "rotation": 0.09393024779943027, - "action": "CARVE_RIGHT" - }, - { - "x": 0.42548648927262184, - "y": -49.41339332084876, - "rotation": 0.10637351724741456, - "action": "CARVE_RIGHT" - }, - { - "x": 0.526768123636014, - "y": -50.69542509965387, - "rotation": 0.11896672699570136, - "action": "CARVE_RIGHT" - }, - { - "x": 0.6401836723535472, - "y": -51.982009343938486, - "rotation": 0.1317080180043879, - "action": "CARVE_RIGHT" - }, - { - "x": 0.7660911700032913, - "y": -53.27261067189657, - "rotation": 0.14459551661778083, - "action": "CARVE_RIGHT" - }, - { - "x": 0.904846193089501, - "y": -54.566694456042114, - "rotation": 0.15762733482560437, - "action": "CARVE_RIGHT" - }, - { - "x": 1.0568016193085064, - "y": -55.86372707458367, - "rotation": 0.17080157052546296, - "action": "CARVE_RIGHT" - }, - { - "x": 1.2223073886451623, - "y": -57.16317616123188, - "rotation": 0.184116307786524, - "action": "CARVE_RIGHT" - }, - { - "x": 1.4017102664209427, - "y": -58.464510853324015, - "rotation": 0.1975696171143851, - "action": "CARVE_RIGHT" - }, - { - "x": 1.5953536084133486, - "y": -59.76720203815096, - "rotation": 0.2111595557170911, - "action": "CARVE_RIGHT" - }, - { - "x": 1.8035771281648352, - "y": -61.070722597373425, - "rotation": 0.2248841677722654, - "action": "CARVE_RIGHT" - }, - { - "x": 2.0267166665979346, - "y": -62.37454764941542, - "rotation": 0.23874148469531994, - "action": "CARVE_RIGHT" - }, - { - "x": 2.265103964051685, - "y": -63.67815478972471, - "rotation": 0.2527295254087095, - "action": "CARVE_RIGHT" - }, - { - "x": 2.5190664348528395, - "y": -64.98102432879125, - "rotation": 0.26684629661219367, - "action": "CARVE_RIGHT" - }, - { - "x": 2.788926944533657, - "y": -66.28263952781629, - "rotation": 0.2810897930540718, - "action": "NOTHING" - }, - { - "x": 3.0877559348000583, - "y": -67.57161786049502, - "rotation": 0.2775991345500831, - "action": "NOTHING" - }, - { - "x": 3.385504260677014, - "y": -68.8758009042767, - "rotation": 0.27410847604609445, - "action": "NOTHING" - }, - { - "x": 3.6821071397326, - "y": -70.19526690136938, - "rotation": 0.2706178175421058, - "action": "NOTHING" - }, - { - "x": 3.977499651367058, - "y": -71.53009418539736, - "rotation": 0.2671271590381171, - "action": "NOTHING" - }, - { - "x": 4.271616737176595, - "y": -72.88036118113737, - "rotation": 0.26363650053412846, - "action": "NOTHING" - }, - { - "x": 4.564393201316283, - "y": -74.24614640425541, - "rotation": 0.2601458420301398, - "action": "NOTHING" - }, - { - "x": 4.855763710862056, - "y": -75.62752846104432, - "rotation": 0.25665518352615113, - "action": "NOTHING" - }, - { - "x": 5.145662796171812, - "y": -77.02458604816202, - "rotation": 0.25316452502216247, - "action": "NOTHING" - }, - { - "x": 5.434024851245614, - "y": -78.43739795237046, - "rotation": 0.2496738665181738, - "action": "NOTHING" - }, - { - "x": 5.720784134085004, - "y": -79.86604305027521, - "rotation": 0.24618320801418514, - "action": "NOTHING" - }, - { - "x": 6.005874767051415, - "y": -81.31060030806574, - "rotation": 0.24269254951019648, - "action": "CARVE_RIGHT" - }, - { - "x": 6.281332285693937, - "y": -82.77750396334199, - "rotation": 0.2585151280936356, - "action": "CARVE_RIGHT" - }, - { - "x": 6.576021434481111, - "y": -84.23978735249545, - "rotation": 0.2744620517787158, - "action": "CARVE_RIGHT" - }, - { - "x": 6.890291220305576, - "y": -85.69688612008154, - "rotation": 0.29053109749420614, - "action": "CARVE_RIGHT" - }, - { - "x": 7.224483743332536, - "y": -87.14824118538715, - "rotation": 0.3067200314951477, - "action": "CARVE_RIGHT" - }, - { - "x": 7.578933968567736, - "y": -88.59329898618427, - "rotation": 0.32302660966075997, - "action": "CARVE_RIGHT" - }, - { - "x": 7.953969501549897, - "y": -90.0315117187349, - "rotation": 0.33944857779303594, - "action": "CARVE_RIGHT" - }, - { - "x": 8.349910368273504, - "y": -91.46233757394502, - "rotation": 0.3559836719159878, - "action": "CARVE_RIGHT" - }, - { - "x": 8.76706879944534, - "y": -92.88524096956777, - "rotation": 0.37262961857550464, - "action": "CARVE_RIGHT" - }, - { - "x": 9.205749019175583, - "y": -94.29969277835848, - "rotation": 0.38938413513978415, - "action": "CARVE_RIGHT" - }, - { - "x": 9.666247038201725, - "y": -95.70517055208616, - "rotation": 0.4062449301002993, - "action": "CARVE_RIGHT" - }, - { - "x": 10.148850451740962, - "y": -97.10115874130905, - "rotation": 0.4232097033732624, - "action": "CARVE_RIGHT" - }, - { - "x": 10.653838242063996, - "y": -98.48714891082382, - "rotation": 0.44027614660154824, - "action": "CARVE_RIGHT" - }, - { - "x": 11.181480585880522, - "y": -99.86263995070077, - "rotation": 0.45744194345703687, - "action": "CARVE_RIGHT" - }, - { - "x": 11.732038666623952, - "y": -101.22713828281988, - "rotation": 0.47470476994333943, - "action": "CARVE_RIGHT" - }, - { - "x": 12.305764491720117, - "y": -102.58015806282508, - "rotation": 0.4920622946988674, - "action": "CARVE_RIGHT" - }, - { - "x": 12.902900714921925, - "y": -103.92122137741666, - "rotation": 0.5095121793002079, - "action": "CARVE_RIGHT" - }, - { - "x": 13.523680463789097, - "y": -105.24985843690452, - "rotation": 0.5270520785657662, - "action": "CARVE_RIGHT" - }, - { - "x": 14.168327172389267, - "y": -106.56560776294754, - "rotation": 0.5446796408596382, - "action": "CARVE_RIGHT" - }, - { - "x": 14.837054419293823, - "y": -107.86801637140687, - "rotation": 0.5623925083956736, - "action": "CARVE_RIGHT" - }, - { - "x": 15.530065770938947, - "y": -109.15663995024401, - "rotation": 0.5801883175416932, - "action": "NOTHING" - }, - { - "x": 16.299184542637576, - "y": -110.38422321440486, - "rotation": 0.5766976590377045, - "action": "NOTHING" - }, - { - "x": 17.067375170618032, - "y": -111.62212319723317, - "rotation": 0.5732070005337159, - "action": "NOTHING" - }, - { - "x": 17.83460313040266, - "y": -112.87039961785189, - "rotation": 0.5697163420297272, - "action": "NOTHING" - }, - { - "x": 18.600833676091135, - "y": -114.12911234490092, - "rotation": 0.5662256835257385, - "action": "NOTHING" - }, - { - "x": 19.366031840936255, - "y": -115.39832139611497, - "rotation": 0.5627350250217499, - "action": "NOTHING" - }, - { - "x": 20.130162437918305, - "y": -116.67808693790258, - "rotation": 0.5592443665177612, - "action": "NOTHING" - }, - { - "x": 20.893190060318023, - "y": -117.9684692849261, - "rotation": 0.5557537080137726, - "action": "NOTHING" - }, - { - "x": 21.655079082288136, - "y": -119.26952889968288, - "rotation": 0.5522630495097839, - "action": "NOTHING" - }, - { - "x": 22.41579365942351, - "y": -120.58132639208745, - "rotation": 0.5487723910057952, - "action": "NOTHING" - }, - { - "x": 23.175297729329873, - "y": -121.9039225190548, - "rotation": 0.5452817325018066, - "action": "NOTHING" - }, - { - "x": 23.933555012191164, - "y": -123.23737818408485, - "rotation": 0.5417910739978179, - "action": "NOTHING" - }, - { - "x": 24.69052901133545, - "y": -124.58175443684775, - "rotation": 0.5383004154938292, - "action": "NOTHING" - }, - { - "x": 25.446183013799487, - "y": -125.93711247277054, - "rotation": 0.5348097569898406, - "action": "NOTHING" - }, - { - "x": 26.200480090891865, - "y": -127.30351363262464, - "rotation": 0.5313190984858519, - "action": "CARVE_RIGHT" - }, - { - "x": 26.906781206668708, - "y": -128.72316699060443, - "rotation": 0.5504412940223462, - "action": "CARVE_RIGHT" - }, - { - "x": 27.640733040559123, - "y": -130.12575496615992, - "rotation": 0.5696450921869843, - "action": "CARVE_RIGHT" - }, - { - "x": 28.402540604852458, - "y": -131.5108128659801, - "rotation": 0.5889279521614038, - "action": "CARVE_RIGHT" - }, - { - "x": 29.192396801770997, - "y": -132.8778867365659, - "rotation": 0.6082873284202741, - "action": "CARVE_RIGHT" - }, - { - "x": 30.010482279327892, - "y": -134.2265335327312, - "rotation": 0.6277206710558704, - "action": "CARVE_RIGHT" - }, - { - "x": 30.856965293737076, - "y": -135.55632128002145, - "rotation": 0.6472254261025414, - "action": "CARVE_RIGHT" - }, - { - "x": 31.732001578429212, - "y": -136.86682923099545, - "rotation": 0.6667990358610308, - "action": "CARVE_RIGHT" - }, - { - "x": 32.63573421972428, - "y": -138.15764801531913, - "rotation": 0.6864389392226115, - "action": "NOTHING" - }, - { - "x": 33.63835077932018, - "y": -139.36452205353768, - "rotation": 0.6829482807186228, - "action": "NOTHING" - }, - { - "x": 34.63941465649437, - "y": -140.58047963596368, - "rotation": 0.6794576222146341, - "action": "NOTHING" - }, - { - "x": 35.63890373287178, - "y": -141.80557261749007, - "rotation": 0.6759669637106455, - "action": "NOTHING" - }, - { - "x": 36.63679563516491, - "y": -143.03985302629007, - "rotation": 0.6724763052066568, - "action": "NOTHING" - }, - { - "x": 37.633067735833905, - "y": -144.28337306333137, - "rotation": 0.6689856467026681, - "action": "NOTHING" - }, - { - "x": 38.6276971537451, - "y": -145.53618510189165, - "rotation": 0.6654949881986795, - "action": "NOTHING" - }, - { - "x": 39.6206607548279, - "y": -146.79834168707538, - "rotation": 0.6620043296946908, - "action": "NOTHING" - }, - { - "x": 40.611935152730034, - "y": -148.06989553533185, - "rotation": 0.6585136711907021, - "action": "NOTHING" - }, - { - "x": 41.60149670947123, - "y": -149.3508995339744, - "rotation": 0.6550230126867135, - "action": "NOTHING" - }, - { - "x": 42.58932153609527, - "y": -150.6414067407009, - "rotation": 0.6515323541827248, - "action": "NOTHING" - }, - { - "x": 43.575385493320454, - "y": -151.94147038311547, - "rotation": 0.6480416956787362, - "action": "NOTHING" - }, - { - "x": 44.55966419218845, - "y": -153.2511438582515, - "rotation": 0.6445510371747475, - "action": "NOTHING" - }, - { - "x": 45.542132994711544, - "y": -154.5704807320958, - "rotation": 0.6410603786707588, - "action": "NOTHING" - }, - { - "x": 46.522767014518344, - "y": -155.899534739114, - "rotation": 0.6375697201667702, - "action": "NOTHING" - }, - { - "x": 47.501541117497844, - "y": -157.23835978177718, - "rotation": 0.6340790616627815, - "action": "NOTHING" - }, - { - "x": 48.47842992244194, - "y": -158.58700993008975, - "rotation": 0.6305884031587928, - "action": "NOTHING" - }, - { - "x": 49.45340780168633, - "y": -159.94553942111853, - "rotation": 0.6270977446548042, - "action": "NOTHING" - }, - { - "x": 50.426448881749906, - "y": -161.314002658523, - "rotation": 0.6236070861508155, - "action": "NOTHING" - }, - { - "x": 51.397527043972495, - "y": -162.6924542120869, - "rotation": 0.6201164276468268, - "action": "NOTHING" - }, - { - "x": 52.36661592515109, - "y": -164.08094881725066, - "rotation": 0.6166257691428382, - "action": "NOTHING" - }, - { - "x": 53.333688918174474, - "y": -165.4795413746457, - "rotation": 0.6131351106388495, - "action": "NOTHING" - }, - { - "x": 54.298719172656334, - "y": -166.88828694962922, - "rotation": 0.6096444521348608, - "action": "NOTHING" - }, - { - "x": 55.261679595566775, - "y": -168.30724077182066, - "rotation": 0.6061537936308722, - "action": "NOTHING" - }, - { - "x": 56.22254285186229, - "y": -169.73645823463914, - "rotation": 0.6026631351268835, - "action": "NOTHING" - }, - { - "x": 57.18128136511421, - "y": -171.17599489484223, - "rotation": 0.5991724766228949, - "action": "NOTHING" - }, - { - "x": 58.13786731813554, - "y": -172.6259064720658, - "rotation": 0.5956818181189062, - "action": "NOTHING" - }, - { - "x": 59.09227265360636, - "y": -174.08624884836502, - "rotation": 0.5921911596149175, - "action": "NOTHING" - }, - { - "x": 60.04446907469756, - "y": -175.55707806775678, - "rotation": 0.5887005011109289, - "action": "NOTHING" - }, - { - "x": 60.994428045693155, - "y": -177.03845033576297, - "rotation": 0.5852098426069402, - "action": "NOTHING" - }, - { - "x": 61.94212079261101, - "y": -178.5304220189552, - "rotation": 0.5817191841029515, - "action": "NOTHING" - }, - { - "x": 62.88751830382201, - "y": -180.03304964450052, - "rotation": 0.5782285255989629, - "action": "NOTHING" - }, - { - "x": 63.830591330667815, - "y": -181.54638989970852, - "rotation": 0.5747378670949742, - "action": "CARVE_RIGHT" - }, - { - "x": 64.71478414979106, - "y": -183.1217965960721, - "rotation": 0.5968395970746744, - "action": "CARVE_RIGHT" - }, - { - "x": 65.63459507439597, - "y": -184.67145978713322, - "rotation": 0.6190112260618256, - "action": "CARVE_RIGHT" - }, - { - "x": 66.59019882522718, - "y": -186.19490591322207, - "rotation": 0.6412498691995858, - "action": "CARVE_RIGHT" - }, - { - "x": 67.58175370242287, - "y": -187.69167638518473, - "rotation": 0.6635526391038368, - "action": "CARVE_RIGHT" - }, - { - "x": 68.60940146332254, - "y": -189.16132773662216, - "rotation": 0.6859166462257241, - "action": "NOTHING" - }, - { - "x": 69.74872198005095, - "y": -190.53461267069002, - "rotation": 0.6824259877217355, - "action": "NOTHING" - }, - { - "x": 70.88551362035213, - "y": -191.9173060375789, - "rotation": 0.6789353292177468, - "action": "NOTHING" - }, - { - "x": 72.01975757153099, - "y": -193.30945778935646, - "rotation": 0.6754446707137581, - "action": "NOTHING" - }, - { - "x": 73.15143475659501, - "y": -194.71111805774436, - "rotation": 0.6719540122097695, - "action": "NOTHING" - }, - { - "x": 74.28052583493869, - "y": -196.12233715361467, - "rotation": 0.6684633537057808, - "action": "NOTHING" - }, - { - "x": 75.40701120302627, - "y": -197.5431655664876, - "rotation": 0.6649726952017921, - "action": "NOTHING" - }, - { - "x": 76.5308709950729, - "y": -198.97365396403043, - "rotation": 0.6614820366978035, - "action": "NOTHING" - }, - { - "x": 77.65208508372397, - "y": -200.41385319155782, - "rotation": 0.6579913781938148, - "action": "NOTHING" - }, - { - "x": 78.7706330807329, - "y": -201.86381427153327, - "rotation": 0.6545007196898261, - "action": "NOTHING" - }, - { - "x": 79.88649433763717, - "y": -203.32358840307205, - "rotation": 0.6510100611858375, - "action": "NOTHING" - }, - { - "x": 80.99964794643279, - "y": -204.79322696144533, - "rotation": 0.6475194026818488, - "action": "NOTHING" - }, - { - "x": 82.11007274024702, - "y": -206.27278149758547, - "rotation": 0.6440287441778602, - "action": "NOTHING" - }, - { - "x": 83.2177472940095, - "y": -207.76230373759282, - "rotation": 0.6405380856738715, - "action": "NOTHING" - }, - { - "x": 84.3226499251217, - "y": -209.26184558224355, - "rotation": 0.6370474271698828, - "action": "NOTHING" - }, - { - "x": 85.42475869412473, - "y": -210.77145910649895, - "rotation": 0.6335567686658942, - "action": "NOTHING" - }, - { - "x": 86.52405140536553, - "y": -212.2911965590158, - "rotation": 0.6300661101619055, - "action": "NOTHING" - }, - { - "x": 87.62050560766136, - "y": -213.82111036165816, - "rotation": 0.6265754516579168, - "action": "NOTHING" - }, - { - "x": 88.71409859496275, - "y": -215.3612531090104, - "rotation": 0.6230847931539282, - "action": "NOTHING" - }, - { - "x": 89.80480740701475, - "y": -216.91167756789136, - "rotation": 0.6195941346499395, - "action": "CARVE_LEFT" - }, - { - "x": 90.75153884495556, - "y": -218.6026273612206, - "rotation": 0.5958830030407906, - "action": "CARVE_LEFT" - }, - { - "x": 91.66315313170453, - "y": -220.3336094479044, - "rotation": 0.5721050727919977, - "action": "CARVE_LEFT" - }, - { - "x": 92.53942089994045, - "y": -222.1051399903816, - "rotation": 0.5482575335666191, - "action": "CARVE_LEFT" - }, - { - "x": 93.38009392956273, - "y": -223.91775296801268, - "rotation": 0.5243375720301323, - "action": "CARVE_LEFT" - }, - { - "x": 94.18490499513729, - "y": -225.77200035526846, - "rotation": 0.5003423715081121, - "action": "CARVE_LEFT" - }, - { - "x": 94.95356770447921, - "y": -227.6684523081007, - "rotation": 0.4762691116441793, - "action": "CARVE_LEFT" - }, - { - "x": 95.68577632831483, - "y": -229.6076973585527, - "rotation": 0.45211496805817736, - "action": "CARVE_LEFT" - }, - { - "x": 96.38120562096168, - "y": -231.59034261767115, - "rotation": 0.42787711200453504, - "action": "CARVE_LEFT" - }, - { - "x": 97.03951063196058, - "y": -233.6170139867848, - "rotation": 0.4035527100307715, - "action": "CARVE_LEFT" - }, - { - "x": 97.66032650859006, - "y": -235.6883563772192, - "rotation": 0.3791389236361016, - "action": "CARVE_LEFT" - }, - { - "x": 98.24326828918879, - "y": -237.80503393852092, - "rotation": 0.35463290893009924, - "action": "CARVE_LEFT" - }, - { - "x": 98.78793068720792, - "y": -239.967730295268, - "rotation": 0.3300318162913759, - "action": "CARVE_LEFT" - }, - { - "x": 99.29388786591039, - "y": -242.1771487925482, - "rotation": 0.30533279002623226, - "action": "CARVE_LEFT" - }, - { - "x": 99.76069320363055, - "y": -244.43401275018954, - "rotation": 0.28053296802724065, - "action": "CARVE_LEFT" - }, - { - "x": 100.18787904950263, - "y": -246.73906572583277, - "rotation": 0.25562948143171654, - "action": "CARVE_LEFT" - }, - { - "x": 100.57495646956257, - "y": -249.09307178693825, - "rotation": 0.23061945428003638, - "action": "CARVE_LEFT" - }, - { - "x": 100.9214149831233, - "y": -251.49681579182467, - "rotation": 0.2055000031737604, - "action": "CARVE_LEFT" - }, - { - "x": 101.22672228931889, - "y": -253.95110367984074, - "rotation": 0.18026823693351796, - "action": "CARVE_LEFT" - }, - { - "x": 101.49032398370886, - "y": -256.4567627707751, - "rotation": 0.1549212562566139, - "action": "CARVE_LEFT" - }, - { - "x": 101.71164326482939, - "y": -259.0146420736138, - "rotation": 0.12945615337431393, - "action": "CARVE_LEFT" - }, - { - "x": 101.89008063057335, - "y": -261.62561260475934, - "rotation": 0.10387001170876722, - "action": "CARVE_LEFT" - }, - { - "x": 102.02501356427702, - "y": -264.2905677158286, - "rotation": 0.07815990552952455, - "action": "CARVE_LEFT" - }, - { - "x": 102.1157962103862, - "y": -267.0104234311522, - "rotation": 0.05232289960961015, - "action": "CARVE_LEFT" - }, - { - "x": 102.16175903957021, - "y": -269.78611879510146, - "rotation": 0.026356048881105768, - "action": "CARVE_LEFT" - }, - { - "x": 102.16220850314734, - "y": -272.6186162293741, - "rotation": 0.0002563980902050428, - "action": "CARVE_LEFT" - }, - { - "x": 102.11643784328874, - "y": -275.42343645191283, - "rotation": 6.257206288631283, - "action": "CARVE_LEFT" - }, - { - "x": 102.0237612519072, - "y": -278.1987310310206, - "rotation": 6.230838562382253, - "action": "CARVE_LEFT" - }, - { - "x": 101.88351448352206, - "y": -280.94350288083547, - "rotation": 6.204342055717552, - "action": "CARVE_LEFT" - }, - { - "x": 101.69505523316651, - "y": -283.656774320507, - "rotation": 6.177720306717885, - "action": "CARVE_LEFT" - }, - { - "x": 101.45776350215431, - "y": -286.33758746210293, - "rotation": 6.150976861893987, - "action": "CARVE_LEFT" - }, - { - "x": 101.17104195155592, - "y": -288.9850045871441, - "rotation": 6.124115275730678, - "action": "CARVE_LEFT" - }, - { - "x": 100.83431624324153, - "y": -291.59810851162877, - "rotation": 6.0971391102308266, - "action": "CARVE_LEFT" - }, - { - "x": 100.44703536835436, - "y": -294.176002939415, - "rotation": 6.07005193445931, - "action": "CARVE_LEFT" - }, - { - "x": 100.00867196308513, - "y": -296.717812803834, - "rotation": 6.042857324087007, - "action": "CARVE_LEFT" - }, - { - "x": 99.51872261162487, - "y": -299.2226845974156, - "rotation": 6.015558860934878, - "action": "CARVE_LEFT" - }, - { - "x": 98.97670813618048, - "y": -301.6897866896125, - "rotation": 5.988160132518207, - "action": "CARVE_LEFT" - }, - { - "x": 98.38217387394403, - "y": -304.11830963241636, - "rotation": 5.960664731591041, - "action": "CARVE_LEFT" - }, - { - "x": 97.73468994091387, - "y": -306.507466453765, - "rotation": 5.933076255690897, - "action": "CARVE_LEFT" - }, - { - "x": 97.03385148247251, - "y": -308.8564929386474, - "rotation": 5.905398306683784, - "action": "CARVE_LEFT" - }, - { - "x": 96.2792789106333, - "y": -311.1646478978181, - "rotation": 5.877634490309604, - "action": "CARVE_LEFT" - }, - { - "x": 95.47061812787449, - "y": -313.43121342404055, - "rotation": 5.849788415727975, - "action": "CARVE_LEFT" - }, - { - "x": 94.60754073748704, - "y": -315.65549513578463, - "rotation": 5.821863695064545, - "action": "CARVE_LEFT" - }, - { - "x": 93.68974424036861, - "y": -317.8368224083102, - "rotation": 5.793863942957846, - "action": "CARVE_LEFT" - }, - { - "x": 92.71695221820387, - "y": -319.9745485920751, - "rotation": 5.76579277610674, - "action": "CARVE_LEFT" - }, - { - "x": 91.688914502978, - "y": -322.0680512184128, - "rotation": 5.737653812818516, - "action": "CARVE_LEFT" - }, - { - "x": 90.60540733277722, - "y": -324.1167321924305, - "rotation": 5.709450672557694, - "action": "CARVE_LEFT" - }, - { - "x": 89.46623349383736, - "y": -326.1200179730866, - "rotation": 5.681186975495584, - "action": "CARVE_LEFT" - }, - { - "x": 88.27122244880836, - "y": -328.077359740411, - "rotation": 5.652866342060664, - "action": "CARVE_LEFT" - }, - { - "x": 87.02023045120954, - "y": -329.98823354984, - "rotation": 5.624492392489818, - "action": "CARVE_LEFT" - }, - { - "x": 85.71314064605772, - "y": -331.85214047364275, - "rotation": 5.596068746380503, - "action": "CARVE_LEFT" - }, - { - "x": 84.34986315665681, - "y": -333.6686067294234, - "rotation": 5.567599022243886, - "action": "CARVE_LEFT" - }, - { - "x": 82.93033515754485, - "y": -335.4371837956891, - "rotation": 5.539086837059011, - "action": "CARVE_LEFT" - }, - { - "x": 81.45452093360112, - "y": -337.15744851448113, - "rotation": 5.5105358058280425, - "action": "NOTHING" - }, - { - "x": 79.81973276868584, - "y": -338.73505872476335, - "rotation": 5.514026464332031, - "action": "NOTHING" - }, - { - "x": 78.18995204707312, - "y": -340.3218866211011, - "rotation": 5.517517122836019, - "action": "NOTHING" - }, - { - "x": 76.5651811047794, - "y": -341.9179718708103, - "rotation": 5.521007781340008, - "action": "NOTHING" - }, - { - "x": 74.94542258697945, - "y": -343.52335435245584, - "rotation": 5.524498439843996, - "action": "NOTHING" - }, - { - "x": 73.33067944720842, - "y": -345.1380741552629, - "rotation": 5.527989098347985, - "action": "NOTHING" - }, - { - "x": 71.72095494656587, - "y": -346.7621715785296, - "rotation": 5.531479756851973, - "action": "NOTHING" - }, - { - "x": 70.11625265292157, - "y": -348.3956871310409, - "rotation": 5.534970415355962, - "action": "NOTHING" - }, - { - "x": 68.51657644012352, - "y": -350.0386615304846, - "rotation": 5.53846107385995, - "action": "NOTHING" - }, - { - "x": 66.92193048720763, - "y": -351.6911357028684, - "rotation": 5.5419517323639385, - "action": "NOTHING" - }, - { - "x": 65.3323192776096, - "y": -353.3531507819384, - "rotation": 5.545442390867927, - "action": "NOTHING" - }, - { - "x": 63.747747598378496, - "y": -355.0247481085995, - "rotation": 5.548933049371915, - "action": "NOTHING" - }, - { - "x": 62.168220539392436, - "y": -356.705969230337, - "rotation": 5.552423707875904, - "action": "NOTHING" - }, - { - "x": 60.593743492576095, - "y": -358.3968559006396, - "rotation": 5.555914366379892, - "action": "NOTHING" - }, - { - "x": 59.02432215112016, - "y": -360.097450078424, - "rotation": 5.559405024883881, - "action": "NOTHING" - }, - { - "x": 57.45996250870271, - "y": -361.8077939274612, - "rotation": 5.562895683387869, - "action": "NOTHING" - }, - { - "x": 55.90067085871247, - "y": -363.52792981580393, - "rotation": 5.5663863418918575, - "action": "NOTHING" - }, - { - "x": 54.34645379347403, - "y": -365.25790031521564, - "rotation": 5.569877000395846, - "action": "NOTHING" - }, - { "x": 52.7973182034749, "y": -366.997748200601, "rotation": 5.573367658899834, "action": "NOTHING" }, - { - "x": 51.25327127659449, - "y": -368.74751644943797, - "rotation": 5.576858317403823, - "action": "NOTHING" - }, - { - "x": 49.71432049733499, - "y": -370.5072482412112, - "rotation": 5.580348975907811, - "action": "NOTHING" - }, - { - "x": 48.180473646054125, - "y": -372.27698695684677, - "rotation": 5.5838396344118, - "action": "NOTHING" - }, - { - "x": 46.651738798199794, - "y": -374.05677617814877, - "rotation": 5.587330292915788, - "action": "NOTHING" - }, - { - "x": 45.1281243235466, - "y": -375.84665968723675, - "rotation": 5.590820951419777, - "action": "NOTHING" - }, - { - "x": 43.609638885434215, - "y": -377.64668146598524, - "rotation": 5.594311609923765, - "action": "NOTHING" - }, - { - "x": 42.096291440007654, - "y": -379.4568856954643, - "rotation": 5.5978022684277535, - "action": "CARVE_LEFT" - }, - { - "x": 40.67326635492753, - "y": -381.3550383317482, - "rotation": 5.568061235187768, - "action": "CARVE_LEFT" - }, - { - "x": 39.189177850372175, - "y": -383.20056058053905, - "rotation": 5.5382802262913655, - "action": "CARVE_LEFT" - }, - { - "x": 37.64400444503662, - "y": -384.99302610527457, - "rotation": 5.508463008862389, - "action": "CARVE_LEFT" - }, - { - "x": 36.03775424567417, - "y": -386.7320363448852, - "rotation": 5.478613346973395, - "action": "CARVE_LEFT" - }, - { - "x": 34.370464966180116, - "y": -388.417220580981, - "rotation": 5.448735001185728, - "action": "CARVE_LEFT" - }, - { - "x": 32.64220393170841, - "y": -390.0482359910277, - "rotation": 5.418831728090949, - "action": "CARVE_LEFT" - }, - { - "x": 30.853068067862186, - "y": -391.624767687545, - "rotation": 5.388907279853675, - "action": "NOTHING" - }, - { - "x": 28.871291295114055, - "y": -393.02555294426907, - "rotation": 5.3923979383576635, - "action": "NOTHING" - }, - { - "x": 26.89565381918977, - "y": -394.4346889243646, - "rotation": 5.395888596861652, - "action": "NOTHING" - }, - { - "x": 24.926143320592757, - "y": -395.85220555517844, - "rotation": 5.39937925536564, - "action": "NOTHING" - }, - { - "x": 22.96274782746932, - "y": -397.27813300328046, - "rotation": 5.402869913869629, - "action": "NOTHING" - }, - { - "x": 21.00545571471536, - "y": -398.7125016738017, - "rotation": 5.406360572373617, - "action": "NOTHING" - }, - { - "x": 19.05425570308524, - "y": -400.1553422097742, - "rotation": 5.409851230877606, - "action": "NOTHING" - }, - { - "x": 17.10913685830287, - "y": -401.6066854914727, - "rotation": 5.413341889381594, - "action": "NOTHING" - }, - { - "x": 15.170088590174938, - "y": -403.06656263575815, - "rotation": 5.4168325478855825, - "action": "NOTHING" - }, - { - "x": 13.237100651706328, - "y": -404.53500499542207, - "rotation": 5.420323206389571, - "action": "NOTHING" - }, - { - "x": 11.310163138217671, - "y": -406.0120441585337, - "rotation": 5.423813864893559, - "action": "NOTHING" - }, - { - "x": 9.389266486465083, - "y": -407.49771194778805, - "rotation": 5.427304523397548, - "action": "NOTHING" - }, - { - "x": 7.474401473762029, - "y": -408.9920404198559, - "rotation": 5.430795181901536, - "action": "NOTHING" - }, - { - "x": 5.565559217103361, - "y": -410.4950618647356, - "rotation": 5.434285840405525, - "action": "NOTHING" - }, - { - "x": 3.662731172291476, - "y": -412.0068088051059, - "rotation": 5.437776498909513, - "action": "NOTHING" - }, - { - "x": 1.7659091330646146, - "y": -413.52731399568137, - "rotation": 5.441267157413502, - "action": "NOTHING" - }, - { - "x": -0.12491476977269889, - "y": -415.0566104225687, - "rotation": 5.44475781591749, - "action": "NOTHING" - }, - { - "x": -2.0097480692171006, - "y": -416.5947313026251, - "rotation": 5.4482484744214785, - "action": "NOTHING" - }, - { - "x": -3.888597962931705, - "y": -418.14171008281795, - "rotation": 5.451739132925467, - "action": "NOTHING" - }, - { - "x": -5.761471314109305, - "y": -419.69758043958643, - "rotation": 5.455229791429455, - "action": "NOTHING" - }, - { - "x": -7.628374652333466, - "y": -421.2623762782048, - "rotation": 5.458720449933444, - "action": "NOTHING" - }, - { - "x": -9.489314174437508, - "y": -422.8361317321469, - "rotation": 5.462211108437432, - "action": "NOTHING" - }, - { - "x": -11.344295745361388, - "y": -424.4188811624527, - "rotation": 5.465701766941421, - "action": "CARVE_RIGHT" - }, - { - "x": -12.95290849301557, - "y": -426.2329288854162, - "rotation": 5.496265847755708, - "action": "CARVE_RIGHT" - }, - { - "x": -14.500658528868339, - "y": -428.10691263024097, - "rotation": 5.526859369178533, - "action": "CARVE_RIGHT" - }, - { - "x": -15.987522941376481, - "y": -430.0412558966978, - "rotation": 5.5574860600979985, - "action": "CARVE_RIGHT" - }, - { - "x": -17.413447924646853, - "y": -432.03641047911646, - "rotation": 5.58814964605113, - "action": "CARVE_RIGHT" - }, - { - "x": -18.778348735036317, - "y": -434.0928565569619, - "rotation": 5.618853849691836, - "action": "CARVE_RIGHT" - }, - { - "x": -20.082109632802908, - "y": -436.21110279911886, - "rotation": 5.649602391257571, - "action": "CARVE_RIGHT" - }, - { - "x": -21.324583808821384, - "y": -438.39168648187865, - "rotation": 5.680398989034775, - "action": "CARVE_RIGHT" - }, - { - "x": -22.505593296368833, - "y": -440.6351736206305, - "rotation": 5.7112473598231315, - "action": "CARVE_RIGHT" - }, - { - "x": -23.62492886797875, - "y": -442.9421591152643, - "rotation": 5.742151219398715, - "action": "CARVE_RIGHT" - }, - { - "x": -24.682349917354546, - "y": -445.3132669092999, - "rotation": 5.773114282976089, - "action": "CARVE_RIGHT" - }, - { - "x": -25.677584326326283, - "y": -447.7491501627644, - "rotation": 5.8041402656694085, - "action": "CARVE_RIGHT" - }, - { - "x": -26.61032831682702, - "y": -450.25049143884576, - "rotation": 5.8352328829525835, - "action": "CARVE_RIGHT" - }, - { - "x": -27.480246287857963, - "y": -452.8180029043571, - "rotation": 5.866395851118574, - "action": "CARVE_RIGHT" - }, - { - "x": -28.28697063740432, - "y": -455.45242654405405, - "rotation": 5.8976328877378625, - "action": "CARVE_RIGHT" - }, - { - "x": -29.030101569256484, - "y": -458.1545343888525, - "rotation": 5.928947712116173, - "action": "CARVE_RIGHT" - }, - { - "x": -29.709206884683987, - "y": -460.92512875800236, - "rotation": 5.960344045751482, - "action": "CARVE_RIGHT" - }, - { - "x": -30.323821758902348, - "y": -463.7650425152792, - "rotation": 5.991825612790391, - "action": "CARVE_RIGHT" - }, - { - "x": -30.873448502265724, - "y": -466.67513933926114, - "rotation": 6.023396140483918, - "action": "CARVE_RIGHT" - }, - { - "x": -31.357556306111018, - "y": -469.6563140077669, - "rotation": 6.055059359642753, - "action": "CARVE_RIGHT" - }, - { - "x": -31.775580973171802, - "y": -472.7094926965367, - "rotation": 6.086819005092052, - "action": "CARVE_RIGHT" - }, - { - "x": -32.12692463247318, - "y": -475.83563329224376, - "rotation": 6.118678816125814, - "action": "CARVE_RIGHT" - }, - { - "x": -32.41095543861135, - "y": -479.0357257199328, - "rotation": 6.150642536960902, - "action": "CARVE_RIGHT" - }, - { - "x": -32.6270072553144, - "y": -482.3107922849865, - "rotation": 6.182713917190769, - "action": "CARVE_RIGHT" - }, - { - "x": -32.77437932317341, - "y": -485.6618880297289, - "rotation": 6.214896712238941, - "action": "CARVE_RIGHT" - }, - { - "x": -32.852335911425676, - "y": -489.090101104782, - "rotation": 6.24719468381231, - "action": "CARVE_RIGHT" - }, - { - "x": -32.86010595366439, - "y": -492.5965531552968, - "rotation": 6.279611600354307, - "action": "CARVE_RIGHT" - }, - { - "x": -32.79689654930097, - "y": -496.0645579240722, - "rotation": 0.02896593031840755, - "action": "CARVE_RIGHT" - }, - { - "x": -32.661945068083114, - "y": -499.4785579157079, - "rotation": 0.061624898823482405, - "action": "CARVE_RIGHT" - }, - { - "x": -32.45452360621566, - "y": -502.8374161427232, - "rotation": 0.09439891653588378, - "action": "CARVE_RIGHT" - }, - { - "x": -32.17393937092376, - "y": -506.1400275730759, - "rotation": 0.12728369562167074, - "action": "CARVE_RIGHT" - }, - { - "x": -31.819535046191106, - "y": -509.38531952731097, - "rotation": 0.1602749431092573, - "action": "CARVE_RIGHT" - }, - { - "x": -31.390689139547128, - "y": -512.572252058107, - "rotation": 0.19336836143119857, - "action": "CARVE_RIGHT" - }, - { - "x": -30.886816309787154, - "y": -515.6998183121042, - "rotation": 0.22655964896546213, - "action": "CARVE_RIGHT" - }, - { - "x": -30.307367675519288, - "y": -518.767044873911, - "rotation": 0.25984450057611913, - "action": "CARVE_RIGHT" - }, - { - "x": -29.651831104441825, - "y": -521.7729920921905, - "rotation": 0.29321860815338874, - "action": "CARVE_RIGHT" - }, - { - "x": -28.919731483264943, - "y": -524.7167543877414, - "rotation": 0.3266776611529711, - "action": "CARVE_RIGHT" - }, - { - "x": -28.110630968200343, - "y": -527.5974605434956, - "rotation": 0.3602173471346025, - "action": "CARVE_RIGHT" - }, - { - "x": -27.224129215952534, - "y": -530.4142739763636, - "rotation": 0.39383335229976885, - "action": "CARVE_RIGHT" - }, - { - "x": -26.259863595155363, - "y": -533.1663929908683, - "rotation": 0.4275213620285111, - "action": "CARVE_RIGHT" - }, - { - "x": -25.21750937820738, - "y": -535.8530510145188, - "rotation": 0.4612770614152596, - "action": "CARVE_RIGHT" - }, - { - "x": -24.09677991346953, - "y": -538.4735168148807, - "rotation": 0.4950961358036313, - "action": "CARVE_RIGHT" - }, - { - "x": -22.89742677779859, - "y": -541.0270946983146, - "rotation": 0.5289742713201273, - "action": "CARVE_RIGHT" - }, - { - "x": -21.619239909399703, - "y": -543.5131246903582, - "rotation": 0.5629071554066655, - "action": "CARVE_RIGHT" - }, - { - "x": -20.26204772099112, - "y": -545.9309826977391, - "rotation": 0.5968904773518855, - "action": "NOTHING" - }, - { - "x": -18.76054243015498, - "y": -548.2209352560398, - "rotation": 0.5933998188478968, - "action": "NOTHING" - }, - { - "x": -17.26553632491561, - "y": -550.5226586037691, - "rotation": 0.5899091603439082, - "action": "NOTHING" - }, - { - "x": -15.77704284332546, - "y": -552.8362003441847, - "rotation": 0.5864185018399195, - "action": "NOTHING" - }, - { - "x": -14.295075704777583, - "y": -555.161608270724, - "rotation": 0.5829278433359308, - "action": "NOTHING" - }, - { - "x": -12.819648909274521, - "y": -557.498930366467, - "rotation": 0.5794371848319422, - "action": "NOTHING" - }, - { - "x": -11.350776736698993, - "y": -559.8482148036021, - "rotation": 0.5759465263279535, - "action": "NOTHING" - }, - { - "x": -9.88847374608637, - "y": -562.209509942892, - "rotation": 0.5724558678239648, - "action": "NOTHING" - }, - { - "x": -8.432754774898946, - "y": -564.582864333142, - "rotation": 0.5689652093199762, - "action": "NOTHING" - }, - { - "x": -6.983634938301995, - "y": -566.9683267106685, - "rotation": 0.5654745508159875, - "action": "NOTHING" - }, - { - "x": -5.541129628441607, - "y": -569.3659459987707, - "rotation": 0.5619838923119989, - "action": "NOTHING" - }, - { - "x": -4.105254513724307, - "y": -571.7757713072014, - "rotation": 0.5584932338080102, - "action": "NOTHING" - }, - { - "x": -2.6760255380984432, - "y": -574.1978519316407, - "rotation": 0.5550025753040215, - "action": "NOTHING" - }, - { - "x": -1.253458920337346, - "y": -576.6322373531711, - "rotation": 0.5515119168000329, - "action": "NOTHING" - }, - { - "x": 0.16242884667574775, - "y": -579.0789772377532, - "rotation": 0.5480212582960442, - "action": "NOTHING" - }, - { - "x": 1.5716209966610084, - "y": -581.5381214357026, - "rotation": 0.5445305997920555, - "action": "NOTHING" - }, - { - "x": 2.974100490653573, - "y": -584.0097199811695, - "rotation": 0.5410399412880669, - "action": "NOTHING" - }, - { - "x": 4.3698500177133495, - "y": -586.4938230916181, - "rotation": 0.5375492827840782, - "action": "NOTHING" - }, - { - "x": 5.758851995633074, - "y": -588.9904811673084, - "rotation": 0.5340586242800895, - "action": "NOTHING" - }, - { - "x": 7.141088571644622, - "y": -591.4997447907789, - "rotation": 0.5305679657761009, - "action": "NOTHING" - }, - { - "x": 8.516541623123583, - "y": -594.0216647263304, - "rotation": 0.5270773072721122, - "action": "NOTHING" - }, - { - "x": 9.885192758292096, - "y": -596.5562919195119, - "rotation": 0.5235866487681236, - "action": "NOTHING" - }, - { - "x": 11.24702331691995, - "y": -599.103677496607, - "rotation": 0.5200959902641349, - "action": "NOTHING" - }, - { - "x": 12.602014371023968, - "y": -601.6638727641223, - "rotation": 0.5166053317601462, - "action": "NOTHING" - }, - { - "x": 13.95014672556565, - "y": -604.2369292082764, - "rotation": 0.5131146732561576, - "action": "NOTHING" - }, - { - "x": 15.291400919147119, - "y": -606.822898494491, - "rotation": 0.5096240147521689, - "action": "NOTHING" - }, - { - "x": 16.625757224705325, - "y": -609.4218324668831, - "rotation": 0.5061333562481802, - "action": "CARVE_RIGHT" - }, - { - "x": 17.912741587414974, - "y": -612.0700192053234, - "rotation": 0.5416439234546987, - "action": "CARVE_RIGHT" - }, - { - "x": 19.28597162437277, - "y": -614.6432525056409, - "rotation": 0.5772044057442817, - "action": "CARVE_RIGHT" - }, - { - "x": 20.745587095462838, - "y": -617.1409171374504, - "rotation": 0.6128103005603843, - "action": "CARVE_RIGHT" - }, - { - "x": 22.291685464132822, - "y": -619.5624374584088, - "rotation": 0.6484571087290716, - "action": "CARVE_RIGHT" - }, - { - "x": 23.924321849079142, - "y": -621.9072775181985, - "rotation": 0.6841403350092937, - "action": "CARVE_RIGHT" - }, - { - "x": 25.64350899735569, - "y": -624.174941142496, - "rotation": 0.7198554886415738, - "action": "CARVE_RIGHT" - }, - { - "x": 27.44921727885389, - "y": -626.3649719969666, - "rotation": 0.7555980838950438, - "action": "NOTHING" - }, - { - "x": 29.447956720089437, - "y": -628.379491394574, - "rotation": 0.7521074253910551, - "action": "NOTHING" - }, - { - "x": 31.439098310266004, - "y": -630.4043071623771, - "rotation": 0.7486167668870665, - "action": "NOTHING" - }, - { - "x": 33.42264696125602, - "y": -632.4394548963668, - "rotation": 0.7451261083830778, - "action": "NOTHING" - }, - { - "x": 35.39860725495521, - "y": -634.4849704177798, - "rotation": 0.7416354498790891, - "action": "NOTHING" - }, - { - "x": 37.36698344413484, - "y": -636.5408897724702, - "rotation": 0.7381447913751005, - "action": "NOTHING" - }, - { - "x": 39.32777945329192, - "y": -638.6072492302827, - "rotation": 0.7346541328711118, - "action": "NOTHING" - }, - { - "x": 41.280998879497254, - "y": -640.6840852844269, - "rotation": 0.7311634743671231, - "action": "NOTHING" - }, - { - "x": 43.226644993241486, - "y": -642.7714346508541, - "rotation": 0.7276728158631345, - "action": "NOTHING" - }, - { - "x": 45.164720739279, - "y": -644.8693342676344, - "rotation": 0.7241821573591458, - "action": "NOTHING" - }, - { - "x": 47.09522873746978, - "y": -646.977821294337, - "rotation": 0.7206914988551572, - "action": "NOTHING" - }, - { - "x": 49.01817128361925, - "y": -649.096933111411, - "rotation": 0.7172008403511685, - "action": "NOTHING" - }, - { - "x": 50.933550350315976, - "y": -651.2267073195676, - "rotation": 0.7137101818471798, - "action": "NOTHING" - }, - { - "x": 52.841367587767344, - "y": -653.3671817391651, - "rotation": 0.7102195233431912, - "action": "NOTHING" - }, - { - "x": 54.74162432463323, - "y": -655.518394409594, - "rotation": 0.7067288648392025, - "action": "NOTHING" - }, - { - "x": 56.63432156885756, - "y": -657.6803835886649, - "rotation": 0.7032382063352138, - "action": "NOTHING" - }, - { - "x": 58.519460008497866, - "y": -659.8531877519974, - "rotation": 0.6997475478312252, - "action": "NOTHING" - }, - { - "x": 60.397040012552814, - "y": -662.0368455924105, - "rotation": 0.6962568893272365, - "action": "NOTHING" - }, - { - "x": 62.26706163178767, - "y": -664.2313960193147, - "rotation": 0.6927662308232478, - "action": "NOTHING" - }, - { - "x": 64.12952459955775, - "y": -666.436878158106, - "rotation": 0.6892755723192592, - "action": "NOTHING" - }, - { - "x": 65.9844283326299, - "y": -668.6533313495604, - "rotation": 0.6857849138152705, - "action": "NOTHING" - }, - { - "x": 67.83177193200186, - "y": -670.8807951492317, - "rotation": 0.6822942553112818, - "action": "NOTHING" - }, - { - "x": 69.67155418371969, - "y": -673.1193093268492, - "rotation": 0.6788035968072932, - "action": "NOTHING" - }, - { - "x": 71.50377355969323, - "y": -675.3689138657176, - "rotation": 0.6753129383033045, - "action": "NOTHING" - }, - { - "x": 73.3284282185094, - "y": -677.6296489621185, - "rotation": 0.6718222797993159, - "action": "NOTHING" - }, - { - "x": 75.1455160062437, - "y": -679.9015550247136, - "rotation": 0.6683316212953272, - "action": "NOTHING" - }, - { - "x": 76.95503445726953, - "y": -682.1846726739491, - "rotation": 0.6648409627913385, - "action": "NOTHING" - }, - { - "x": 78.75698079506573, - "y": -684.4790427414614, - "rotation": 0.6613503042873499, - "action": "NOTHING" - }, - { - "x": 80.55135193302189, - "y": -686.7847062694851, - "rotation": 0.6578596457833612, - "action": "NOTHING" - }, - { - "x": 82.3381444752419, - "y": -689.101704510262, - "rotation": 0.6543689872793725, - "action": "NOTHING" - }, - { - "x": 84.11735471734544, - "y": -691.4300789254515, - "rotation": 0.6508783287753839, - "action": "NOTHING" - }, - { - "x": 85.88897864726742, - "y": -693.7698711855431, - "rotation": 0.6473876702713952, - "action": "NOTHING" - }, - { - "x": 87.65301194605566, - "y": -696.1211231692698, - "rotation": 0.6438970117674065, - "action": "NOTHING" - }, - { - "x": 89.40944998866637, - "y": -698.4838769630232, - "rotation": 0.6404063532634179, - "action": "NOTHING" - }, - { - "x": 91.15828784475785, - "y": -700.8581748602703, - "rotation": 0.6369156947594292, - "action": "NOTHING" - }, - { - "x": 92.89952027948219, - "y": -703.2440593609717, - "rotation": 0.6334250362554406, - "action": "NOTHING" - }, - { - "x": 94.63314175427499, - "y": -705.6415731710011, - "rotation": 0.6299343777514519, - "action": "NOTHING" - }, - { - "x": 96.35914642764318, - "y": -708.0507592015667, - "rotation": 0.6264437192474632, - "action": "NOTHING" - }, - { - "x": 98.07752815595087, - "y": -710.4716605686338, - "rotation": 0.6229530607434746, - "action": "NOTHING" - }, - { - "x": 99.78828049420332, - "y": -712.9043205923484, - "rotation": 0.6194624022394859, - "action": "NOTHING" - }, - { - "x": 101.49139669682891, - "y": -715.3487827964639, - "rotation": 0.6159717437354972, - "action": "NOTHING" - }, - { - "x": 103.18686971845928, - "y": -717.8050909077672, - "rotation": 0.6124810852315086, - "action": "NOTHING" - }, - { - "x": 104.87469221470742, - "y": -720.2732888555078, - "rotation": 0.6089904267275199, - "action": "NOTHING" - }, - { - "x": 106.55485654294402, - "y": -722.7534207708277, - "rotation": 0.6054997682235312, - "action": "NOTHING" - }, - { - "x": 108.22735476307176, - "y": -725.245530986193, - "rotation": 0.6020091097195426, - "action": "CARVE_LEFT" - }, - { - "x": 109.64066880371452, - "y": -727.9822971242054, - "rotation": 0.564588284698839, - "action": "CARVE_LEFT" - }, - { - "x": 110.96188410811907, - "y": -730.8095019578157, - "rotation": 0.5271242058411391, - "action": "CARVE_LEFT" - }, - { - "x": 112.19079016989782, - "y": -733.727831573126, - "rotation": 0.48961232124435333, - "action": "CARVE_LEFT" - }, - { - "x": 113.32713026405885, - "y": -736.7380145688242, - "rotation": 0.4520480821913909, - "action": "CARVE_LEFT" - }, - { - "x": 114.37060133373193, - "y": -739.8408222224093, - "rotation": 0.41442694258061474, - "action": "CARVE_LEFT" - }, - { - "x": 115.32085385461497, - "y": -743.0370686768956, - "rotation": 0.37674435835776005, - "action": "CARVE_LEFT" - }, - { - "x": 116.17749167714108, - "y": -746.3276111480037, - "rotation": 0.33899578694924243, - "action": "CARVE_LEFT" - }, - { - "x": 116.94007184635572, - "y": -749.7133501518562, - "rotation": 0.30117668669678266, - "action": "CARVE_LEFT" - }, - { - "x": 117.60810439948231, - "y": -753.1952297532054, - "rotation": 0.2632825162932754, - "action": "CARVE_LEFT" - }, - { - "x": 118.18105214114405, - "y": -756.7742378342314, - "rotation": 0.22530873421983005, - "action": "CARVE_LEFT" - }, - { - "x": 118.65833039619845, - "y": -760.4514063839579, - "rotation": 0.18725079818391063, - "action": "CARVE_LEFT" - }, - { - "x": 119.03930674013067, - "y": -764.2278118083434, - "rotation": 0.14910416455850434, - "action": "CARVE_LEFT" - }, - { - "x": 119.3233007069404, - "y": -768.1045752611166, - "rotation": 0.11086428782224604, - "action": "CARVE_LEFT" - }, - { - "x": 119.5095834744468, - "y": -772.0828629954324, - "rotation": 0.0725266200004282, - "action": "CARVE_LEFT" - }, - { - "x": 119.59737752692457, - "y": -776.1638867364385, - "rotation": 0.03408661010682494, - "action": "CARVE_LEFT" - }, - { - "x": 119.58585662413104, - "y": -780.3274495053579, - "rotation": 6.278725010765846, - "action": "CARVE_LEFT" - }, - { - "x": 119.47418089893054, - "y": -784.4096514278284, - "rotation": 6.240067753391782, - "action": "CARVE_LEFT" - }, - { - "x": 119.26155996980097, - "y": -788.4092197010989, - "rotation": 6.201305152002553, - "action": "CARVE_LEFT" - }, - { - "x": 118.94725332420015, - "y": -792.324927437967, - "rotation": 6.1624422164654105, - "action": "CARVE_LEFT" - }, - { - "x": 118.53057067569043, - "y": -796.1555940649778, - "rotation": 6.1234839590501915, - "action": "CARVE_LEFT" - }, - { - "x": 118.01087229472638, - "y": -799.9000856961258, - "rotation": 6.084435393803952, - "action": "CARVE_LEFT" - }, - { - "x": 117.3875693130238, - "y": -803.5573154819749, - "rotation": 6.0453015359266224, - "action": "CARVE_LEFT" - }, - { - "x": 116.66012400144184, - "y": -807.1262439341266, - "rotation": 6.006087401147774, - "action": "CARVE_LEFT" - }, - { - "x": 115.82805002132353, - "y": -810.605879224977, - "rotation": 5.966798005104562, - "action": "CARVE_LEFT" - }, - { - "x": 114.89091264925318, - "y": -813.9952774627158, - "rotation": 5.927438362720931, - "action": "CARVE_LEFT" - }, - { - "x": 113.8483289752027, - "y": -817.2935429415342, - "rotation": 5.888013487588143, - "action": "CARVE_LEFT" - }, - { - "x": 112.69996807405231, - "y": -820.49982836702, - "rotation": 5.848528391346712, - "action": "CARVE_LEFT" - }, - { - "x": 111.44555115048394, - "y": -823.6133350567297, - "rotation": 5.80898808306982, - "action": "CARVE_LEFT" - }, - { - "x": 110.08485165725968, - "y": -826.6333131159427, - "rotation": 5.769397568648275, - "action": "CARVE_LEFT" - }, - { - "x": 108.61769538690994, - "y": -829.5590615886102, - "rotation": 5.729761850177105, - "action": "CARVE_LEFT" - }, - { - "x": 107.0439605368698, - "y": -832.3899285835299, - "rotation": 5.690085925343839, - "action": "CARVE_LEFT" - }, - { - "x": 105.36357774811468, - "y": -835.1253113757828, - "rotation": 5.650374786818561, - "action": "CARVE_LEFT" - }, - { - "x": 103.57653011735977, - "y": -837.7646564834857, - "rotation": 5.610633421645806, - "action": "CARVE_LEFT" - }, - { - "x": 101.68285318290025, - "y": -840.3074597199239, - "rotation": 5.570866810638368, - "action": "CARVE_LEFT" - }, - { - "x": 99.68263488418236, - "y": -842.7532662211369, - "rotation": 5.531079927773087, - "action": "CARVE_LEFT" - }, - { - "x": 97.5760154952081, - "y": -845.1016704490479, - "rotation": 5.491277739588701, - "action": "CARVE_LEFT" - }, - { - "x": 95.3631875318888, - "y": -847.3523161702346, - "rotation": 5.451465204585813, - "action": "CARVE_LEFT" - }, - { - "x": 93.04439563347559, - "y": -849.5048964104523, - "rotation": 5.411647272629061, - "action": "NOTHING" - }, - { - "x": 90.47780427560556, - "y": -851.428828548595, - "rotation": 5.415137931133049, - "action": "NOTHING" - }, - { - "x": 87.9210340288725, - "y": -853.3626952250104, - "rotation": 5.418628589637038, - "action": "NOTHING" - }, - { - "x": 85.37406229751295, - "y": -855.3065205025283, - "rotation": 5.422119248141026, - "action": "NOTHING" - }, - { - "x": 82.8368668627027, - "y": -857.2603287030266, - "rotation": 5.425609906645015, - "action": "NOTHING" - }, - { - "x": 80.30942588158734, - "y": -859.2241444067137, - "rotation": 5.429100565149003, - "action": "NOTHING" - }, - { - "x": 77.7917178863153, - "y": -861.1979924514125, - "rotation": 5.432591223652992, - "action": "NOTHING" - }, - { "x": 75.28372178307315, "y": -863.181897931847, "rotation": 5.43608188215698, "action": "NOTHING" }, - { - "x": 72.7854168511234, - "y": -865.1758861989293, - "rotation": 5.4395725406609685, - "action": "NOTHING" - }, - { - "x": 70.29678274184452, - "y": -867.1799828590504, - "rotation": 5.443063199164957, - "action": "NOTHING" - }, - { - "x": 67.81779947777338, - "y": -869.1942137733705, - "rotation": 5.446553857668945, - "action": "NOTHING" - }, - { - "x": 65.34844745164997, - "y": -871.2186050571131, - "rotation": 5.450044516172934, - "action": "NOTHING" - }, - { - "x": 62.88870742546457, - "y": -873.2531830788599, - "rotation": 5.453535174676922, - "action": "NOTHING" - }, - { - "x": 60.4385605295071, - "y": -875.2979744598478, - "rotation": 5.457025833180911, - "action": "NOTHING" - }, - { - "x": 57.99798826141893, - "y": -877.3530060732671, - "rotation": 5.460516491684899, - "action": "NOTHING" - }, - { - "x": 55.56697248524694, - "y": -879.418305043563, - "rotation": 5.464007150188888, - "action": "CARVE_RIGHT" - }, - { - "x": 53.4852162957678, - "y": -881.8082428273575, - "rotation": 5.503979545225411, - "action": "CARVE_RIGHT" - }, - { - "x": 51.50946753946593, - "y": -884.2981179949163, - "rotation": 5.543963519271238, - "action": "CARVE_RIGHT" - }, - { - "x": 49.639628711376425, - "y": -886.8883714661881, - "rotation": 5.583963999565139, - "action": "CARVE_RIGHT" - }, - { - "x": 47.87565530308828, - "y": -889.5794924560406, - "rotation": 5.623985905535033, - "action": "CARVE_RIGHT" - }, - { - "x": 46.21755575448715, - "y": -892.3720184968014, - "rotation": 5.664034149422689, - "action": "CARVE_RIGHT" - }, - { - "x": 44.66539143151605, - "y": -895.2665354846674, - "rotation": 5.704113636906277, - "action": "CARVE_RIGHT" - }, - { - "x": 43.21927662986277, - "y": -898.2636777499079, - "rotation": 5.744229267720864, - "action": "NOTHING" - }, - { - "x": 41.62098609290228, - "y": -901.1250856367989, - "rotation": 5.747719926224852, - "action": "NOTHING" - }, - { - "x": 40.03121076715219, - "y": -903.999583387289, - "rotation": 5.751210584728841, - "action": "NOTHING" - }, - { "x": 38.44996246469, "y": -906.8872181943361, "rotation": 5.754701243232829, "action": "NOTHING" }, - { - "x": 36.877253284809086, - "y": -909.788037444327, - "rotation": 5.758191901736818, - "action": "NOTHING" - }, - { - "x": 35.313095613270534, - "y": -912.7020887165297, - "rotation": 5.761682560240806, - "action": "NOTHING" - }, - { - "x": 33.757502121556925, - "y": -915.6294197825473, - "rotation": 5.765173218744795, - "action": "NOTHING" - }, - { - "x": 32.21048576612788, - "y": -918.570078605773, - "rotation": 5.768663877248783, - "action": "NOTHING" - }, - { - "x": 30.672059787677473, - "y": -921.5241133408466, - "rotation": 5.7721545357527715, - "action": "NOTHING" - }, - { - "x": 29.142237710393466, - "y": -924.4915723331128, - "rotation": 5.77564519425676, - "action": "NOTHING" - }, - { - "x": 27.62103334121837, - "y": -927.4725041180801, - "rotation": 5.779135852760748, - "action": "NOTHING" - }, - { - "x": 26.10846076911234, - "y": -930.466957420882, - "rotation": 5.782626511264737, - "action": "NOTHING" - }, - { - "x": 24.604534364317857, - "y": -933.4749811557389, - "rotation": 5.786117169768725, - "action": "NOTHING" - }, - { - "x": 23.109268777626255, - "y": -936.4966244254218, - "rotation": 5.789607828272714, - "action": "NOTHING" - }, - { - "x": 21.622678939646047, - "y": -939.5319365207175, - "rotation": 5.793098486776702, - "action": "NOTHING" - }, - { - "x": 20.144780060073046, - "y": -942.5809669198943, - "rotation": 5.796589145280691, - "action": "NOTHING" - }, - { - "x": 18.6755876269623, - "y": -945.6437652881702, - "rotation": 5.800079803784679, - "action": "NOTHING" - }, - { - "x": 17.21511740600181, - "y": -948.720381477182, - "rotation": 5.8035704622886675, - "action": "NOTHING" - }, - { - "x": 15.763385439788047, - "y": -951.8108655244555, - "rotation": 5.807061120792656, - "action": "NOTHING" - }, - { - "x": 14.320408047103264, - "y": -954.9152676528778, - "rotation": 5.810551779296644, - "action": "NOTHING" - }, - { "x": 12.88620182219457, "y": -958.03363827017, "rotation": 5.814042437800633, "action": "NOTHING" }, - { - "x": 11.4607836340548, - "y": -961.1660279683621, - "rotation": 5.817533096304621, - "action": "NOTHING" - }, - { - "x": 10.044170625705164, - "y": -964.3124875232689, - "rotation": 5.82102375480861, - "action": "CARVE_RIGHT" - }, - { - "x": 8.881615483144877, - "y": -967.6999428814111, - "rotation": 5.862310264455083, - "action": "CARVE_RIGHT" - }, - { - "x": 7.831771432055847, - "y": -971.1980585585762, - "rotation": 5.903650089637354, - "action": "CARVE_RIGHT" - }, - { - "x": 6.8950090995599655, - "y": -974.8077185841596, - "rotation": 5.945048241988424, - "action": "CARVE_RIGHT" - }, - { - "x": 6.071755360831267, - "y": -978.529858834114, - "rotation": 5.986509730339482, - "action": "CARVE_RIGHT" - }, - { - "x": 5.362493513576081, - "y": -982.3654672599092, - "rotation": 6.0280395613456585, - "action": "CARVE_RIGHT" - }, - { - "x": 4.767763479548296, - "y": -986.315584142369, - "rotation": 6.069642740110243, - "action": "CARVE_RIGHT" - }, - { - "x": 4.28816203311513, - "y": -990.3813023704071, - "rotation": 6.111324270807472, - "action": "NOTHING" - }, - { - "x": 3.7649687301181403, - "y": -994.4163872348664, - "rotation": 6.114814929311461, - "action": "NOTHING" - }, - { - "x": 3.2515162372517747, - "y": -998.4702480422717, - "rotation": 6.118305587815449, - "action": "NOTHING" - }, - { - "x": 2.7478483735405788, - "y": -1002.5429525191117, - "rotation": 6.1217962463194375, - "action": "NOTHING" - }, - { - "x": 2.2540091594086755, - "y": -1006.63456852405, - "rotation": 6.125286904823426, - "action": "NOTHING" - }, - { - "x": 1.7700428161468922, - "y": -1010.7451640475396, - "rotation": 6.128777563327414, - "action": "NOTHING" - }, - { - "x": 1.2959937653812115, - "y": -1014.8748072114394, - "rotation": 6.132268221831403, - "action": "NOTHING" - }, - { - "x": 0.8319066285425456, - "y": -1019.0235662686314, - "rotation": 6.135758880335391, - "action": "NOTHING" - }, - { - "x": 0.37782622633783036, - "y": -1023.1915096026391, - "rotation": 6.13924953883938, - "action": "NOTHING" - }, - { - "x": -0.06620242177756508, - "y": -1027.3787057272466, - "rotation": 6.142740197343368, - "action": "NOTHING" - }, - { - "x": -0.5001340981261146, - "y": -1031.5852232861184, - "rotation": 6.146230855847357, - "action": "NOTHING" - }, - { - "x": -0.9239233873331014, - "y": -1035.8111310524216, - "rotation": 6.149721514351345, - "action": "NOTHING" - }, - { - "x": -1.3375246768502775, - "y": -1040.0564979284475, - "rotation": 6.1532121728553335, - "action": "NOTHING" - }, - { - "x": -1.7408921574782197, - "y": -1044.3213929452345, - "rotation": 6.156702831359322, - "action": "NOTHING" - }, - { - "x": -2.133979823887384, - "y": -1048.6058852621934, - "rotation": 6.16019348986331, - "action": "NOTHING" - }, - { - "x": -2.516741475137864, - "y": -1052.9100441667313, - "rotation": 6.163684148367299, - "action": "NOTHING" - }, - { - "x": -2.889130715197851, - "y": -1057.233939073879, - "rotation": 6.167174806871287, - "action": "NOTHING" - }, - { - "x": -3.2511009534608086, - "y": -1061.5776395259168, - "rotation": 6.170665465375276, - "action": "NOTHING" - }, - { - "x": -3.602605405261354, - "y": -1065.9412151920044, - "rotation": 6.174156123879264, - "action": "CARVE_RIGHT" - }, - { - "x": -3.79336751811569, - "y": -1070.4636712069532, - "rotation": 6.217581023963035, - "action": "CARVE_RIGHT" - }, - { - "x": -3.857734509447077, - "y": -1075.1137662937663, - "rotation": 6.261098948705289, - "action": "CARVE_RIGHT" - }, - { - "x": -3.7948484130216724, - "y": -1079.775825359133, - "rotation": 0.021529792810661696, - "action": "CARVE_RIGHT" - }, - { - "x": -3.6038747132899345, - "y": -1084.3292719693386, - "rotation": 0.06524404309336956, - "action": "CARVE_RIGHT" - }, - { - "x": -3.284042671335396, - "y": -1088.7727868498982, - "rotation": 0.10905078393532003, - "action": "CARVE_RIGHT" - }, - { - "x": -2.8346456636096957, - "y": -1093.1051101421378, - "rotation": 0.15294440666367132, - "action": "CARVE_RIGHT" - }, - { - "x": -2.255041487434008, - "y": -1097.3250417609431, - "rotation": 0.19691930306612238, - "action": "CARVE_RIGHT" - }, - { - "x": -1.544652633222737, - "y": -1101.4314417215296, - "rotation": 0.24096986608434184, - "action": "CARVE_RIGHT" - }, - { - "x": -0.7029665234020471, - "y": -1105.4232304352015, - "rotation": 0.2850904905058673, - "action": "CARVE_RIGHT" - }, - { - "x": 0.27046428198751993, - "y": -1109.2993889740787, - "rotation": 0.3292755736543924, - "action": "CARVE_RIGHT" - }, - { - "x": 1.3760219129985027, - "y": -1113.05895930479, - "rotation": 0.37351951607835904, - "action": "CARVE_RIGHT" - }, - { - "x": 2.614023050771661, - "y": -1116.7010444911434, - "rotation": 0.41781672223777333, - "action": "CARVE_RIGHT" - }, - { - "x": 3.9847188217799463, - "y": -1120.2248088658007, - "rotation": 0.46216160118916366, - "action": "CARVE_RIGHT" - }, - { - "x": 5.488294725266073, - "y": -1123.6294781709996, - "rotation": 0.5065485672685998, - "action": "CARVE_RIGHT" - }, - { - "x": 7.124870593802154, - "y": -1126.9143396683812, - "rotation": 0.5509720407726919, - "action": "NOTHING" - }, - { - "x": 8.933303628847883, - "y": -1130.0441544537557, - "rotation": 0.5474813822687032, - "action": "NOTHING" - }, - { - "x": 10.731746883882943, - "y": -1133.1873378355353, - "rotation": 0.5439907237647146, - "action": "NOTHING" - }, - { - "x": 12.520194869694633, - "y": -1136.343933325391, - "rotation": 0.5405000652607259, - "action": "NOTHING" - }, - { - "x": 14.298641792003373, - "y": -1139.5139846406043, - "rotation": 0.5370094067567373, - "action": "NOTHING" - }, - { - "x": 16.06708155225694, - "y": -1142.6975357034873, - "rotation": 0.5335187482527486, - "action": "NOTHING" - }, - { - "x": 17.825507748422723, - "y": -1145.8946306408006, - "rotation": 0.5300280897487599, - "action": "NOTHING" - }, - { - "x": 19.573913675778048, - "y": -1149.105313783176, - "rotation": 0.5265374312447713, - "action": "NOTHING" - }, - { - "x": 21.31229232769854, - "y": -1152.3296296645383, - "rotation": 0.5230467727407826, - "action": "NOTHING" - }, - { - "x": 23.04063639644455, - "y": -1155.5676230215304, - "rotation": 0.5195561142367939, - "action": "NOTHING" - }, - { - "x": 24.75893827394565, - "y": -1158.8193387929389, - "rotation": 0.5160654557328053, - "action": "NOTHING" - }, - { - "x": 26.46719005258317, - "y": -1162.0848221191213, - "rotation": 0.5125747972288166, - "action": "NOTHING" - }, - { - "x": 28.165383525970846, - "y": -1165.3641183414347, - "rotation": 0.5090841387248279, - "action": "NOTHING" - }, - { - "x": 29.853510189733502, - "y": -1168.657273001666, - "rotation": 0.5055934802208393, - "action": "NOTHING" - }, - { - "x": 31.531561242283843, - "y": -1171.964331841464, - "rotation": 0.5021028217168506, - "action": "NOTHING" - }, - { - "x": 33.19952758559731, - "y": -1175.2853408017722, - "rotation": 0.49861216321286195, - "action": "NOTHING" - }, - { - "x": 34.85739982598505, - "y": -1178.6203460222641, - "rotation": 0.4951215047088733, - "action": "NOTHING" - }, - { - "x": 36.50516827486494, - "y": -1181.9693938407784, - "rotation": 0.4916308462048846, - "action": "NOTHING" - }, - { - "x": 38.14282294953078, - "y": -1185.332530792757, - "rotation": 0.48814018770089596, - "action": "NOTHING" - }, - { - "x": 39.77035357391949, - "y": -1188.709803610685, - "rotation": 0.4846495291969073, - "action": "NOTHING" - }, - { - "x": 41.38774957937651, - "y": -1192.101259223529, - "rotation": 0.4811588706929186, - "action": "NOTHING" - }, - { - "x": 42.99500010541924, - "y": -1195.5069447561814, - "rotation": 0.47766821218892996, - "action": "NOTHING" - }, - { - "x": 44.59209400049864, - "y": -1198.9269075289023, - "rotation": 0.4741775536849413, - "action": "NOTHING" - }, - { - "x": 46.17901982275896, - "y": -1202.3611950567652, - "rotation": 0.47068689518095264, - "action": "NOTHING" - }, - { - "x": 47.75576584079553, - "y": -1205.8098550491025, - "rotation": 0.46719623667696397, - "action": "NOTHING" - }, - { - "x": 49.32232003441076, - "y": -1209.2729354089538, - "rotation": 0.4637055781729753, - "action": "NOTHING" - }, - { - "x": 50.8786700953682, - "y": -1212.750484232515, - "rotation": 0.46021491966898664, - "action": "CARVE_LEFT" - }, - { - "x": 52.142532617369376, - "y": -1216.5037716704178, - "rotation": 0.41483635911713407, - "action": "CARVE_LEFT" - }, - { - "x": 53.26940292498056, - "y": -1220.3894174033144, - "rotation": 0.3694577985652815, - "action": "CARVE_LEFT" - }, - { - "x": 54.259090820082044, - "y": -1224.4081931799378, - "rotation": 0.3240792380134289, - "action": "CARVE_LEFT" - }, - { - "x": 55.11135572244817, - "y": -1228.56091620784, - "rotation": 0.27870067746157634, - "action": "CARVE_LEFT" - }, - { - "x": 55.82590680389573, - "y": -1232.8484490315632, - "rotation": 0.23332211690972376, - "action": "CARVE_LEFT" - }, - { - "x": 56.40240312209733, - "y": -1237.2716994111172, - "rotation": 0.1879435563578712, - "action": "CARVE_LEFT" - }, - { - "x": 56.8404537540605, - "y": -1241.8316202007597, - "rotation": 0.1425649958060186, - "action": "NOTHING" - }, - { - "x": 57.31614005537759, - "y": -1246.3659028150225, - "rotation": 0.13907433730202995, - "action": "NOTHING" - }, - { - "x": 57.78074816043823, - "y": -1250.9196809323598, - "rotation": 0.13558367879804128, - "action": "NOTHING" - }, - { - "x": 58.23423628756072, - "y": -1255.4930214303527, - "rotation": 0.13209302029405262, - "action": "NOTHING" - }, - { - "x": 58.676562447104025, - "y": -1260.0859913227553, - "rotation": 0.12860236179006396, - "action": "NOTHING" - }, - { - "x": 59.10768444201874, - "y": -1264.6986577590978, - "rotation": 0.1251117032860753, - "action": "NOTHING" - }, - { - "x": 59.52755986839668, - "y": -1269.3310880242902, - "rotation": 0.12162104478208663, - "action": "NOTHING" - }, - { - "x": 59.93614611601911, - "y": -1273.9833495382265, - "rotation": 0.11813038627809797, - "action": "NOTHING" - }, - { - "x": 60.3334003689036, - "y": -1278.6555098553906, - "rotation": 0.1146397277741093, - "action": "NOTHING" - }, - { - "x": 60.71927960584951, - "y": -1283.3476366644632, - "rotation": 0.11114906927012064, - "action": "NOTHING" - }, - { - "x": 61.093740600982144, - "y": -1288.0597977879293, - "rotation": 0.10765841076613197, - "action": "NOTHING" - }, - { - "x": 61.456739924295526, - "y": -1292.7920611816878, - "rotation": 0.10416775226214331, - "action": "NOTHING" - }, - { - "x": 61.808233942193816, - "y": -1297.5444949346604, - "rotation": 0.10067709375815465, - "action": "NOTHING" - }, - { - "x": 62.14817881803141, - "y": -1302.3171672684032, - "rotation": 0.09718643525416598, - "action": "NOTHING" - }, - { - "x": 62.47653051265166, - "y": -1307.1101465367185, - "rotation": 0.09369577675017732, - "action": "NOTHING" - }, - { - "x": 62.79324478492425, - "y": -1311.9235012252673, - "rotation": 0.09020511824618865, - "action": "CARVE_LEFT" - }, - { - "x": 62.93515722741394, - "y": -1316.9081969556905, - "rotation": 0.044826557694336085, - "action": "CARVE_LEFT" - }, - { - "x": 62.93340625388497, - "y": -1322.0327322520254, - "rotation": 6.2826333043220695, - "action": "CARVE_LEFT" - }, - { - "x": 62.78744468499109, - "y": -1327.0331728597814, - "rotation": 6.237254743770217, - "action": "CARVE_LEFT" - }, - { - "x": 62.49677807113798, - "y": -1331.908435421312, - "rotation": 6.191876183218365, - "action": "CARVE_LEFT" - }, - { - "x": 62.06096455189379, - "y": -1336.6574865237085, - "rotation": 6.146497622666512, - "action": "CARVE_LEFT" - }, - { - "x": 61.47961471575105, - "y": -1341.279342566446, - "rotation": 6.10111906211466, - "action": "CARVE_LEFT" - }, - { - "x": 60.75239146023924, - "y": -1345.7730696293622, - "rotation": 6.055740501562807, - "action": "CARVE_LEFT" - }, - { - "x": 59.87900985238707, - "y": -1350.137783340963, - "rotation": 6.010361941010955, - "action": "CARVE_LEFT" - }, - { - "x": 58.859236989533734, - "y": -1354.3726487470572, - "rotation": 5.964983380459103, - "action": "CARVE_LEFT" - }, - { - "x": 57.69289186048814, - "y": -1358.4768801797175, - "rotation": 5.91960481990725, - "action": "CARVE_LEFT" - }, - { - "x": 56.37984520703549, - "y": -1362.4497411265693, - "rotation": 5.874226259355398, - "action": "CARVE_LEFT" - }, - { - "x": 54.92001938579019, - "y": -1366.2905441004043, - "rotation": 5.828847698803545, - "action": "CARVE_LEFT" - }, - { - "x": 53.31338823039439, - "y": -1369.9986505091192, - "rotation": 5.783469138251693, - "action": "CARVE_LEFT" - }, - { - "x": 51.559976914061224, - "y": -1373.573470525978, - "rotation": 5.7380905776998405, - "action": "CARVE_LEFT" - }, - { - "x": 49.659861812462005, - "y": -1377.0144629601996, - "rotation": 5.692712017147988, - "action": "CARVE_LEFT" - }, - { - "x": 47.6131703669565, - "y": -1380.3211351278649, - "rotation": 5.647333456596136, - "action": "CARVE_LEFT" - }, - { - "x": 45.42008094816547, - "y": -1383.4930427231486, - "rotation": 5.601954896044283, - "action": "CARVE_LEFT" - }, - { - "x": 43.08082271988465, - "y": -1386.5297896898705, - "rotation": 5.556576335492431, - "action": "CARVE_LEFT" - }, - { - "x": 40.595675503339386, - "y": -1389.431028093368, - "rotation": 5.5111977749405785, - "action": "NOTHING" - }, - { - "x": 37.84671654384181, - "y": -1392.088317716819, - "rotation": 5.514688433444567, - "action": "NOTHING" - }, - { - "x": 35.11005064472617, - "y": -1394.757357179865, - "rotation": 5.518179091948555, - "action": "NOTHING" - }, - { - "x": 32.38565552038866, - "y": -1397.4381717796023, - "rotation": 5.521669750452544, - "action": "NOTHING" - }, - { - "x": 29.67350926381277, - "y": -1400.1307870718063, - "rotation": 5.525160408956532, - "action": "NOTHING" - }, - { - "x": 26.97359034559213, - "y": -1402.8352288702117, - "rotation": 5.528651067460521, - "action": "NOTHING" - }, - { - "x": 24.285877612955666, - "y": -1405.5515232457929, - "rotation": 5.532141725964509, - "action": "NOTHING" - }, - { - "x": 21.610350288795196, - "y": -1408.2796965260463, - "rotation": 5.535632384468498, - "action": "NOTHING" - }, - { - "x": 18.946987970695382, - "y": -1411.0197752942754, - "rotation": 5.539123042972486, - "action": "NOTHING" - }, - { - "x": 16.295770629966064, - "y": -1413.7717863888763, - "rotation": 5.5426137014764745, - "action": "NOTHING" - }, - { - "x": 13.656678610676984, - "y": -1416.5357569026264, - "rotation": 5.546104359980463, - "action": "NOTHING" - }, - { - "x": 11.029692628694837, - "y": -1419.311714181974, - "rotation": 5.549595018484451, - "action": "NOTHING" - }, - { - "x": 8.414793770722728, - "y": -1422.0996858263302, - "rotation": 5.55308567698844, - "action": "NOTHING" - }, - { - "x": 5.811963493341953, - "y": -1424.8996996873625, - "rotation": 5.556576335492428, - "action": "NOTHING" - }, - { - "x": 3.2211836220561403, - "y": -1427.7117838682902, - "rotation": 5.560066993996417, - "action": "NOTHING" - }, - { - "x": 0.6424363503377366, - "y": -1430.5359667231814, - "rotation": 5.563557652500405, - "action": "NOTHING" - }, - { - "x": -1.9242957613231702, - "y": -1433.3722768562525, - "rotation": 5.567048311004394, - "action": "NOTHING" - }, - { - "x": -4.479029786367697, - "y": -1436.2207431211682, - "rotation": 5.570538969508382, - "action": "NOTHING" - }, - { - "x": -7.021782433114682, - "y": -1439.0813946203448, - "rotation": 5.5740296280123705, - "action": "NOTHING" - }, - { - "x": -9.55257004570488, - "y": -1441.9542607042545, - "rotation": 5.577520286516359, - "action": "NOTHING" - }, - { - "x": -12.07140860504284, - "y": -1444.8393709707311, - "rotation": 5.581010945020347, - "action": "NOTHING" - }, - { - "x": -14.578313729736479, - "y": -1447.7367552642788, - "rotation": 5.584501603524336, - "action": "CARVE_RIGHT" - }, - { - "x": -16.68844657533295, - "y": -1451.0026500658455, - "rotation": 5.629880164076188, - "action": "CARVE_RIGHT" - }, - { - "x": -18.65266163026374, - "y": -1454.4053871100878, - "rotation": 5.675258724628041, - "action": "CARVE_RIGHT" - }, - { - "x": -20.471071534274287, - "y": -1457.9454653012574, - "rotation": 5.720637285179893, - "action": "CARVE_RIGHT" - }, - { - "x": -22.143737727441497, - "y": -1461.6234297443057, - "rotation": 5.766015845731745, - "action": "CARVE_RIGHT" - }, - { - "x": -23.670670586381068, - "y": -1465.439871621179, - "rotation": 5.811394406283598, - "action": "CARVE_RIGHT" - }, - { - "x": -25.05182956011476, - "y": -1469.3954280674232, - "rotation": 5.85677296683545, - "action": "CARVE_RIGHT" - }, - { - "x": -26.287123305598495, - "y": -1473.490782049098, - "rotation": 5.902151527387303, - "action": "CARVE_RIGHT" - }, - { - "x": -27.376409822911988, - "y": -1477.7266622400002, - "rotation": 5.947530087939155, - "action": "CARVE_RIGHT" - }, - { - "x": -28.31949659011084, - "y": -1482.1038428991935, - "rotation": 5.9929086484910075, - "action": "NOTHING" - }, - { - "x": -29.35608402217509, - "y": -1486.4011140040006, - "rotation": 5.996399306994996, - "action": "NOTHING" - }, - { - "x": -30.381359201125154, - "y": -1490.715557888947, - "rotation": 5.999889965498984, - "action": "NOTHING" - }, - { - "x": -31.395296374710572, - "y": -1495.047231668432, - "rotation": 6.003380624002973, - "action": "NOTHING" - }, - { - "x": -32.397869538497744, - "y": -1499.396192623819, - "rotation": 6.006871282506961, - "action": "NOTHING" - }, - { - "x": -33.38905243653367, - "y": -1503.7624982029527, - "rotation": 6.01036194101095, - "action": "NOTHING" - }, - { - "x": -34.36881856200804, - "y": -1508.1462060196802, - "rotation": 6.013852599514938, - "action": "NOTHING" - }, - { - "x": -35.3371411579137, - "y": -1512.547373853371, - "rotation": 6.0173432580189266, - "action": "NOTHING" - }, - { - "x": -36.29399321770546, - "y": -1516.9660596484396, - "rotation": 6.020833916522915, - "action": "NOTHING" - }, - { - "x": -37.23934748595729, - "y": -1521.4023215138689, - "rotation": 6.024324575026903, - "action": "NOTHING" - }, - { - "x": -38.17317645901782, - "y": -1525.8562177227352, - "rotation": 6.027815233530892, - "action": "NOTHING" - }, - { - "x": -39.09545238566432, - "y": -1530.3278067117344, - "rotation": 6.03130589203488, - "action": "NOTHING" - }, - { - "x": -40.00614726775498, - "y": -1534.8171470807085, - "rotation": 6.034796550538869, - "action": "NOTHING" - }, - { - "x": -40.90523286087958, - "y": -1539.3242975921746, - "rotation": 6.038287209042857, - "action": "NOTHING" - }, - { - "x": -41.792680675008555, - "y": -1543.8493171708549, - "rotation": 6.041777867546846, - "action": "NOTHING" - }, - { - "x": -42.66846197514048, - "y": -1548.392264903207, - "rotation": 6.045268526050834, - "action": "NOTHING" - }, - { - "x": -43.53254778194788, - "y": -1552.9532000369563, - "rotation": 6.0487591845548225, - "action": "NOTHING" - }, - { - "x": -44.38490887242151, - "y": -1557.5321819806295, - "rotation": 6.052249843058811, - "action": "NOTHING" - }, - { - "x": -45.225515780512964, - "y": -1562.1292703030892, - "rotation": 6.055740501562799, - "action": "NOTHING" - }, - { - "x": -46.05433879777574, - "y": -1566.74452473307, - "rotation": 6.059231160066788, - "action": "CARVE_LEFT" - }, - { - "x": -46.95241421272115, - "y": -1571.3015904932365, - "rotation": 6.0138525995149354, - "action": "CARVE_LEFT" - }, - { - "x": -48.00283712167314, - "y": -1575.7229091450774, - "rotation": 5.968474038963083, - "action": "CARVE_LEFT" - }, - { - "x": -49.20576848952809, - "y": -1580.007714349583, - "rotation": 5.923095478411231, - "action": "CARVE_LEFT" - }, - { - "x": -50.56131758980795, - "y": -1584.155288864722, - "rotation": 5.877716917859378, - "action": "CARVE_LEFT" - }, - { - "x": -52.06954214264103, - "y": -1588.164964415213, - "rotation": 5.832338357307526, - "action": "CARVE_LEFT" - }, - { - "x": -53.73044845239773, - "y": -1592.0361215626192, - "rotation": 5.786959796755673, - "action": "CARVE_LEFT" - }, - { - "x": -55.54399154498185, - "y": -1595.7681895757673, - "rotation": 5.741581236203821, - "action": "NOTHING" - }, - { - "x": -57.54715616520744, - "y": -1599.3276655047964, - "rotation": 5.745071894707809, - "action": "NOTHING" - }, - { - "x": -59.53843816510285, - "y": -1602.9011679643531, - "rotation": 5.748562553211798, - "action": "CARVE_RIGHT" - }, - { - "x": -61.17936011912381, - "y": -1606.8020025965475, - "rotation": 5.79394111376365, - "action": "CARVE_RIGHT" - }, - { - "x": -62.669050996235015, - "y": -1610.8463915436332, - "rotation": 5.839319674315503, - "action": "CARVE_RIGHT" - }, - { - "x": -64.00746065626801, - "y": -1615.034980847279, - "rotation": 5.884698234867355, - "action": "CARVE_RIGHT" - }, - { - "x": -65.19448818540342, - "y": -1619.3684623625622, - "rotation": 5.9300767954192075, - "action": "CARVE_RIGHT" - }, - { - "x": -66.22998203132526, - "y": -1623.847573635224, - "rotation": 5.97545535597106, - "action": "CARVE_RIGHT" - }, - { - "x": -67.11374013803791, - "y": -1628.473097779233, - "rotation": 6.020833916522912, - "action": "CARVE_RIGHT" - }, - { - "x": -67.84551008034607, - "y": -1633.2458633546555, - "rotation": 6.066212477074765, - "action": "CARVE_RIGHT" - }, - { - "x": -68.42498919799914, - "y": -1638.166744245832, - "rotation": 6.111591037626617, - "action": "CARVE_RIGHT" - }, - { - "x": -68.85182472950021, - "y": -1643.2366595398587, - "rotation": 6.15696959817847, - "action": "CARVE_RIGHT" - }, - { - "x": -69.125613945581, - "y": -1648.4565734053751, - "rotation": 6.202348158730322, - "action": "CARVE_RIGHT" - }, - { - "x": -69.24590428234309, - "y": -1653.8274949716542, - "rotation": 6.247726719282174, - "action": "CARVE_RIGHT" - }, - { - "x": -69.21219510222542, - "y": -1659.2877870522861, - "rotation": 0.009919972654440556, - "action": "CARVE_RIGHT" - }, - { - "x": -69.02399096627352, - "y": -1664.6136059523853, - "rotation": 0.055298533206293125, - "action": "CARVE_RIGHT" - }, - { - "x": -68.6808490137347, - "y": -1669.803917793624, - "rotation": 0.1006770937581457, - "action": "CARVE_RIGHT" - }, - { - "x": -68.18237882186784, - "y": -1674.857738499032, - "rotation": 0.14605565430999826, - "action": "CARVE_RIGHT" - }, - { - "x": -67.52824226610355, - "y": -1679.774133661022, - "rotation": 0.19143421486185083, - "action": "CARVE_RIGHT" - }, - { - "x": -66.71815338055397, - "y": -1684.5522184097404, - "rotation": 0.2368127754137034, - "action": "CARVE_RIGHT" - }, - { - "x": -65.75187821887137, - "y": -1689.1911572817478, - "rotation": 0.28219133596555596, - "action": "CARVE_RIGHT" - }, - { - "x": -64.62923471545463, - "y": -1693.6901640890258, - "rotation": 0.32756989651740853, - "action": "CARVE_RIGHT" - }, - { - "x": -63.350092547002845, - "y": -1698.048501788311, - "rotation": 0.3729484570692611, - "action": "CARVE_RIGHT" - }, - { - "x": -61.914372994415196, - "y": -1702.2654823507537, - "rotation": 0.4183270176211137, - "action": "CARVE_RIGHT" - }, - { - "x": -60.32204880503623, - "y": -1706.340466631902, - "rotation": 0.46370557817296626, - "action": "CARVE_RIGHT" - }, - { - "x": -58.57314405524577, - "y": -1710.2728642420095, - "rotation": 0.5090841387248188, - "action": "CARVE_RIGHT" - }, - { - "x": -56.66773401339256, - "y": -1714.0621334166663, - "rotation": 0.5544626992766714, - "action": "CARVE_RIGHT" - }, - { - "x": -54.60594500307092, - "y": -1717.7077808877525, - "rotation": 0.5998412598285239, - "action": "CARVE_RIGHT" - }, - { - "x": -52.38795426673945, - "y": -1721.209361754714, - "rotation": 0.6452198203803764, - "action": "CARVE_RIGHT" - }, - { - "x": -50.0139898296811, - "y": -1724.5664793561584, - "rotation": 0.6905983809322289, - "action": "CARVE_RIGHT" - }, - { - "x": -47.484330364303716, - "y": -1727.7787851417704, - "rotation": 0.7359769414840814, - "action": "NOTHING" - }, - { - "x": -44.686879161981196, - "y": -1730.7432338289939, - "rotation": 0.7324862829800928, - "action": "NOTHING" - }, - { - "x": -41.90268667623433, - "y": -1733.7201037894768, - "rotation": 0.7289956244761041, - "action": "NOTHING" - }, - { - "x": -39.131730467599425, - "y": -1736.7094206232366, - "rotation": 0.7255049659721154, - "action": "NOTHING" - }, - { - "x": -36.37398847657461, - "y": -1739.711210189353, - "rotation": 0.7220143074681268, - "action": "NOTHING" - }, - { - "x": -33.62943902263777, - "y": -1742.7254986052442, - "rotation": 0.7185236489641381, - "action": "NOTHING" - }, - { - "x": -30.89806080326684, - "y": -1745.7523122459436, - "rotation": 0.7150329904601495, - "action": "NOTHING" - }, - { - "x": -28.17983289296256, - "y": -1748.7916777433813, - "rotation": 0.7115423319561608, - "action": "NOTHING" - }, - { - "x": -25.474734742273554, - "y": -1751.843621985665, - "rotation": 0.7080516734521721, - "action": "NOTHING" - }, - { - "x": -22.782746176823878, - "y": -1754.9081721163636, - "rotation": 0.7045610149481835, - "action": "NOTHING" - }, - { - "x": -20.103847396342886, - "y": -1757.9853555337925, - "rotation": 0.7010703564441948, - "action": "NOTHING" - }, - { - "x": -17.438018973697524, - "y": -1761.0751998903013, - "rotation": 0.6975796979402061, - "action": "NOTHING" - }, - { - "x": -14.785241853926978, - "y": -1764.177733091563, - "rotation": 0.6940890394362175, - "action": "NOTHING" - }, - { - "x": -12.145497353279689, - "y": -1767.2929832958637, - "rotation": 0.6905983809322288, - "action": "NOTHING" - }, - { - "x": -9.518767158252738, - "y": -1770.420978913397, - "rotation": 0.6871077224282401, - "action": "NOTHING" - }, - { - "x": -6.905033324633587, - "y": -1773.5617486055573, - "rotation": 0.6836170639242515, - "action": "NOTHING" - }, - { - "x": -4.304278276544171, - "y": -1776.715321284237, - "rotation": 0.6801264054202628, - "action": "NOTHING" - }, - { - "x": -1.7164848054873376, - "y": -1779.881726111124, - "rotation": 0.6766357469162742, - "action": "NOTHING" - }, - { - "x": 0.8583639306043742, - "y": -1783.060992497002, - "rotation": 0.6731450884122855, - "action": "NOTHING" - }, - { - "x": 3.4202844083176185, - "y": -1786.2531501010521, - "rotation": 0.6696544299082968, - "action": "NOTHING" - }, - { - "x": 5.969292739704796, - "y": -1789.4582288301574, - "rotation": 0.6661637714043082, - "action": "NOTHING" - }, - { - "x": 8.50540467322829, - "y": -1792.6762588382064, - "rotation": 0.6626731129003195, - "action": "NOTHING" - }, - { - "x": 11.028635594702365, - "y": -1795.907270525402, - "rotation": 0.6591824543963308, - "action": "NOTHING" - }, - { - "x": 13.539000528232785, - "y": -1799.1512945375698, - "rotation": 0.6556917958923422, - "action": "NOTHING" - }, - { - "x": 16.036514137154086, - "y": -1802.408361765468, - "rotation": 0.6522011373883535, - "action": "NOTHING" - }, - { - "x": 18.521190724964576, - "y": -1805.6785033441017, - "rotation": 0.6487104788843648, - "action": "NOTHING" - }, - { - "x": 20.993044236259024, - "y": -1808.9617506520353, - "rotation": 0.6452198203803762, - "action": "NOTHING" - }, - { - "x": 23.452088257659057, - "y": -1812.2581353107096, - "rotation": 0.6417291618763875, - "action": "NOTHING" - }, - { - "x": 25.898336018741272, - "y": -1815.5676891837595, - "rotation": 0.6382385033723988, - "action": "NOTHING" - }, - { - "x": 28.33180039296308, - "y": -1818.8904443763333, - "rotation": 0.6347478448684102, - "action": "NOTHING" - }, - { - "x": 30.752493898586252, - "y": -1822.2264332344143, - "rotation": 0.6312571863644215, - "action": "NOTHING" - }, - { - "x": 33.16042869959822, - "y": -1825.5756883441434, - "rotation": 0.6277665278604329, - "action": "NOTHING" - }, - { - "x": 35.5556166066311, - "y": -1828.938242531144, - "rotation": 0.6242758693564442, - "action": "CARVE_LEFT" - }, - { - "x": 37.5550918472244, - "y": -1832.668597406751, - "rotation": 0.5788973088045917, - "action": "CARVE_LEFT" - }, - { - "x": 39.39849394360638, - "y": -1836.5454683909804, - "rotation": 0.5335187482527392, - "action": "CARVE_LEFT" - }, - { - "x": 41.0858923927801, - "y": -1840.569393793546, - "rotation": 0.4881401877008866, - "action": "CARVE_LEFT" - }, - { - "x": 42.617305593541104, - "y": -1844.7409580319986, - "rotation": 0.442761627149034, - "action": "CARVE_LEFT" - }, - { - "x": 43.99270098245144, - "y": -1849.060791508236, - "rotation": 0.3973830665971814, - "action": "CARVE_LEFT" - }, - { - "x": 45.21199516947421, - "y": -1853.5295704853202, - "rotation": 0.35200450604532885, - "action": "CARVE_LEFT" - }, - { - "x": 46.27505407326942, - "y": -1858.1480169646047, - "rotation": 0.30662594549347627, - "action": "CARVE_LEFT" - }, - { - "x": 47.18169305615198, - "y": -1862.91689856317, - "rotation": 0.2612473849416237, - "action": "CARVE_LEFT" - }, - { - "x": 47.93167705871254, - "y": -1867.8370283915656, - "rotation": 0.21586882438977112, - "action": "CARVE_LEFT" - }, - { - "x": 48.524720734102196, - "y": -1872.909264931859, - "rotation": 0.17049026383791854, - "action": "CARVE_LEFT" - }, - { - "x": 48.96048858198167, - "y": -1878.1345119159912, - "rotation": 0.12511170328606597, - "action": "CARVE_LEFT" - }, - { - "x": 49.238595082135866, - "y": -1883.5137182044355, - "rotation": 0.07973314273421339, - "action": "CARVE_LEFT" - }, - { - "x": 49.358604827754554, - "y": -1889.0478776651628, - "rotation": 0.03435458218236082, - "action": "CARVE_LEFT" - }, - { - "x": 49.32003466910425, - "y": -1894.666306211935, - "rotation": 6.272161328810094, - "action": "CARVE_LEFT" - }, - { - "x": 49.12240870505778, - "y": -1900.1456985351074, - "rotation": 6.226782768258242, - "action": "CARVE_LEFT" - }, - { - "x": 48.76530355451777, - "y": -1905.485039473138, - "rotation": 6.1814042077063895, - "action": "CARVE_LEFT" - }, - { - "x": 48.24834821638097, - "y": -1910.6833636107635, - "rotation": 6.136025647154537, - "action": "CARVE_LEFT" - }, - { - "x": 47.57122392985256, - "y": -1915.7397551471684, - "rotation": 6.090647086602685, - "action": "CARVE_LEFT" - }, - { - "x": 46.73366403510975, - "y": -1920.653347764481, - "rotation": 6.045268526050832, - "action": "CARVE_LEFT" - }, - { - "x": 45.735453834313724, - "y": -1925.4233244965997, - "rotation": 5.99988996549898, - "action": "CARVE_LEFT" - }, - { - "x": 44.57643045296916, - "y": -1930.0489175983435, - "rotation": 5.9545114049471275, - "action": "CARVE_LEFT" - }, - { - "x": 43.25648270163042, - "y": -1934.5294084149298, - "rotation": 5.909132844395275, - "action": "CARVE_LEFT" - }, - { - "x": 41.77555093795365, - "y": -1938.8641272517775, - "rotation": 5.863754283843423, - "action": "CARVE_LEFT" - }, - { - "x": 40.13362692909398, - "y": -1943.0524532446332, - "rotation": 5.81837572329157, - "action": "CARVE_LEFT" - }, - { - "x": 38.330753714446814, - "y": -1947.093814230023, - "rotation": 5.772997162739718, - "action": "CARVE_LEFT" - }, - { - "x": 36.36702546873269, - "y": -1950.987686616026, - "rotation": 5.7276186021878654, - "action": "CARVE_LEFT" - }, - { - "x": 34.242587365424555, - "y": -1954.733595253369, - "rotation": 5.682240041636013, - "action": "CARVE_LEFT" - }, - { - "x": 31.95763544051688, - "y": -1958.331113306845, - "rotation": 5.636861481084161, - "action": "CARVE_LEFT" - }, - { - "x": 29.51241645663569, - "y": -1961.7798621270506, - "rotation": 5.591482920532308, - "action": "CARVE_LEFT" - }, - { - "x": 26.907227767488678, - "y": -1965.0795111224427, - "rotation": 5.546104359980456, - "action": "CARVE_LEFT" - }, - { - "x": 24.142417182654636, - "y": -1968.2297776317155, - "rotation": 5.500725799428603, - "action": "CARVE_LEFT" - }, - { - "x": 21.218382832711352, - "y": -1971.2304267964955, - "rotation": 5.455347238876751, - "action": "NOTHING" - }, - { - "x": 17.983969589062855, - "y": -1973.9422512069102, - "rotation": 5.458837897380739, - "action": "NOTHING" - }, - { - "x": 14.764035300573479, - "y": -1976.6660947079101, - "rotation": 5.462328555884728, - "action": "NOTHING" - }, - { - "x": 11.558545522930952, - "y": -1979.4019748479789, - "rotation": 5.465819214388716, - "action": "NOTHING" - }, - { - "x": 8.367466223133587, - "y": -1982.1499094575606, - "rotation": 5.469309872892705, - "action": "NOTHING" - }, - { - "x": 5.190763778430809, - "y": -1984.9099166482765, - "rotation": 5.472800531396693, - "action": "NOTHING" - }, - { - "x": 2.0284049752662945, - "y": -1987.6820148121437, - "rotation": 5.476291189900682, - "action": "NOTHING" - }, - { - "x": -1.1196429917763235, - "y": -1990.4662226207965, - "rotation": 5.47978184840467, - "action": "NOTHING" - }, - { - "x": -4.253412521025156, - "y": -1993.2625590247083, - "rotation": 5.4832725069086585, - "action": "NOTHING" - }, - { - "x": -7.372935604769196, - "y": -1996.0710432524165, - "rotation": 5.486763165412647, - "action": "NOTHING" - }, - { - "x": -10.47824383030487, - "y": -1998.8916948097506, - "rotation": 5.490253823916635, - "action": "NOTHING" - }, - { - "x": -13.569368380980054, - "y": -2001.724533479059, - "rotation": 5.493744482420624, - "action": "NOTHING" - }, - { - "x": -16.646340037235504, - "y": -2004.5695793184407, - "rotation": 5.497235140924612, - "action": "NOTHING" - }, - { - "x": -19.709189177643765, - "y": -2007.426852660978, - "rotation": 5.500725799428601, - "action": "NOTHING" - }, - { - "x": -22.75794577994551, - "y": -2010.2963741139715, - "rotation": 5.504216457932589, - "action": "NOTHING" - }, - { - "x": -25.792639422083354, - "y": -2013.1781645581755, - "rotation": 5.507707116436578, - "action": "NOTHING" - }, - { - "x": -28.81329928323315, - "y": -2016.0722451470378, - "rotation": 5.511197774940566, - "action": "NOTHING" - }, - { - "x": -31.819954144832725, - "y": -2018.9786373059396, - "rotation": 5.5146884334445545, - "action": "NOTHING" - }, - { - "x": -34.812632391608126, - "y": -2021.897362731438, - "rotation": 5.518179091948543, - "action": "NOTHING" - }, - { - "x": -37.79136201259735, - "y": -2024.8284433905108, - "rotation": 5.521669750452531, - "action": "NOTHING" - }, - { - "x": -40.75617060217152, - "y": -2027.771901519802, - "rotation": 5.52516040895652, - "action": "CARVE_RIGHT" - }, - { - "x": -43.26449435144821, - "y": -2031.1374261152466, - "rotation": 5.570538969508372, - "action": "CARVE_RIGHT" - }, - { - "x": -45.61309907131257, - "y": -2034.650841894649, - "rotation": 5.615917530060225, - "action": "CARVE_RIGHT" - }, - { - "x": -47.80221803836789, - "y": -2038.312539521433, - "rotation": 5.661296090612077, - "action": "CARVE_RIGHT" - }, - { - "x": -49.83203299131363, - "y": -2042.122956165984, - "rotation": 5.7066746511639295, - "action": "CARVE_RIGHT" - }, - { - "x": -51.70267426802317, - "y": -2046.0825753811507, - "rotation": 5.752053211715782, - "action": "CARVE_RIGHT" - }, - { - "x": -53.41422094227934, - "y": -2050.1919269780597, - "rotation": 5.797431772267634, - "action": "CARVE_RIGHT" - }, - { - "x": -54.96670096016863, - "y": -2054.4515869022425, - "rotation": 5.842810332819487, - "action": "NOTHING" - }, - { - "x": -56.67913654856535, - "y": -2058.5669048207837, - "rotation": 5.846300991323475, - "action": "NOTHING" - }, - { - "x": -58.37902351760748, - "y": -2062.697645972066, - "rotation": 5.849791649827464, - "action": "NOTHING" - }, - { - "x": -60.06635515227853, - "y": -2066.8438556320825, - "rotation": 5.853282308331452, - "action": "NOTHING" - }, - { - "x": -61.741124433439424, - "y": -2071.0055792803046, - "rotation": 5.8567729668354405, - "action": "NOTHING" - }, - { - "x": -63.40332403862379, - "y": -2075.182862599101, - "rotation": 5.860263625339429, - "action": "NOTHING" - }, - { - "x": -65.05294634283142, - "y": -2079.375751473161, - "rotation": 5.863754283843417, - "action": "NOTHING" - }, - { - "x": -66.68998341931963, - "y": -2083.584291988915, - "rotation": 5.867244942347406, - "action": "NOTHING" - }, - { - "x": -68.31442704039277, - "y": -2087.8085304339606, - "rotation": 5.870735600851394, - "action": "NOTHING" - }, - { - "x": -69.92626867818971, - "y": -2092.048513296487, - "rotation": 5.874226259355383, - "action": "NOTHING" - }, - { - "x": -71.52549950546945, - "y": -2096.304287264703, - "rotation": 5.877716917859371, - "action": "NOTHING" - }, - { - "x": -73.11211039639474, - "y": -2100.5758992262668, - "rotation": 5.88120757636336, - "action": "NOTHING" - }, - { - "x": -74.68609192731373, - "y": -2104.863396267714, - "rotation": 5.884698234867348, - "action": "NOTHING" - }, - { - "x": -76.2474343775398, - "y": -2109.166825673891, - "rotation": 5.888188893371336, - "action": "NOTHING" - }, - { - "x": -77.79612773012936, - "y": -2113.4862349273876, - "rotation": 5.891679551875325, - "action": "NOTHING" - }, - { - "x": -79.33216167265775, - "y": -2117.821671707972, - "rotation": 5.895170210379313, - "action": "NOTHING" - }, - { - "x": -80.85552559799325, - "y": -2122.1731838920277, - "rotation": 5.898660868883302, - "action": "NOTHING" - }, - { - "x": -82.36620860506916, - "y": -2126.5408195519885, - "rotation": 5.90215152738729, - "action": "NOTHING" - }, - { - "x": -83.86419949965395, - "y": -2130.924626955781, - "rotation": 5.905642185891279, - "action": "CARVE_RIGHT" - }, - { - "x": -85.05123367899743, - "y": -2135.6006748589684, - "rotation": 5.951020746443131, - "action": "CARVE_RIGHT" - }, - { - "x": -86.07697388290607, - "y": -2140.4309846820556, - "rotation": 5.9963993069949835, - "action": "CARVE_RIGHT" - }, - { - "x": -86.94123320488984, - "y": -2145.4163263219816, - "rotation": 6.041777867546836, - "action": "CARVE_RIGHT" - }, - { - "x": -87.64377431625267, - "y": -2150.5575151692424, - "rotation": 6.087156428098688, - "action": "CARVE_RIGHT" - }, - { - "x": -88.18430960038812, - "y": -2155.85541198593, - "rotation": 6.132534988650541, - "action": "CARVE_RIGHT" - }, - { - "x": -88.56250128673946, - "y": -2161.310922784079, - "rotation": 6.177913549202393, - "action": "CARVE_RIGHT" - }, - { - "x": -88.77796158442524, - "y": -2166.9249987043167, - "rotation": 6.2232921097542455, - "action": "CARVE_RIGHT" - }, - { - "x": -88.83025281553078, - "y": -2172.698635894817, - "rotation": 6.268670670306098, - "action": "CARVE_RIGHT" - }, - { - "x": -88.71890330886005, - "y": -2178.4258327665716, - "rotation": 0.030863923678364102, - "action": "CARVE_RIGHT" - }, - { - "x": -88.44347952177041, - "y": -2184.008729124843, - "rotation": 0.07624248423021668, - "action": "CARVE_RIGHT" - }, - { - "x": -88.00360031225028, - "y": -2189.446350153461, - "rotation": 0.12162104478206925, - "action": "CARVE_RIGHT" - }, - { - "x": -87.39893679919153, - "y": -2194.737770669796, - "rotation": 0.16699960533392183, - "action": "CARVE_RIGHT" - }, - { - "x": -86.62921222301128, - "y": -2199.882114993215, - "rotation": 0.2123781658857744, - "action": "CARVE_RIGHT" - }, - { - "x": -85.69420180662208, - "y": -2204.8785568138687, - "rotation": 0.257756726437627, - "action": "CARVE_RIGHT" - }, - { - "x": -84.5937326167498, - "y": -2209.7263190618046, - "rotation": 0.30313528698947956, - "action": "CARVE_RIGHT" - }, - { - "x": -83.32768342559831, - "y": -2214.424673776406, - "rotation": 0.34851384754133213, - "action": "CARVE_RIGHT" - }, - { - "x": -81.89598457286002, - "y": -2218.972941976156, - "rotation": 0.3938924080931847, - "action": "CARVE_RIGHT" - }, - { - "x": -80.2986178280717, - "y": -2223.370493528727, - "rotation": 0.4392709686450373, - "action": "CARVE_RIGHT" - }, - { - "x": -78.53561625331453, - "y": -2227.616747021392, - "rotation": 0.48464952919688986, - "action": "CARVE_RIGHT" - }, - { - "x": -76.60706406625764, - "y": -2231.71116963176, - "rotation": 0.5300280897487424, - "action": "CARVE_RIGHT" - }, - { - "x": -74.5130965035443, - "y": -2235.6532769988366, - "rotation": 0.5754066503005949, - "action": "CARVE_RIGHT" - }, - { - "x": -72.25389968452001, - "y": -2239.4426330943984, - "rotation": 0.6207852108524474, - "action": "CARVE_RIGHT" - }, - { - "x": -69.82971047530143, - "y": -2243.0788500946956, - "rotation": 0.6661637714042999, - "action": "CARVE_RIGHT" - }, - { - "x": -67.24081635318574, - "y": -2246.5615882524717, - "rotation": 0.7115423319561525, - "action": "CARVE_RIGHT" - }, - { - "x": -64.48755527139917, - "y": -2249.890555769301, - "rotation": 0.756920892508005, - "action": "NOTHING" - }, - { - "x": -61.44291370744112, - "y": -2252.948897356447, - "rotation": 0.7534302340040163, - "action": "NOTHING" - }, - { - "x": -58.41278066181045, - "y": -2256.0198918949677, - "rotation": 0.7499395755000277, - "action": "NOTHING" - }, - { - "x": -55.397127634572826, - "y": -2259.1035612244254, - "rotation": 0.746448916996039, - "action": "NOTHING" - }, - { - "x": -52.395926522310425, - "y": -2262.199927455071, - "rotation": 0.7429582584920503, - "action": "NOTHING" - }, - { - "x": -49.409149617097874, - "y": -2265.309012967087, - "rotation": 0.7394675999880617, - "action": "NOTHING" - }, - { - "x": -46.43676960548068, - "y": -2268.4308404098365, - "rotation": 0.735976941484073, - "action": "NOTHING" - }, - { - "x": -43.47875956745618, - "y": -2271.5654327011107, - "rotation": 0.7324862829800843, - "action": "NOTHING" - }, - { - "x": -40.53509297545701, - "y": -2274.712813026379, - "rotation": 0.7289956244760957, - "action": "NOTHING" - }, - { - "x": -37.60574369333702, - "y": -2277.8730048380417, - "rotation": 0.725504965972107, - "action": "NOTHING" - }, - { - "x": -34.690685975359685, - "y": -2281.0460318546843, - "rotation": 0.7220143074681183, - "action": "NOTHING" - }, - { - "x": -31.78989446518906, - "y": -2284.231918060335, - "rotation": 0.7185236489641297, - "action": "NOTHING" - }, - { - "x": -28.903344194883122, - "y": -2287.43068770372, - "rotation": 0.715032990460141, - "action": "NOTHING" - }, - { - "x": -26.031010583889625, - "y": -2290.6423652975272, - "rotation": 0.7115423319561524, - "action": "NOTHING" - }, - { - "x": -23.172869438044426, - "y": -2293.8669756176646, - "rotation": 0.7080516734521637, - "action": "NOTHING" - }, - { - "x": -20.328896948572243, - "y": -2297.1045437025273, - "rotation": 0.704561014948175, - "action": "NOTHING" - }, - { - "x": -17.499069691089883, - "y": -2300.355094852261, - "rotation": 0.7010703564441864, - "action": "NOTHING" - }, - { - "x": -14.683364624611901, - "y": -2303.6186546280314, - "rotation": 0.6975796979401977, - "action": "NOTHING" - }, - { - "x": -11.881759090558715, - "y": -2306.8952488512923, - "rotation": 0.694089039436209, - "action": "NOTHING" - }, - { - "x": -9.09423081176714, - "y": -2310.184903603057, - "rotation": 0.6905983809322204, - "action": "NOTHING" - }, - { - "x": -6.320757891503364, - "y": -2313.487645223174, - "rotation": 0.6871077224282317, - "action": "NOTHING" - }, - { - "x": -3.5613188124783286, - "y": -2316.803500309598, - "rotation": 0.683617063924243, - "action": "NOTHING" - }, - { - "x": -0.8158924358655475, - "y": -2320.132495717671, - "rotation": 0.6801264054202544, - "action": "NOTHING" - }, - { - "x": 1.9155419996786804, - "y": -2323.4746585593994, - "rotation": 0.6766357469162657, - "action": "NOTHING" - }, - { - "x": 4.633004878992646, - "y": -2326.830016202733, - "rotation": 0.673145088412277, - "action": "NOTHING" - }, - { - "x": 7.336516211384206, - "y": -2330.198596270852, - "rotation": 0.6696544299082884, - "action": "NOTHING" - }, - { - "x": 10.026095631603363, - "y": -2333.580426641446, - "rotation": 0.6661637714042997, - "action": "NOTHING" - }, - { - "x": 12.701762400812466, - "y": -2336.975535446006, - "rotation": 0.6626731129003111, - "action": "NOTHING" - }, - { - "x": 15.363535407554014, - "y": -2340.383951069107, - "rotation": 0.6591824543963224, - "action": "NOTHING" - }, - { - "x": 18.011433168716096, - "y": -2343.805702147702, - "rotation": 0.6556917958923337, - "action": "NOTHING" - }, - { - "x": 20.645473830495455, - "y": -2347.2408175704118, - "rotation": 0.6522011373883451, - "action": "NOTHING" - }, - { - "x": 23.26567516935818, - "y": -2350.689326476819, - "rotation": 0.6487104788843564, - "action": "NOTHING" - }, - { - "x": 25.87205459299805, - "y": -2354.1512582567643, - "rotation": 0.6452198203803677, - "action": "NOTHING" - }, - { - "x": 28.464629141292516, - "y": -2357.6266425496415, - "rotation": 0.6417291618763791, - "action": "NOTHING" - }, - { - "x": 31.043415487256333, - "y": -2361.1155092436993, - "rotation": 0.6382385033723904, - "action": "NOTHING" - }, - { - "x": 33.60842993799285, - "y": -2364.61788847534, - "rotation": 0.6347478448684017, - "action": "NOTHING" - }, - { - "x": 36.15968843564298, - "y": -2368.133810628423, - "rotation": 0.6312571863644131, - "action": "CARVE_LEFT" - }, - { - "x": 38.291019027061644, - "y": -2372.0392658995606, - "rotation": 0.5858786258125606, - "action": "CARVE_LEFT" - }, - { - "x": 40.257710062416734, - "y": -2376.098481431447, - "rotation": 0.540500065260708, - "action": "CARVE_LEFT" - }, - { - "x": 42.059872685429646, - "y": -2380.311958347441, - "rotation": 0.49512150470885546, - "action": "CARVE_LEFT" - }, - { - "x": 43.69756681977621, - "y": -2384.6802439888006, - "rotation": 0.4497429441570029, - "action": "CARVE_LEFT" - }, - { - "x": 45.17080130538154, - "y": -2389.2039317909016, - "rotation": 0.4043643836051503, - "action": "CARVE_LEFT" - }, - { - "x": 46.47953403437447, - "y": -2393.8836611597635, - "rotation": 0.35898582305329774, - "action": "CARVE_LEFT" - }, - { - "x": 47.623672086702655, - "y": -2398.720117348888, - "rotation": 0.31360726250144516, - "action": "CARVE_LEFT" - }, - { - "x": 48.603071865408886, - "y": -2403.714031336403, - "rotation": 0.2682287019495926, - "action": "CARVE_LEFT" - }, - { - "x": 49.41753923156959, - "y": -2408.866179702519, - "rotation": 0.22285014139774, - "action": "CARVE_LEFT" - }, - { - "x": 50.0668296388963, - "y": -2414.1773845072867, - "rotation": 0.17747158084588743, - "action": "CARVE_LEFT" - }, - { - "x": 50.550648268000856, - "y": -2419.6485131686677, - "rotation": 0.13209302029403486, - "action": "CARVE_LEFT" - }, - { - "x": 50.868650160325195, - "y": -2425.280478340907, - "rotation": 0.08671445974218228, - "action": "CARVE_LEFT" - }, - { - "x": 51.02044035173651, - "y": -2431.074237793211, - "rotation": 0.04133589919032971, - "action": "CARVE_LEFT" - }, - { - "x": 51.00557427619098, - "y": -2437.0031561760266, - "rotation": 6.279142645818063, - "action": "CARVE_LEFT" - }, - { - "x": 50.823600527383654, - "y": -2442.785099152145, - "rotation": 6.233764085266211, - "action": "CARVE_LEFT" - }, - { - "x": 50.47412014288238, - "y": -2448.419075137399, - "rotation": 6.188385524714358, - "action": "CARVE_LEFT" - }, - { - "x": 49.956786464298716, - "y": -2453.904142221641, - "rotation": 6.143006964162506, - "action": "CARVE_LEFT" - }, - { - "x": 49.27130499780841, - "y": -2459.239408037106, - "rotation": 6.097628403610654, - "action": "CARVE_LEFT" - }, - { - "x": 48.417433275020564, - "y": -2464.424029627103, - "rotation": 6.052249843058801, - "action": "CARVE_LEFT" - }, - { - "x": 47.3949807141947, - "y": -2469.4572133150346, - "rotation": 6.006871282506949, - "action": "CARVE_LEFT" - }, - { - "x": 46.20380848180482, - "y": -2474.3382145737387, - "rotation": 5.961492721955096, - "action": "CARVE_LEFT" - }, - { - "x": 44.84382935444966, - "y": -2479.066337895163, - "rotation": 5.916114161403244, - "action": "CARVE_LEFT" - }, - { - "x": 43.315007581108354, - "y": -2483.6409366603575, - "rotation": 5.870735600851392, - "action": "CARVE_LEFT" - }, - { - "x": 41.61735874574058, - "y": -2488.0614130097933, - "rotation": 5.825357040299539, - "action": "CARVE_LEFT" - }, - { - "x": 39.750949630230465, - "y": -2492.3272177140057, - "rotation": 5.779978479747687, - "action": "CARVE_LEFT" - }, - { - "x": 37.71589807767332, - "y": -2496.437850044558, - "rotation": 5.734599919195834, - "action": "CARVE_LEFT" - }, - { - "x": 35.51237285600451, - "y": -2500.392857645329, - "rotation": 5.689221358643982, - "action": "CARVE_LEFT" - }, - { - "x": 33.14059352196948, - "y": -2504.191836404118, - "rotation": 5.6438427980921295, - "action": "CARVE_LEFT" - }, - { - "x": 30.600830285434263, - "y": -2507.834430324573, - "rotation": 5.598464237540277, - "action": "CARVE_LEFT" - }, - { - "x": 27.893403874035588, - "y": -2511.3203313984372, - "rotation": 5.553085676988425, - "action": "CARVE_LEFT" - }, - { - "x": 25.01868539816972, - "y": -2514.649279478114, - "rotation": 5.507707116436572, - "action": "CARVE_LEFT" - }, - { - "x": 21.977096216319335, - "y": -2517.8210621495477, - "rotation": 5.46232855588472, - "action": "CARVE_LEFT" - }, - { - "x": 18.769107800717535, - "y": -2520.8355146054273, - "rotation": 5.4169499953328675, - "action": "CARVE_LEFT" - }, - { - "x": 15.395241603348191, - "y": -2523.6925195186986, - "rotation": 5.371571434781015, - "action": "CARVE_LEFT" - }, - { - "x": 11.85606892228188, - "y": -2526.3920069163983, - "rotation": 5.326192874229163, - "action": "CARVE_LEFT" - }, - { - "x": 8.152210768346505, - "y": -2528.933954053798, - "rotation": 5.28081431367731, - "action": "NOTHING" - }, - { - "x": 4.054095337103511, - "y": -2531.1065512193964, - "rotation": 5.284304972181299, - "action": "NOTHING" - }, - { - "x": -0.026796021047387875, - "y": -2533.290854924104, - "rotation": 5.287795630685287, - "action": "NOTHING" - }, - { - "x": -4.090521277339172, - "y": -2535.4868666408747, - "rotation": 5.291286289189276, - "action": "NOTHING" - }, - { - "x": -8.137137930967029, - "y": -2537.694588169432, - "rotation": 5.294776947693264, - "action": "NOTHING" - }, - { - "x": -12.166703010296615, - "y": -2539.9140216353744, - "rotation": 5.2982676061972525, - "action": "NOTHING" - }, - { - "x": -16.179273074069386, - "y": -2542.145169489278, - "rotation": 5.301758264701241, - "action": "NOTHING" - }, - { - "x": -20.174904212604968, - "y": -2544.3880345058037, - "rotation": 5.305248923205229, - "action": "NOTHING" - }, - { - "x": -24.153652049000623, - "y": -2546.6426197828055, - "rotation": 5.308739581709218, - "action": "NOTHING" - }, - { - "x": -28.115571740327766, - "y": -2548.9089287404404, - "rotation": 5.312230240213206, - "action": "NOTHING" - }, - { - "x": -32.06071797882558, - "y": -2551.1869651202833, - "rotation": 5.315720898717195, - "action": "NOTHING" - }, - { - "x": -35.98914499309172, - "y": -2553.476732984442, - "rotation": 5.319211557221183, - "action": "NOTHING" - }, - { - "x": -39.900906549270104, - "y": -2555.778236714674, - "rotation": 5.3227022157251715, - "action": "NOTHING" - }, - { - "x": -43.79605595223582, - "y": -2558.0914810115078, - "rotation": 5.32619287422916, - "action": "NOTHING" - }, - { - "x": -47.67464604677713, - "y": -2560.4164708933636, - "rotation": 5.329683532733148, - "action": "NOTHING" - }, - { - "x": -51.536729218774596, - "y": -2562.753211695679, - "rotation": 5.333174191237137, - "action": "NOTHING" - }, - { - "x": -55.38235739637736, - "y": -2565.1017090700357, - "rotation": 5.336664849741125, - "action": "NOTHING" - }, - { - "x": -59.21158205117647, - "y": -2567.461968983287, - "rotation": 5.340155508245114, - "action": "CARVE_RIGHT" - }, - { - "x": -62.49009730360828, - "y": -2570.328632620179, - "rotation": 5.385534068796966, - "action": "CARVE_RIGHT" - }, - { - "x": -65.60134652451829, - "y": -2573.347273513967, - "rotation": 5.430912629348819, - "action": "CARVE_RIGHT" - }, - { - "x": -68.54579830907046, - "y": -2576.5180702443035, - "rotation": 5.476291189900671, - "action": "CARVE_RIGHT" - }, - { - "x": -71.32386908124353, - "y": -2579.841248472565, - "rotation": 5.521669750452523, - "action": "CARVE_RIGHT" - }, - { - "x": -73.93592323250056, - "y": -2583.3170808159052, - "rotation": 5.567048311004376, - "action": "CARVE_RIGHT" - }, - { - "x": -76.38227326011247, - "y": -2586.945886721623, - "rotation": 5.612426871556228, - "action": "CARVE_RIGHT" - }, - { - "x": -78.66317990513652, - "y": -2590.7280323418436, - "rotation": 5.657805432108081, - "action": "CARVE_RIGHT" - }, - { - "x": -80.77885229005028, - "y": -2594.663930408515, - "rotation": 5.703183992659933, - "action": "CARVE_RIGHT" - }, - { - "x": -82.72944805604227, - "y": -2598.754040108719, - "rotation": 5.748562553211785, - "action": "CARVE_RIGHT" - }, - { - "x": -84.51507349995977, - "y": -2602.99886696029, - "rotation": 5.793941113763638, - "action": "CARVE_RIGHT" - }, - { - "x": -86.13578371091484, - "y": -2607.3989626877515, - "rotation": 5.83931967431549, - "action": "CARVE_RIGHT" - }, - { - "x": -87.59158270654926, - "y": -2611.954925098559, - "rotation": 5.884698234867343, - "action": "CARVE_RIGHT" - }, - { - "x": -88.88242356895928, - "y": -2616.6673979596562, - "rotation": 5.930076795419195, - "action": "CARVE_RIGHT" - }, - { - "x": -90.00820858028092, - "y": -2621.5370708743367, - "rotation": 5.9754553559710475, - "action": "CARVE_RIGHT" - }, - { - "x": -90.96878935793669, - "y": -2626.5646791594195, - "rotation": 6.0208339165229, - "action": "CARVE_RIGHT" - }, - { - "x": -91.76396698954447, - "y": -2631.7510037227275, - "rotation": 6.066212477074752, - "action": "CARVE_RIGHT" - }, - { - "x": -92.39349216748954, - "y": -2637.0968709408776, - "rotation": 6.111591037626605, - "action": "CARVE_RIGHT" - }, - { - "x": -92.85706532316027, - "y": -2642.6031525373737, - "rotation": 6.156969598178457, - "action": "CARVE_RIGHT" - }, - { - "x": -93.15433676084862, - "y": -2648.270765461008, - "rotation": 6.2023481587303095, - "action": "CARVE_RIGHT" - }, - { - "x": -93.28490679131595, - "y": -2654.100671764566, - "rotation": 6.247726719282162, - "action": "CARVE_RIGHT" - }, - { - "x": -93.2483274931839, - "y": -2660.0258722947647, - "rotation": 0.009919972654428122, - "action": "CARVE_RIGHT" - }, - { - "x": -93.04415598562609, - "y": -2665.8035374258393, - "rotation": 0.05529853320628069, - "action": "CARVE_RIGHT" - }, - { - "x": -92.6720018083847, - "y": -2671.4326836687023, - "rotation": 0.10067709375813326, - "action": "CARVE_RIGHT" - }, - { - "x": -92.13152678200048, - "y": -2676.912377186317, - "rotation": 0.14605565430998582, - "action": "CARVE_RIGHT" - }, - { - "x": -91.42244486839216, - "y": -2682.241733662115, - "rotation": 0.1914342148618384, - "action": "CARVE_RIGHT" - }, - { - "x": -90.54452203178457, - "y": -2687.419918168746, - "rotation": 0.23681277541369097, - "action": "CARVE_RIGHT" - }, - { - "x": -89.49757609998423, - "y": -2692.446145037148, - "rotation": 0.2821913359655435, - "action": "CARVE_RIGHT" - }, - { - "x": -88.28147662600209, - "y": -2697.3196777259504, - "rotation": 0.3275698965173961, - "action": "CARVE_RIGHT" - }, - { - "x": -86.8961447500221, - "y": -2702.0398286911973, - "rotation": 0.3729484570692487, - "action": "CARVE_RIGHT" - }, - { - "x": -85.34155306171519, - "y": -2706.605959256397, - "rotation": 0.41832701762110125, - "action": "CARVE_RIGHT" - }, - { - "x": -83.6177254628975, - "y": -2711.017479482898, - "rotation": 0.4637055781729538, - "action": "CARVE_RIGHT" - }, - { - "x": -81.72473703053225, - "y": -2715.2738480405833, - "rotation": 0.5090841387248064, - "action": "CARVE_RIGHT" - }, - { - "x": -79.66271388007439, - "y": -2719.37457207889, - "rotation": 0.5544626992766589, - "action": "CARVE_RIGHT" - }, - { - "x": -77.43183302915708, - "y": -2723.319207098151, - "rotation": 0.5998412598285114, - "action": "CARVE_RIGHT" - }, - { - "x": -75.03232226161931, - "y": -2727.1073568212537, - "rotation": 0.645219820380364, - "action": "CARVE_RIGHT" - }, - { - "x": -72.46445999187387, - "y": -2730.738673065624, - "rotation": 0.6905983809322165, - "action": "CARVE_RIGHT" - }, - { - "x": -69.72857512961461, - "y": -2734.212855615524, - "rotation": 0.735976941484069, - "action": "CARVE_RIGHT" - }, - { - "x": -66.82504694486258, - "y": -2737.5296520946727, - "rotation": 0.7813555020359215, - "action": "CARVE_RIGHT" - }, - { - "x": -63.75430493334978, - "y": -2740.6888578391804, - "rotation": 0.826734062587774, - "action": "CARVE_RIGHT" - }, - { - "x": -60.5168286822401, - "y": -2743.6903157708043, - "rotation": 0.8721126231396266, - "action": "CARVE_RIGHT" - }, - { - "x": -57.1131477361864, - "y": -2746.533916270516, - "rotation": 0.9174911836914791, - "action": "CARVE_RIGHT" - }, - { - "x": -53.54384146372298, - "y": -2749.219597052387, - "rotation": 0.9628697442433316, - "action": "CARVE_RIGHT" - }, - { - "x": -49.80953892399268, - "y": -2751.7473430377886, - "rotation": 1.0082483047951842, - "action": "NOTHING" - }, - { - "x": -45.67772093947763, - "y": -2753.902615679598, - "rotation": 1.0047576462911956, - "action": "NOTHING" - }, - { - "x": -41.56325068866296, - "y": -2756.0696030241284, - "rotation": 1.001266987787207, - "action": "NOTHING" - }, - { - "x": -37.46606932114165, - "y": -2758.248305942956, - "rotation": 0.9977763292832182, - "action": "NOTHING" - }, - { - "x": -33.386118460812234, - "y": -2760.4387256361033, - "rotation": 0.9942856707792296, - "action": "NOTHING" - }, - { - "x": -29.32334020466495, - "y": -2762.6408636311376, - "rotation": 0.9907950122752409, - "action": "NOTHING" - }, - { - "x": -25.277677121570903, - "y": -2764.854721782269, - "rotation": 0.9873043537712523, - "action": "NOTHING" - }, - { - "x": -21.249072251074132, - "y": -2767.080302269454, - "rotation": 0.9838136952672636, - "action": "NOTHING" - }, - { - "x": -17.237469102186658, - "y": -2769.3176075975, - "rotation": 0.9803230367632749, - "action": "NOTHING" - }, - { - "x": -13.24281165218645, - "y": -2771.5666405951697, - "rotation": 0.9768323782592863, - "action": "NOTHING" - }, - { - "x": -9.265044345418321, - "y": -2773.8274044142936, - "rotation": 0.9733417197552976, - "action": "NOTHING" - }, - { - "x": -5.304112092097758, - "y": -2776.099902528879, - "rotation": 0.9698510612513089, - "action": "NOTHING" - }, - { - "x": -1.3599602671176547, - "y": -2778.384138734223, - "rotation": 0.9663604027473203, - "action": "NOTHING" - }, - { - "x": 2.5674652911420304, - "y": -2780.6801171460306, - "rotation": 0.9628697442433316, - "action": "NOTHING" - }, - { - "x": 6.4782182820017296, - "y": -2782.98784219953, - "rotation": 0.9593790857393429, - "action": "NOTHING" - }, - { - "x": 10.372351943666816, - "y": -2785.307318648595, - "rotation": 0.9558884272353543, - "action": "NOTHING" - }, - { - "x": 14.249919054409261, - "y": -2787.638551564866, - "rotation": 0.9523977687313656, - "action": "NOTHING" - }, - { - "x": 18.110971933746427, - "y": -2789.981546336876, - "rotation": 0.948907110227377, - "action": "NOTHING" - }, - { - "x": 21.955562443616955, - "y": -2792.3363086691766, - "rotation": 0.9454164517233883, - "action": "NOTHING" - }, - { - "x": 25.783741989553818, - "y": -2794.7028445814676, - "rotation": 0.9419257932193996, - "action": "NOTHING" - }, - { - "x": 29.59556152185449, - "y": -2797.081160407728, - "rotation": 0.938435134715411, - "action": "NOTHING" - }, - { - "x": 33.391071536748264, - "y": -2799.4712627953504, - "rotation": 0.9349444762114223, - "action": "NOTHING" - }, - { - "x": 37.17032207756072, - "y": -2801.873158704276, - "rotation": 0.9314538177074336, - "action": "NOTHING" - }, - { - "x": 40.93336273587537, - "y": -2804.286855406134, - "rotation": 0.927963159203445, - "action": "CARVE_LEFT" - }, - { - "x": 44.152683992025615, - "y": -2807.2007007247366, - "rotation": 0.8825845986515924, - "action": "CARVE_LEFT" - }, - { - "x": 47.20509267750516, - "y": -2810.2664127029543, - "rotation": 0.8372060380997399, - "action": "CARVE_LEFT" - }, - { - "x": 50.09103929622283, - "y": -2813.4841862382377, - "rotation": 0.7918274775478874, - "action": "CARVE_LEFT" - }, - { - "x": 52.810922229229234, - "y": -2816.854263265883, - "rotation": 0.7464489169960349, - "action": "CARVE_LEFT" - }, - { - "x": 55.36508787326533, - "y": -2820.3769326331935, - "rotation": 0.7010703564441824, - "action": "CARVE_LEFT" - }, - { - "x": 57.75383077896538, - "y": -2824.0525299739556, - "rotation": 0.6556917958923298, - "action": "CARVE_LEFT" - }, - { - "x": 59.97739378871497, - "y": -2827.881437583233, - "rotation": 0.6103132353404773, - "action": "CARVE_LEFT" - }, - { - "x": 62.035968174165, - "y": -2831.864084292471, - "rotation": 0.5649346747886248, - "action": "CARVE_LEFT" - }, - { - "x": 63.929693773402455, - "y": -2836.0009453449156, - "rotation": 0.5195561142367723, - "action": "CARVE_LEFT" - }, - { - "x": 65.65865912777879, - "y": -2840.2925422713442, - "rotation": 0.4741775536849197, - "action": "CARVE_LEFT" - }, - { - "x": 67.22290161839669, - "y": -2844.739442766108, - "rotation": 0.42879899313306713, - "action": "CARVE_LEFT" - }, - { - "x": 68.62240760225613, - "y": -2849.342260563484, - "rotation": 0.38342043258121455, - "action": "CARVE_LEFT" - }, - { - "x": 69.85711254806046, - "y": -2854.101655314341, - "rotation": 0.338041872029362, - "action": "CARVE_LEFT" - }, - { - "x": 70.92690117168331, - "y": -2859.018332463106, - "rotation": 0.2926633114775094, - "action": "CARVE_LEFT" - }, - { - "x": 71.83160757129733, - "y": -2864.093043125051, - "rotation": 0.24728475092565683, - "action": "CARVE_LEFT" - }, - { - "x": 72.57101536216523, - "y": -2869.3265839638752, - "rotation": 0.20190619037380425, - "action": "CARVE_LEFT" - }, - { - "x": 73.1448578110943, - "y": -2874.719797069606, - "rotation": 0.15652762982195167, - "action": "CARVE_LEFT" - }, - { - "x": 73.55281797055494, - "y": -2880.2735698367956, - "rotation": 0.1111490692700991, - "action": "CARVE_LEFT" - }, - { - "x": 73.79452881246414, - "y": -2885.9888348430304, - "rotation": 0.06577050871824652, - "action": "CARVE_LEFT" - }, - { - "x": 73.86957336163468, - "y": -2891.8665697277415, - "rotation": 0.020391948166393954, - "action": "CARVE_LEFT" - }, - { - "x": 73.77749515865872, - "y": -2897.736604223223, - "rotation": 6.258198694794127, - "action": "CARVE_LEFT" - }, - { - "x": 73.51786802551322, - "y": -2903.45894952315, - "rotation": 6.212820134242275, - "action": "CARVE_LEFT" - }, - { - "x": 73.09031816045032, - "y": -2909.03263795072, - "rotation": 6.1674415736904225, - "action": "CARVE_LEFT" - }, - { - "x": 72.49452399833778, - "y": -2914.456751439497, - "rotation": 6.12206301313857, - "action": "CARVE_LEFT" - }, - { - "x": 71.73021607134851, - "y": -2919.730421401932, - "rotation": 6.076684452586718, - "action": "CARVE_LEFT" - }, - { - "x": 70.79717686999838, - "y": -2924.8528285982115, - "rotation": 6.031305892034865, - "action": "CARVE_LEFT" - }, - { - "x": 69.69524070453159, - "y": -2929.8232030054387, - "rotation": 5.985927331483013, - "action": "CARVE_LEFT" - }, - { - "x": 68.42429356665251, - "y": -2934.6408236871325, - "rotation": 5.94054877093116, - "action": "CARVE_LEFT" - }, - { - "x": 66.98427299160346, - "y": -2939.305018663056, - "rotation": 5.895170210379308, - "action": "CARVE_LEFT" - }, - { - "x": 65.37516792058739, - "y": -2943.81516477937, - "rotation": 5.849791649827456, - "action": "CARVE_LEFT" - }, - { - "x": 63.597018563534654, - "y": -2948.1706875791074, - "rotation": 5.804413089275603, - "action": "CARVE_LEFT" - }, - { - "x": 61.649916262213175, - "y": -2952.3710611729707, - "rotation": 5.759034528723751, - "action": "CARVE_LEFT" - }, - { - "x": 59.53400335368102, - "y": -2956.4158081104547, - "rotation": 5.713655968171898, - "action": "NOTHING" - }, - { - "x": 57.19684394121515, - "y": -2960.2571219430783, - "rotation": 5.717146626675887, - "action": "NOTHING" - }, - { - "x": 54.873529350420554, - "y": -2964.112723641308, - "rotation": 5.720637285179875, - "action": "NOTHING" - }, - { - "x": 52.56404982178903, - "y": -2967.9826478980563, - "rotation": 5.724127943683864, - "action": "NOTHING" - }, - { - "x": 50.26839594407225, - "y": -2971.8669296412395, - "rotation": 5.727618602187852, - "action": "NOTHING" - }, - { - "x": 47.98655865337584, - "y": -2975.7656040331135, - "rotation": 5.731109260691841, - "action": "NOTHING" - }, - { - "x": 45.71852923225549, - "y": -2979.6787064696123, - "rotation": 5.734599919195829, - "action": "NOTHING" - }, - { - "x": 43.46429930881551, - "y": -2983.606272579687, - "rotation": 5.7380905776998175, - "action": "NOTHING" - }, - { - "x": 41.22386085580947, - "y": -2987.5483382246466, - "rotation": 5.741581236203806, - "action": "NOTHING" - }, - { - "x": 38.997206189743075, - "y": -2991.504939497502, - "rotation": 5.745071894707794, - "action": "NOTHING" - }, - { - "x": 36.78432796997929, - "y": -2995.476112722309, - "rotation": 5.748562553211783, - "action": "NOTHING" - }, - { - "x": 34.585219197845625, - "y": -2999.461894453516, - "rotation": 5.752053211715771, - "action": "NOTHING" - }, - { "x": 32.39987321574367, "y": -3003.46232147531, "rotation": 5.75554387021976, "action": "NOTHING" }, - { - "x": 30.22828370626074, - "y": -3007.4774308009696, - "rotation": 5.759034528723748, - "action": "NOTHING" - }, - { - "x": 28.070444691283825, - "y": -3011.5072596722125, - "rotation": 5.7625251872277365, - "action": "NOTHING" - }, - { - "x": 25.926350531115617, - "y": -3015.5518455585516, - "rotation": 5.766015845731725, - "action": "NOTHING" - }, - { - "x": 23.795995923592777, - "y": -3019.6112261566473, - "rotation": 5.769506504235713, - "action": "NOTHING" - }, - { - "x": 21.679375903206356, - "y": -3023.685439389665, - "rotation": 5.772997162739702, - "action": "NOTHING" - }, - { - "x": 19.57648584022438, - "y": -3027.7745234066338, - "rotation": 5.77648782124369, - "action": "NOTHING" - }, - { - "x": 17.48732143981661, - "y": -3031.8785165818044, - "rotation": 5.779978479747679, - "action": "NOTHING" - }, - { - "x": 15.41187874118146, - "y": -3035.9974575140122, - "rotation": 5.783469138251667, - "action": "NOTHING" - }, - { - "x": 13.350154116675048, - "y": -3040.131385026039, - "rotation": 5.786959796755656, - "action": "NOTHING" - }, - { - "x": 11.302144270942414, - "y": -3044.2803381639783, - "rotation": 5.790450455259644, - "action": "NOTHING" - }, - { - "x": 9.26784624005088, - "y": -3048.4443561966013, - "rotation": 5.7939411137636325, - "action": "NOTHING" - }, - { - "x": 7.247257390625533, - "y": -3052.6234786147247, - "rotation": 5.797431772267621, - "action": "NOTHING" - }, - { - "x": 5.240375418986861, - "y": -3056.817745130581, - "rotation": 5.800922430771609, - "action": "NOTHING" - }, - { - "x": 3.247198350290497, - "y": -3061.0271956771885, - "rotation": 5.804413089275598, - "action": "CARVE_RIGHT" - }, - { - "x": 1.6227204048703354, - "y": -3065.580430284763, - "rotation": 5.84979164982745, - "action": "CARVE_RIGHT" - }, - { - "x": 0.1676139232463647, - "y": -3070.2934881803376, - "rotation": 5.895170210379303, - "action": "CARVE_RIGHT" - }, - { - "x": -1.1180800900463141, - "y": -3075.1670080020235, - "rotation": 5.940548770931155, - "action": "CARVE_RIGHT" - }, - { - "x": -2.23426980897508, - "y": -3080.2016742435326, - "rotation": 5.9859273314830075, - "action": "CARVE_RIGHT" - }, - { - "x": -3.1808127213190147, - "y": -3085.3982171312937, - "rotation": 6.03130589203486, - "action": "CARVE_RIGHT" - }, - { - "x": -3.957515763640146, - "y": -3090.757412501876, - "rotation": 6.076684452586712, - "action": "CARVE_RIGHT" - }, - { - "x": -4.5641354559175795, - "y": -3096.2800816797226, - "rotation": 6.122063013138565, - "action": "CARVE_RIGHT" - }, - { - "x": -5.000378035845271, - "y": -3101.967091355187, - "rotation": 6.167441573690417, - "action": "CARVE_RIGHT" - }, - { - "x": -5.26589959279429, - "y": -3107.81935346288, - "rotation": 6.2128201342422695, - "action": "CARVE_RIGHT" - }, - { - "x": -5.36030620144037, - "y": -3113.8378250603164, - "rotation": 6.258198694794122, - "action": "CARVE_RIGHT" - }, - { - "x": -5.28316093513356, - "y": -3119.8800949916276, - "rotation": 0.02039194816638812, - "action": "CARVE_RIGHT" - }, - { - "x": -5.034050195788116, - "y": -3125.7703309446892, - "rotation": 0.0657705087182407, - "action": "CARVE_RIGHT" - }, - { - "x": -4.612612722090841, - "y": -3131.5075773649955, - "rotation": 0.11114906927009327, - "action": "CARVE_RIGHT" - }, - { - "x": -4.018539449949192, - "y": -3137.090928270907, - "rotation": 0.15652762982194585, - "action": "CARVE_RIGHT" - }, - { - "x": -3.2515733732882435, - "y": -3142.5195271222756, - "rotation": 0.20190619037379842, - "action": "CARVE_RIGHT" - }, - { - "x": -2.3115094051956695, - "y": -3147.7925666893934, - "rotation": 0.247284750925651, - "action": "CARVE_RIGHT" - }, - { - "x": -1.19819423941392, - "y": -3152.9092889222734, - "rotation": 0.2926633114775036, - "action": "NOTHING" - }, - { - "x": 0.025030518198494667, - "y": -3157.9290819217535, - "rotation": 0.2891726529735149, - "action": "NOTHING" - }, - { - "x": 1.2344472211680129, - "y": -3162.9665360530503, - "rotation": 0.28568199446952625, - "action": "NOTHING" - }, - { - "x": 2.430039627435008, - "y": -3168.0217032699825, - "rotation": 0.2821913359655376, - "action": "NOTHING" - }, - { - "x": 3.6117912150054647, - "y": -3173.0946357117377, - "rotation": 0.2787006774615489, - "action": "NOTHING" - }, - { - "x": 4.779685182687686, - "y": -3178.1853857023375, - "rotation": 0.27521001895756025, - "action": "NOTHING" - }, - { - "x": 5.93370445082717, - "y": -3183.294005750105, - "rotation": 0.2717193604535716, - "action": "NOTHING" - }, - { - "x": 7.073831662039668, - "y": -3188.4205485471325, - "rotation": 0.2682287019495829, - "action": "NOTHING" - }, - { - "x": 8.200049181942418, - "y": -3193.565066968752, - "rotation": 0.26473804344559426, - "action": "NOTHING" - }, - { - "x": 9.312339099883577, - "y": -3198.727614073005, - "rotation": 0.2612473849416056, - "action": "NOTHING" - }, - { - "x": 10.410683229669825, - "y": -3203.9082431001166, - "rotation": 0.25775672643761693, - "action": "NOTHING" - }, - { - "x": 11.495063110292179, - "y": -3209.1070074719682, - "rotation": 0.25426606793362827, - "action": "NOTHING" - }, - { - "x": 12.565460006649996, - "y": -3214.323960791573, - "rotation": 0.2507754094296396, - "action": "NOTHING" - }, - { - "x": 13.621854910273191, - "y": -3219.559156842553, - "rotation": 0.24728475092565094, - "action": "NOTHING" - }, - { - "x": 14.66422854004265, - "y": -3224.812649588616, - "rotation": 0.24379409242166228, - "action": "NOTHING" - }, - { - "x": 15.69256134290886, - "y": -3230.0844931730358, - "rotation": 0.24030343391767361, - "action": "NOTHING" - }, - { - "x": 16.706833494608755, - "y": -3235.374741918133, - "rotation": 0.23681277541368495, - "action": "NOTHING" - }, - { - "x": 17.707024900380787, - "y": -3240.683450324757, - "rotation": 0.2333221169096963, - "action": "NOTHING" - }, - { - "x": 18.69311519567821, - "y": -3246.0106730717675, - "rotation": 0.22983145840570762, - "action": "NOTHING" - }, - { - "x": 19.665083746880605, - "y": -3251.356465015523, - "rotation": 0.22634079990171896, - "action": "NOTHING" - }, - { - "x": 20.622909652003628, - "y": -3256.720881189364, - "rotation": 0.2228501413977303, - "action": "NOTHING" - }, - { - "x": 21.566571741407007, - "y": -3262.1039768031, - "rotation": 0.21935948289374163, - "action": "NOTHING" - }, - { - "x": 22.49604857850077, - "y": -3267.5058072425013, - "rotation": 0.21586882438975297, - "action": "NOTHING" - }, - { - "x": 23.41131846044972, - "y": -3272.926428068787, - "rotation": 0.2123781658857643, - "action": "NOTHING" - }, - { - "x": 24.312359418876166, - "y": -3278.3658950181166, - "rotation": 0.20888750738177564, - "action": "NOTHING" - }, - { - "x": 25.199149220560905, - "y": -3283.8242640010826, - "rotation": 0.20539684887778697, - "action": "NOTHING" - }, - { - "x": 26.071665368142455, - "y": -3289.301591102206, - "rotation": 0.2019061903737983, - "action": "NOTHING" - }, - { - "x": 26.92988510081456, - "y": -3294.797932579431, - "rotation": 0.19841553186980965, - "action": "NOTHING" - }, - { - "x": 27.773785395021967, - "y": -3300.3133448636204, - "rotation": 0.19492487336582098, - "action": "NOTHING" - }, - { - "x": 28.603342965154454, - "y": -3305.847884558056, - "rotation": 0.19143421486183232, - "action": "NOTHING" - }, - { - "x": 29.41853426423915, - "y": -3311.4016084379373, - "rotation": 0.18794355635784366, - "action": "NOTHING" - }, - { - "x": 30.219335484631124, - "y": -3316.9745734498806, - "rotation": 0.184452897853855, - "action": "NOTHING" - }, - { - "x": 31.005722558702264, - "y": -3322.5668367114235, - "rotation": 0.18096223934986633, - "action": "NOTHING" - }, - { - "x": 31.777671159528442, - "y": -3328.178455510527, - "rotation": 0.17747158084587766, - "action": "NOTHING" - }, - { - "x": 32.53515670157496, - "y": -3333.8094873050795, - "rotation": 0.173980922341889, - "action": "NOTHING" - }, - { - "x": 33.27815434138032, - "y": -3339.4599897224048, - "rotation": 0.17049026383790034, - "action": "NOTHING" - }, - { - "x": 34.00663897823825, - "y": -3345.130020558767, - "rotation": 0.16699960533391167, - "action": "NOTHING" - }, - { - "x": 34.72058525487806, - "y": -3350.81963777888, - "rotation": 0.163508946829923, - "action": "NOTHING" - }, - { - "x": 35.41996755814332, - "y": -3356.5288995154183, - "rotation": 0.16001828832593434, - "action": "NOTHING" - }, - { - "x": 36.10476001966882, - "y": -3362.2578640685265, - "rotation": 0.15652762982194568, - "action": "NOTHING" - }, - { - "x": 36.77493651655585, - "y": -3368.006589905333, - "rotation": 0.15303697131795702, - "action": "NOTHING" - }, - { - "x": 37.43047067204582, - "y": -3373.7751356594626, - "rotation": 0.14954631281396835, - "action": "NOTHING" - }, - { - "x": 38.071335856192206, - "y": -3379.563560130553, - "rotation": 0.1460556543099797, - "action": "NOTHING" - }, - { - "x": 38.69750518653076, - "y": -3385.3719222837685, - "rotation": 0.14256499580599102, - "action": "NOTHING" - }, - { - "x": 39.30895152874816, - "y": -3391.20028124932, - "rotation": 0.13907433730200236, - "action": "NOTHING" - }, - { - "x": 39.90564749734888, - "y": -3397.048696321983, - "rotation": 0.1355836787980137, - "action": "NOTHING" - }, - { - "x": 40.487565456320496, - "y": -3402.917226960616, - "rotation": 0.13209302029402503, - "action": "NOTHING" - }, - { - "x": 41.05467751979729, - "y": -3408.8059327876854, - "rotation": 0.12860236179003637, - "action": "NOTHING" - }, - { - "x": 41.606955552722184, - "y": -3414.714873588784, - "rotation": 0.1251117032860477, - "action": "NOTHING" - }, - { - "x": 42.14437117150708, - "y": -3420.644109312158, - "rotation": 0.12162104478205904, - "action": "NOTHING" - }, - { - "x": 42.6668957446915, - "y": -3426.5937000682297, - "rotation": 0.11813038627807038, - "action": "NOTHING" - }, - { - "x": 43.17450039359962, - "y": -3432.563706129126, - "rotation": 0.11463972777408171, - "action": "NOTHING" - }, - { - "x": 43.66715599299566, - "y": -3438.5541879282036, - "rotation": 0.11114906927009305, - "action": "NOTHING" - }, - { - "x": 44.14483317173763, - "y": -3444.56520605958, - "rotation": 0.10765841076610438, - "action": "NOTHING" - }, - { - "x": 44.607502313429464, - "y": -3450.596821277662, - "rotation": 0.10416775226211572, - "action": "NOTHING" - }, - { - "x": 45.055133557071514, - "y": -3456.649094496678, - "rotation": 0.10067709375812706, - "action": "NOTHING" - }, - { - "x": 45.48769679770944, - "y": -3462.72208679021, - "rotation": 0.09718643525413839, - "action": "NOTHING" - }, - { - "x": 45.90516168708146, - "y": -3468.8158593907274, - "rotation": 0.09369577675014973, - "action": "NOTHING" - }, - { - "x": 46.307497634264, - "y": -3474.9304736891213, - "rotation": 0.09020511824616106, - "action": "NOTHING" - }, - { - "x": 46.69467380631576, - "y": -3481.0659912342426, - "rotation": 0.0867144597421724, - "action": "NOTHING" - }, - { - "x": 47.066659128920115, - "y": -3487.2224737324373, - "rotation": 0.08322380123818374, - "action": "NOTHING" - }, - { - "x": 47.42342228702595, - "y": -3493.399983047086, - "rotation": 0.07973314273419507, - "action": "NOTHING" - }, - { - "x": 47.76493172548693, - "y": -3499.5985811981445, - "rotation": 0.07624248423020641, - "action": "NOTHING" - }, - { - "x": 48.091155649699104, - "y": -3505.8183303616834, - "rotation": 0.07275182572621774, - "action": "NOTHING" - }, - { - "x": 48.402062026236976, - "y": -3512.0592928694314, - "rotation": 0.06926116722222908, - "action": "NOTHING" - }, - { - "x": 48.69761858348795, - "y": -3518.321531208319, - "rotation": 0.06577050871824042, - "action": "NOTHING" - }, - { - "x": 48.97779281228525, - "y": -3524.605108020022, - "rotation": 0.06227985021425176, - "action": "NOTHING" - }, - { - "x": 49.24255196653918, - "y": -3530.9100861005077, - "rotation": 0.0587891917102631, - "action": "NOTHING" - }, - { - "x": 49.49186306386687, - "y": -3537.2365283995837, - "rotation": 0.055298533206274446, - "action": "NOTHING" - }, - { - "x": 49.72569288622045, - "y": -3543.584498020444, - "rotation": 0.05180787470228579, - "action": "NOTHING" - }, - { - "x": 49.94400798051361, - "y": -3549.954058219219, - "rotation": 0.04831721619829713, - "action": "NOTHING" - }, - { - "x": 50.146774659246645, - "y": -3556.345272404527, - "rotation": 0.044826557694308475, - "action": "NOTHING" - }, - { - "x": 50.33395900112991, - "y": -3562.758204137025, - "rotation": 0.04133589919031982, - "action": "NOTHING" - }, - { - "x": 50.505526851705746, - "y": -3569.192917128963, - "rotation": 0.03784524068633116, - "action": "NOTHING" - }, - { - "x": 50.66144382396881, - "y": -3575.649475243736, - "rotation": 0.034354582182342504, - "action": "NOTHING" - }, - { - "x": 50.80167529898492, - "y": -3582.1279424954428, - "rotation": 0.030863923678353843, - "action": "NOTHING" - }, - { - "x": 50.92618642650829, - "y": -3588.6283830484385, - "rotation": 0.027373265174365183, - "action": "NOTHING" - }, - { - "x": 51.03494212559725, - "y": -3595.1508612168955, - "rotation": 0.023882606670376522, - "action": "NOTHING" - }, - { - "x": 51.12790708522846, - "y": -3601.695441464361, - "rotation": 0.020391948166387862, - "action": "NOTHING" - }, - { - "x": 51.20504576490953, - "y": -3608.262188403317, - "rotation": 0.0169012896623992, - "action": "CARVE_LEFT" - }, - { - "x": 51.08795365776664, - "y": -3614.7985843716037, - "rotation": 6.254708036290133, - "action": "CARVE_LEFT" - }, - { - "x": 50.78399989686161, - "y": -3621.167983281204, - "rotation": 6.20932947573828, - "action": "CARVE_LEFT" - }, - { - "x": 50.29289188060914, - "y": -3627.3694954920757, - "rotation": 6.163950915186428, - "action": "CARVE_LEFT" - }, - { - "x": 49.61438900173137, - "y": -3633.402280744478, - "rotation": 6.118572354634575, - "action": "CARVE_LEFT" - }, - { - "x": 48.74830250859187, - "y": -3639.2655480281046, - "rotation": 6.073193794082723, - "action": "CARVE_LEFT" - }, - { - "x": 47.694495366876296, - "y": -3644.958555451538, - "rotation": 6.027815233530871, - "action": "CARVE_LEFT" - }, - { - "x": 46.45288212161892, - "y": -3650.480610112033, - "rotation": 5.982436672979018, - "action": "CARVE_LEFT" - }, - { - "x": 45.02342875957415, - "y": -3655.831067965623, - "rotation": 5.937058112427166, - "action": "CARVE_LEFT" - }, - { - "x": 43.406152571932296, - "y": -3661.0093336975474, - "rotation": 5.891679551875313, - "action": "CARVE_LEFT" - }, - { - "x": 41.60112201737864, - "y": -3666.0148605930076, - "rotation": 5.846300991323461, - "action": "CARVE_LEFT" - }, - { - "x": 39.608456585495155, - "y": -3670.84715040824, - "rotation": 5.8009224307716085, - "action": "CARVE_LEFT" - }, - { - "x": 37.428326660503814, - "y": -3675.505753241911, - "rotation": 5.755543870219756, - "action": "CARVE_LEFT" - }, - { - "x": 35.06095338535091, - "y": -3679.990267406836, - "rotation": 5.710165309667904, - "action": "CARVE_LEFT" - }, - { - "x": 32.50660852613143, - "y": -3684.3003393020144, - "rotation": 5.664786749116051, - "action": "CARVE_LEFT" - }, - { - "x": 29.765614336852654, - "y": -3688.435663284985, - "rotation": 5.619408188564199, - "action": "CARVE_LEFT" - }, - { - "x": 26.838343424536276, - "y": -3692.395981544499, - "rotation": 5.5740296280123465, - "action": "CARVE_LEFT" - }, - { - "x": 23.725218614658104, - "y": -3696.181083973513, - "rotation": 5.528651067460494, - "action": "CARVE_LEFT" - }, - { - "x": 20.426712816924635, - "y": -3699.7908080424945, - "rotation": 5.483272506908642, - "action": "CARVE_LEFT" - }, - { - "x": 16.943348891385618, - "y": -3703.2250386730466, - "rotation": 5.437893946356789, - "action": "CARVE_LEFT" - }, - { - "x": 13.275699514881847, - "y": -3706.4837081118476, - "rotation": 5.392515385804937, - "action": "CARVE_LEFT" - }, - { - "x": 9.424387047827357, - "y": -3709.5667958049034, - "rotation": 5.347136825253084, - "action": "CARVE_LEFT" - }, - { - "x": 5.390083401325219, - "y": -3712.4743282721147, - "rotation": 5.301758264701232, - "action": "NOTHING" - }, - { - "x": 0.9270709751073145, - "y": -3714.9795481215006, - "rotation": 5.3052489232052205, - "action": "NOTHING" - }, - { - "x": -3.516458446266059, - "y": -3717.4975051329275, - "rotation": 5.308739581709209, - "action": "NOTHING" - }, - { - "x": -7.940568549151987, - "y": -3720.028197609527, - "rotation": 5.312230240213197, - "action": "NOTHING" - }, - { - "x": -12.345322531356988, - "y": -3722.571624192249, - "rotation": 5.315720898717186, - "action": "NOTHING" - }, - { - "x": -16.730783103388475, - "y": -3725.1277838589313, - "rotation": 5.319211557221174, - "action": "NOTHING" - }, - { - "x": -21.09701248970316, - "y": -3727.6966759233724, - "rotation": 5.322702215725163, - "action": "NOTHING" - }, - { - "x": -25.444072429952417, - "y": -3730.278300034406, - "rotation": 5.326192874229151, - "action": "NOTHING" - }, - { - "x": -29.772024180224598, - "y": -3732.87265617498, - "rotation": 5.3296835327331396, - "action": "NOTHING" - }, - { - "x": -34.08092851428433, - "y": -3735.4797446612342, - "rotation": 5.333174191237128, - "action": "NOTHING" - }, - { - "x": -38.370845724808795, - "y": -3738.0995661415845, - "rotation": 5.336664849741116, - "action": "NOTHING" - }, - { - "x": -42.64183562462097, - "y": -3740.7321215958054, - "rotation": 5.340155508245105, - "action": "NOTHING" - }, - { - "x": -46.89395754791988, - "y": -3743.377412334118, - "rotation": 5.343646166749093, - "action": "NOTHING" - }, - { - "x": -51.12727035150785, - "y": -3746.0354399962794, - "rotation": 5.347136825253082, - "action": "NOTHING" - }, - { - "x": -55.34183241601474, - "y": -3748.706206550672, - "rotation": 5.35062748375707, - "action": "NOTHING" - }, - { - "x": -59.537701647119206, - "y": -3751.3897142934006, - "rotation": 5.354118142261059, - "action": "NOTHING" - }, - { - "x": -63.71493547676701, - "y": -3754.0859658473855, - "rotation": 5.357608800765047, - "action": "NOTHING" - }, - { - "x": -67.8735908643863, - "y": -3756.7949641614623, - "rotation": 5.3610994592690355, - "action": "NOTHING" - }, - { - "x": -72.01372429809996, - "y": -3759.516712509482, - "rotation": 5.364590117773024, - "action": "NOTHING" - }, - { - "x": -76.13539179593499, - "y": -3762.251214489415, - "rotation": 5.368080776277012, - "action": "CARVE_RIGHT" - }, - { - "x": -79.65856071273626, - "y": -3765.5354527208738, - "rotation": 5.413459336828865, - "action": "CARVE_RIGHT" - }, - { - "x": -82.99596051682134, - "y": -3768.987885813619, - "rotation": 5.458837897380717, - "action": "CARVE_RIGHT" - }, - { - "x": -86.14810148151682, - "y": -3772.6086555861675, - "rotation": 5.50421645793257, - "action": "CARVE_RIGHT" - }, - { - "x": -89.1154415743309, - "y": -3776.3979510597624, - "rotation": 5.549595018484422, - "action": "CARVE_RIGHT" - }, - { - "x": -91.89838659599484, - "y": -3780.356008332087, - "rotation": 5.5949735790362745, - "action": "CARVE_RIGHT" - }, - { - "x": -94.4972903191573, - "y": -3784.4831104512978, - "rotation": 5.640352139588127, - "action": "CARVE_RIGHT" - }, - { - "x": -96.91245462673275, - "y": -3788.779587290369, - "rotation": 5.685730700139979, - "action": "CARVE_RIGHT" - }, - { - "x": -99.14412964990449, - "y": -3793.2458154217575, - "rotation": 5.731109260691832, - "action": "CARVE_RIGHT" - }, - { - "x": -101.19251390578322, - "y": -3797.8822179923773, - "rotation": 5.776487821243684, - "action": "CARVE_RIGHT" - }, - { - "x": -103.05775443472204, - "y": -3802.689264598888, - "rotation": 5.8218663817955365, - "action": "CARVE_RIGHT" - }, - { - "x": -104.73994693728861, - "y": -3807.6674711632977, - "rotation": 5.867244942347389, - "action": "NOTHING" - }, - { - "x": -106.59404848227453, - "y": -3812.488917057599, - "rotation": 5.870735600851377, - "action": "NOTHING" - }, - { - "x": -108.43314896661383, - "y": -3817.3267090299664, - "rotation": 5.874226259355366, - "action": "NOTHING" - }, - { - "x": -110.25724824074328, - "y": -3822.1808889731374, - "rotation": 5.877716917859354, - "action": "NOTHING" - }, - { - "x": -112.06634583138901, - "y": -3827.051498996072, - "rotation": 5.881207576363343, - "action": "NOTHING" - }, - { - "x": -113.86044094241393, - "y": -3831.938581423337, - "rotation": 5.884698234867331, - "action": "NOTHING" - }, - { - "x": -115.63953245566306, - "y": -3836.842178794488, - "rotation": 5.88818889337132, - "action": "NOTHING" - }, - { - "x": -117.40361893180682, - "y": -3841.7623338634576, - "rotation": 5.891679551875308, - "action": "NOTHING" - }, - { - "x": -119.15269861118217, - "y": -3846.69908959794, - "rotation": 5.8951702103792964, - "action": "NOTHING" - }, - { - "x": -120.88676941463174, - "y": -3851.6524891787813, - "rotation": 5.898660868883285, - "action": "NOTHING" - }, - { - "x": -122.60582894434081, - "y": -3856.622575999368, - "rotation": 5.902151527387273, - "action": "NOTHING" - }, - { - "x": -124.30987448467226, - "y": -3861.609393665022, - "rotation": 5.905642185891262, - "action": "NOTHING" - }, - { - "x": -125.99890300299946, - "y": -3866.612985992391, - "rotation": 5.90913284439525, - "action": "NOTHING" - }, - { - "x": -127.67291115053709, - "y": -3871.6333970088453, - "rotation": 5.912623502899239, - "action": "NOTHING" - }, - { - "x": -129.3318952631699, - "y": -3876.670670951875, - "rotation": 5.916114161403227, - "action": "NOTHING" - }, - { - "x": -130.97585136227949, - "y": -3881.7248522684854, - "rotation": 5.9196048199072155, - "action": "NOTHING" - }, - { - "x": -132.6047751555688, - "y": -3886.7959856146003, - "rotation": 5.923095478411204, - "action": "NOTHING" - }, - { - "x": -134.21866203788494, - "y": -3891.8841158544615, - "rotation": 5.926586136915192, - "action": "NOTHING" - }, - { - "x": -135.8175070920397, - "y": -3896.989288060031, - "rotation": 5.930076795419181, - "action": "NOTHING" - }, - { - "x": -137.4013050896281, - "y": -3902.1115475103975, - "rotation": 5.933567453923169, - "action": "NOTHING" - }, - { - "x": -138.97005049184492, - "y": -3907.250939691181, - "rotation": 5.937058112427158, - "action": "CARVE_RIGHT" - }, - { - "x": -140.1973959032067, - "y": -3912.7095383931, - "rotation": 5.98243667297901, - "action": "CARVE_RIGHT" - }, - { - "x": -141.24013691336978, - "y": -3918.3427629904513, - "rotation": 6.027815233530863, - "action": "CARVE_RIGHT" - }, - { - "x": -142.09814383163123, - "y": -3924.1513328420965, - "rotation": 6.073193794082715, - "action": "CARVE_RIGHT" - }, - { - "x": -142.77123636228637, - "y": -3930.1360129648315, - "rotation": 6.118572354634567, - "action": "CARVE_RIGHT" - }, - { - "x": -143.25918373942653, - "y": -3936.2976139109696, - "rotation": 6.16395091518642, - "action": "CARVE_RIGHT" - }, - { - "x": -143.56170486140033, - "y": -3942.6369916462327, - "rotation": 6.209329475738272, - "action": "CARVE_RIGHT" - }, - { - "x": -143.6784684249389, - "y": -3949.1550474279493, - "rotation": 6.254708036290125, - "action": "CARVE_RIGHT" - }, - { - "x": -143.6090977851829, - "y": -3955.723807252518, - "rotation": 0.016901289662390795, - "action": "CARVE_RIGHT" - }, - { - "x": -143.35323374089512, - "y": -3962.126089394754, - "rotation": 0.062279850214243364, - "action": "CARVE_RIGHT" - }, - { - "x": -142.91056926311114, - "y": -3968.3609904991213, - "rotation": 0.10765841076609593, - "action": "CARVE_RIGHT" - }, - { - "x": -142.280849356028, - "y": -3974.4276566270746, - "rotation": 0.1530369713179485, - "action": "CARVE_RIGHT" - }, - { - "x": -141.4638709182404, - "y": -3980.3252831261007, - "rotation": 0.19841553186980107, - "action": "CARVE_RIGHT" - }, - { - "x": -140.4594826043238, - "y": -3986.0531144990814, - "rotation": 0.24379409242165365, - "action": "CARVE_RIGHT" - }, - { - "x": -139.26758468676388, - "y": -3991.6104442739847, - "rotation": 0.2891726529735062, - "action": "CARVE_RIGHT" - }, - { - "x": -137.88812891823096, - "y": -3996.99661487388, - "rotation": 0.33455121352535877, - "action": "CARVE_RIGHT" - }, - { - "x": -136.32111839419898, - "y": -4002.211017487277, - "rotation": 0.37992977407721135, - "action": "CARVE_RIGHT" - }, - { - "x": -134.56660741590812, - "y": -4007.253091938786, - "rotation": 0.4253083346290639, - "action": "CARVE_RIGHT" - }, - { - "x": -132.62470135367013, - "y": -4012.1223265601047, - "rotation": 0.4706868951809165, - "action": "CARVE_RIGHT" - }, - { - "x": -130.49555651051563, - "y": -4016.818258061322, - "rotation": 0.5160654557327691, - "action": "CARVE_RIGHT" - }, - { - "x": -128.17937998618254, - "y": -4021.3404714025446, - "rotation": 0.5614440162846216, - "action": "CARVE_RIGHT" - }, - { - "x": -125.6764295414449, - "y": -4025.6885996658443, - "rotation": 0.6068225768364741, - "action": "CARVE_RIGHT" - }, - { - "x": -122.98701346278106, - "y": -4029.8623239275225, - "rotation": 0.6522011373883266, - "action": "CARVE_RIGHT" - }, - { - "x": -120.11149042738067, - "y": -4033.8613731306955, - "rotation": 0.6975796979401792, - "action": "CARVE_RIGHT" - }, - { - "x": -117.05026936848945, - "y": -4037.6855239581955, - "rotation": 0.7429582584920317, - "action": "CARVE_RIGHT" - }, - { - "x": -113.80380934109107, - "y": -4041.334600705789, - "rotation": 0.7883368190438842, - "action": "CARVE_RIGHT" - }, - { - "x": -110.37261938792525, - "y": -4044.808475155712, - "rotation": 0.8337153795957367, - "action": "CARVE_RIGHT" - }, - { - "x": -106.75725840584138, - "y": -4048.107066450522, - "rotation": 0.8790939401475892, - "action": "CARVE_RIGHT" - }, - { - "x": -102.95833501248664, - "y": -4051.2303409672586, - "rotation": 0.9244725006994418, - "action": "CARVE_RIGHT" - }, - { - "x": -98.97650741332802, - "y": -4054.1783121919275, - "rotation": 0.9698510612512943, - "action": "CARVE_RIGHT" - }, - { - "x": -94.81248326900744, - "y": -4056.9510405942888, - "rotation": 1.015229621803147, - "action": "NOTHING" - }, - { - "x": -90.20572018191166, - "y": -4059.3080429648912, - "rotation": 1.0117389632991582, - "action": "NOTHING" - }, - { - "x": -85.61881937761653, - "y": -4061.67771200366, - "rotation": 1.0082483047951696, - "action": "NOTHING" - }, - { - "x": -81.05171323205337, - "y": -4064.060043211052, - "rotation": 1.004757646291181, - "action": "NOTHING" - }, - { - "x": -76.50433461959948, - "y": -4066.4550324328175, - "rotation": 1.0012669877871923, - "action": "NOTHING" - }, - { - "x": -71.97661691180284, - "y": -4068.862675859052, - "rotation": 0.9977763292832036, - "action": "NOTHING" - }, - { - "x": -67.46849397610997, - "y": -4071.2829700232505, - "rotation": 0.9942856707792149, - "action": "NOTHING" - }, - { - "x": -62.97990017459682, - "y": -4073.715911801363, - "rotation": 0.9907950122752263, - "action": "NOTHING" - }, - { - "x": -58.510770362702814, - "y": -4076.1614984108537, - "rotation": 0.9873043537712376, - "action": "NOTHING" - }, - { - "x": -54.06103988796791, - "y": -4078.619727409763, - "rotation": 0.9838136952672489, - "action": "NOTHING" - }, - { - "x": -49.630644588772796, - "y": -4081.0905966957707, - "rotation": 0.9803230367632603, - "action": "NOTHING" - }, - { - "x": -45.21952079308213, - "y": -4083.5741045052614, - "rotation": 0.9768323782592716, - "action": "NOTHING" - }, - { - "x": -40.827605317190866, - "y": -4086.070249412394, - "rotation": 0.9733417197552829, - "action": "NOTHING" - }, - { - "x": -36.4548354644736, - "y": -4088.5790303281706, - "rotation": 0.9698510612512943, - "action": "NOTHING" - }, - { - "x": -32.101149024136994, - "y": -4091.1004464995126, - "rotation": 0.9663604027473056, - "action": "NOTHING" - }, - { - "x": -27.766484269975244, - "y": -4093.634497508334, - "rotation": 0.962869744243317, - "action": "NOTHING" - }, - { - "x": -23.450779959128564, - "y": -4096.181183270619, - "rotation": 0.9593790857393283, - "action": "NOTHING" - }, - { - "x": -19.153975330844705, - "y": -4098.740504035504, - "rotation": 0.9558884272353396, - "action": "NOTHING" - }, - { - "x": -14.8760101052435, - "y": -4101.312460384359, - "rotation": 0.952397768731351, - "action": "NOTHING" - }, - { - "x": -10.616824482084418, - "y": -4103.897053229872, - "rotation": 0.9489071102273623, - "action": "NOTHING" - }, - { - "x": -6.376359139537124, - "y": -4106.494283815137, - "rotation": 0.9454164517233736, - "action": "NOTHING" - }, - { - "x": -2.1545552329550404, - "y": -4109.104153712745, - "rotation": 0.941925793219385, - "action": "NOTHING" - }, - { - "x": 2.0486456063481002, - "y": -4111.726664823871, - "rotation": 0.9384351347153963, - "action": "CARVE_LEFT" - }, - { - "x": 5.646023397132238, - "y": -4114.9054551877325, - "rotation": 0.8930565741635438, - "action": "CARVE_LEFT" - }, - { - "x": 9.058483496099978, - "y": -4118.251413624892, - "rotation": 0.8476780136116913, - "action": "CARVE_LEFT" - }, - { - "x": 12.286558672317085, - "y": -4121.764661601349, - "rotation": 0.8022994530598387, - "action": "CARVE_LEFT" - }, - { - "x": 15.33072933067574, - "y": -4125.445367838908, - "rotation": 0.7569208925079862, - "action": "CARVE_LEFT" - }, - { - "x": 18.191423651079354, - "y": -4129.293748188763, - "rotation": 0.7115423319561337, - "action": "CARVE_LEFT" - }, - { - "x": 20.869017727280102, - "y": -4133.310065505395, - "rotation": 0.6661637714042812, - "action": "CARVE_LEFT" - }, - { - "x": 23.36383570537001, - "y": -4137.494629520794, - "rotation": 0.6207852108524287, - "action": "CARVE_LEFT" - }, - { - "x": 25.676149921926424, - "y": -4141.8477967189865, - "rotation": 0.5754066503005761, - "action": "CARVE_LEFT" - }, - { - "x": 27.806181041812675, - "y": -4146.369970210885, - "rotation": 0.5300280897487236, - "action": "NOTHING" - }, - { - "x": 30.157647501928086, - "y": -4150.688082844359, - "rotation": 0.526537431244735, - "action": "NOTHING" - }, - { - "x": 32.493890596177856, - "y": -4155.021307773917, - "rotation": 0.5230467727407463, - "action": "NOTHING" - }, - { - "x": 34.814921388941926, - "y": -4159.3696793882555, - "rotation": 0.5195561142367576, - "action": "NOTHING" - }, - { - "x": 37.12075059156534, - "y": -4163.733232313688, - "rotation": 0.516065455732769, - "action": "NOTHING" - }, - { - "x": 39.41138856327812, - "y": -4168.112001413472, - "rotation": 0.5125747972287803, - "action": "NOTHING" - }, - { - "x": 41.686845312112894, - "y": -4172.506021787138, - "rotation": 0.5090841387247916, - "action": "NOTHING" - }, - { - "x": 43.94713049582021, - "y": -4176.915328769818, - "rotation": 0.505593480220803, - "action": "NOTHING" - }, - { - "x": 46.1922534227817, - "y": -4181.339957931582, - "rotation": 0.5021028217168143, - "action": "NOTHING" - }, - { - "x": 48.42222305292084, - "y": -4185.779945076764, - "rotation": 0.49861216321282564, - "action": "NOTHING" - }, - { - "x": 50.637047998611635, - "y": -4190.235326243305, - "rotation": 0.495121504708837, - "action": "NOTHING" - }, - { - "x": 52.83673652558491, - "y": -4194.706137702087, - "rotation": 0.4916308462048483, - "action": "NOTHING" - }, - { - "x": 55.021296553832464, - "y": -4199.192415956271, - "rotation": 0.48814018770085965, - "action": "NOTHING" - }, - { - "x": 57.19073565850896, - "y": -4203.6941977406395, - "rotation": 0.484649529196871, - "action": "CARVE_RIGHT" - }, - { - "x": 59.32610960276714, - "y": -4208.227714343218, - "rotation": 0.5300280897487235, - "action": "CARVE_RIGHT" - }, - { - "x": 61.64415698990589, - "y": -4212.591674819393, - "rotation": 0.575406650300576, - "action": "CARVE_RIGHT" - }, - { - "x": 64.1446218410238, - "y": -4216.7857103480965, - "rotation": 0.6207852108524285, - "action": "CARVE_RIGHT" - }, - { - "x": 66.82719764085424, - "y": -4220.80950011287, - "rotation": 0.6661637714042811, - "action": "CARVE_RIGHT" - }, - { - "x": 69.69152747279382, - "y": -4224.662771174416, - "rotation": 0.7115423319561336, - "action": "CARVE_RIGHT" - }, - { - "x": 72.7372041535931, - "y": -4228.345298343458, - "rotation": 0.7569208925079861, - "action": "CARVE_RIGHT" - }, - { - "x": 75.96377036770998, - "y": -4231.856904053935, - "rotation": 0.8022994530598386, - "action": "CARVE_RIGHT" - }, - { - "x": 79.37071880132684, - "y": -4235.197458236496, - "rotation": 0.8476780136116912, - "action": "CARVE_RIGHT" - }, - { - "x": 82.9574922760321, - "y": -4238.366878192319, - "rotation": 0.8930565741635437, - "action": "CARVE_RIGHT" - }, - { - "x": 86.72348388216699, - "y": -4241.365128467243, - "rotation": 0.9384351347153962, - "action": "CARVE_RIGHT" - }, - { - "x": 90.66803711183854, - "y": -4244.192220726215, - "rotation": 0.9838136952672487, - "action": "CARVE_RIGHT" - }, - { - "x": 94.79044599159934, - "y": -4246.848213628044, - "rotation": 1.0291922558191013, - "action": "NOTHING" - }, - { - "x": 99.35137438218734, - "y": -4249.092511249186, - "rotation": 1.0257015973151127, - "action": "NOTHING" - }, - { - "x": 103.89284476664588, - "y": -4251.349224830143, - "rotation": 1.022210938811124, - "action": "NOTHING" - }, - { - "x": 108.41492456039113, - "y": -4253.618349817324, - "rotation": 1.0187202803071354, - "action": "NOTHING" - }, - { - "x": 112.91768068140279, - "y": -4255.899882001994, - "rotation": 1.0152296218031467, - "action": "NOTHING" - }, - { - "x": 117.40117955149613, - "y": -4258.193817519322, - "rotation": 1.011738963299158, - "action": "NOTHING" - }, - { - "x": 121.86548709759104, - "y": -4260.50015284744, - "rotation": 1.0082483047951694, - "action": "NOTHING" - }, - { - "x": 126.31066875297789, - "y": -4262.818884806504, - "rotation": 1.0047576462911807, - "action": "NOTHING" - }, - { - "x": 130.7367894585803, - "y": -4265.150010557749, - "rotation": 1.001266987787192, - "action": "NOTHING" - }, - { - "x": 135.14391366421492, - "y": -4267.493527602555, - "rotation": 0.9977763292832034, - "action": "NOTHING" - }, - { - "x": 139.53210532984815, - "y": -4269.849433781516, - "rotation": 0.9942856707792147, - "action": "NOTHING" - }, - { - "x": 143.9014279268496, - "y": -4272.217727273503, - "rotation": 0.990795012275226, - "action": "NOTHING" - }, - { - "x": 148.25194443924278, - "y": -4274.598406594735, - "rotation": 0.9873043537712374, - "action": "NOTHING" - }, - { - "x": 152.58371736495246, - "y": -4276.9914705978545, - "rotation": 0.9838136952672487, - "action": "NOTHING" - }, - { - "x": 156.89680871704928, - "y": -4279.3969184709995, - "rotation": 0.98032303676326, - "action": "NOTHING" - }, - { - "x": 161.19128002499104, - "y": -4281.814749736884, - "rotation": 0.9768323782592714, - "action": "NOTHING" - }, - { - "x": 165.4671923358612, - "y": -4284.244964251874, - "rotation": 0.9733417197552827, - "action": "NOTHING" - }, - { - "x": 169.7246062156042, - "y": -4286.687562205074, - "rotation": 0.969851061251294, - "action": "NOTHING" - }, - { - "x": 173.96358175025787, - "y": -4289.142544117408, - "rotation": 0.9663604027473054, - "action": "NOTHING" - }, - { - "x": 178.1841785471827, - "y": -4291.609910840707, - "rotation": 0.9628697442433167, - "action": "NOTHING" - }, - { - "x": 182.38645573628835, - "y": -4294.089663556799, - "rotation": 0.9593790857393281, - "action": "NOTHING" - }, - { - "x": 186.5704719712569, - "y": -4296.581803776599, - "rotation": 0.9558884272353394, - "action": "NOTHING" - }, - { - "x": 190.73628543076327, - "y": -4299.086333339206, - "rotation": 0.9523977687313507, - "action": "CARVE_LEFT" - }, - { - "x": 194.3043257691054, - "y": -4302.139807050427, - "rotation": 0.9070192081794982, - "action": "CARVE_LEFT" - }, - { - "x": 197.6917581440967, - "y": -4305.356576640881, - "rotation": 0.8616406476276457, - "action": "CARVE_LEFT" - }, - { - "x": 200.89911387345873, - "y": -4308.736764683814, - "rotation": 0.8162620870757932, - "action": "CARVE_LEFT" - }, - { - "x": 203.92687192027233, - "y": -4312.280540999923, - "rotation": 0.7708835265239407, - "action": "CARVE_LEFT" - }, - { - "x": 206.77545903213013, - "y": -4315.98812253097, - "rotation": 0.7255049659720881, - "action": "CARVE_LEFT" - }, - { - "x": 209.44524987994177, - "y": -4319.8597732137105, - "rotation": 0.6801264054202356, - "action": "CARVE_LEFT" - }, - { - "x": 211.93656719639293, - "y": -4323.895803854139, - "rotation": 0.6347478448683831, - "action": "CARVE_LEFT" - }, - { - "x": 214.2496819140587, - "y": -4328.096572002051, - "rotation": 0.5893692843165306, - "action": "CARVE_LEFT" - }, - { - "x": 216.38481330317234, - "y": -4332.462481825918, - "rotation": 0.543990723764678, - "action": "CARVE_LEFT" - }, - { - "x": 218.34212910905, - "y": -4336.9939839880735, - "rotation": 0.4986121632128255, - "action": "CARVE_LEFT" - }, - { - "x": 220.1217456891727, - "y": -4341.691575520216, - "rotation": 0.4532336026609729, - "action": "CARVE_LEFT" - }, - { - "x": 221.7237281499257, - "y": -4346.555799699223, - "rotation": 0.4078550421091203, - "action": "CARVE_LEFT" - }, - { - "x": 223.14809048299674, - "y": -4351.587245923273, - "rotation": 0.36247648155726775, - "action": "CARVE_LEFT" - }, - { - "x": 224.3947957014336, - "y": -4356.786549588284, - "rotation": 0.3170979210054152, - "action": "CARVE_LEFT" - }, - { - "x": 225.4637559753619, - "y": -4362.154391964656, - "rotation": 0.2717193604535626, - "action": "CARVE_LEFT" - }, - { - "x": 226.35483276736392, - "y": -4367.691500074322, - "rotation": 0.22634079990171002, - "action": "CARVE_LEFT" - }, - { - "x": 227.06783696751927, - "y": -4373.398646568117, - "rotation": 0.18096223934985745, - "action": "CARVE_LEFT" - }, - { - "x": 227.60252902810834, - "y": -4379.276649603443, - "rotation": 0.13558367879800487, - "action": "CARVE_LEFT" - }, - { - "x": 227.958619097979, - "y": -4385.326372722245, - "rotation": 0.0902051182461523, - "action": "CARVE_LEFT" - }, - { - "x": 228.13576715657786, - "y": -4391.548724729295, - "rotation": 0.044826557694299725, - "action": "CARVE_LEFT" - }, - { - "x": 228.13358315268783, - "y": -4397.940600354997, - "rotation": 6.282633304322033, - "action": "CARVE_LEFT" - }, - { - "x": 227.9516624406061, - "y": -4404.172951260638, - "rotation": 6.237254743770181, - "action": "CARVE_LEFT" - }, - { - "x": 227.58965267692176, - "y": -4410.244830739339, - "rotation": 6.191876183218328, - "action": "CARVE_LEFT" - }, - { - "x": 227.0472536810661, - "y": -4416.155341624071, - "rotation": 6.146497622666476, - "action": "CARVE_LEFT" - }, - { - "x": 226.3242172962114, - "y": -4421.903636156382, - "rotation": 6.101119062114623, - "action": "CARVE_LEFT" - }, - { - "x": 225.42034725051744, - "y": -4427.488915855441, - "rotation": 6.055740501562771, - "action": "CARVE_LEFT" - }, - { - "x": 224.33549901872502, - "y": -4432.910431387413, - "rotation": 6.010361941010919, - "action": "CARVE_LEFT" - }, - { - "x": 223.0695796840955, - "y": -4438.16748243516, - "rotation": 5.964983380459066, - "action": "CARVE_LEFT" - }, - { - "x": 221.62254780069563, - "y": -4443.259417568263, - "rotation": 5.919604819907214, - "action": "CARVE_LEFT" - }, - { - "x": 219.9944132560268, - "y": -4448.185634113369, - "rotation": 5.874226259355361, - "action": "CARVE_LEFT" - }, - { - "x": 218.18523713399793, - "y": -4452.945578024864, - "rotation": 5.828847698803509, - "action": "CARVE_LEFT" - }, - { - "x": 216.19513157824096, - "y": -4457.538743755864, - "rotation": 5.7834691382516565, - "action": "CARVE_LEFT" - }, - { - "x": 214.02425965576856, - "y": -4461.964674129531, - "rotation": 5.738090577699804, - "action": "CARVE_LEFT" - }, - { - "x": 211.67283522097273, - "y": -4466.222960210708, - "rotation": 5.692712017147952, - "action": "CARVE_LEFT" - }, - { - "x": 209.14112277996392, - "y": -4470.313241177875, - "rotation": 5.647333456596099, - "action": "CARVE_LEFT" - }, - { - "x": 206.42943735524943, - "y": -4474.235204195422, - "rotation": 5.601954896044247, - "action": "NOTHING" - }, - { - "x": 203.4323238558128, - "y": -4477.891955679817, - "rotation": 5.605445554548235, - "action": "NOTHING" - }, - { - "x": 200.45105372352057, - "y": -4481.562499189052, - "rotation": 5.608936213052224, - "action": "NOTHING" - }, - { - "x": 197.48560041380605, - "y": -4485.2468585670085, - "rotation": 5.612426871556212, - "action": "NOTHING" - }, - { - "x": 194.5359377751725, - "y": -4488.9450579246795, - "rotation": 5.615917530060201, - "action": "NOTHING" - }, - { - "x": 191.60204004817504, - "y": -4492.657121639419, - "rotation": 5.619408188564189, - "action": "NOTHING" - }, - { - "x": 188.683881864405, - "y": -4496.383074354191, - "rotation": 5.6228988470681776, - "action": "NOTHING" - }, - { - "x": 185.7814382454769, - "y": -4500.122940976831, - "rotation": 5.626389505572166, - "action": "NOTHING" - }, - { - "x": 182.89468460201772, - "y": -4503.876746679298, - "rotation": 5.629880164076154, - "action": "NOTHING" - }, - { - "x": 180.02359673265892, - "y": -4507.644516896934, - "rotation": 5.633370822580143, - "action": "NOTHING" - }, - { - "x": 177.1681508230306, - "y": -4511.426277327726, - "rotation": 5.636861481084131, - "action": "NOTHING" - }, - { - "x": 174.32832344475844, - "y": -4515.222053931567, - "rotation": 5.64035213958812, - "action": "NOTHING" - }, - { - "x": 171.50409155446292, - "y": -4519.03187292952, - "rotation": 5.643842798092108, - "action": "NOTHING" - }, - { - "x": 168.69543249276109, - "y": -4522.85576080309, - "rotation": 5.647333456596097, - "action": "NOTHING" - }, - { - "x": 165.90232398327072, - "y": -4526.69374429348, - "rotation": 5.650824115100085, - "action": "NOTHING" - }, - { - "x": 163.12474413161692, - "y": -4530.545850400876, - "rotation": 5.6543147736040735, - "action": "CARVE_LEFT" - }, - { - "x": 160.44518971830374, - "y": -4534.487158878023, - "rotation": 5.608936213052221, - "action": "CARVE_LEFT" - }, - { - "x": 157.58625923444183, - "y": -4538.260212933134, - "rotation": 5.563557652500369, - "action": "CARVE_LEFT" - }, - { - "x": 154.54835942734204, - "y": -4541.864786848359, - "rotation": 5.518179091948516, - "action": "CARVE_LEFT" - }, - { - "x": 151.3319471809807, - "y": -4545.3007025333545, - "rotation": 5.472800531396664, - "action": "CARVE_LEFT" - }, - { - "x": 147.93752938196693, - "y": -4548.5678293987785, - "rotation": 5.4274219708448115, - "action": "CARVE_LEFT" - }, - { - "x": 144.36566278584513, - "y": -4551.6660842300835, - "rotation": 5.382043410292959, - "action": "CARVE_LEFT" - }, - { - "x": 140.6169538837327, - "y": -4554.595431061636, - "rotation": 5.336664849741107, - "action": "NOTHING" - }, - { - "x": 136.46994080615426, - "y": -4557.1515696038, - "rotation": 5.340155508245095, - "action": "NOTHING" - }, - { - "x": 132.34108976461553, - "y": -4559.720172202002, - "rotation": 5.3436461667490835, - "action": "NOTHING" - }, - { - "x": 128.23034423016884, - "y": -4562.3012418865765, - "rotation": 5.347136825253072, - "action": "NOTHING" - }, - { - "x": 124.13764814355125, - "y": -4564.894782012011, - "rotation": 5.35062748375706, - "action": "NOTHING" - }, - { - "x": 120.06294591398002, - "y": -4567.500796256046, - "rotation": 5.354118142261049, - "action": "CARVE_RIGHT" - }, - { - "x": 116.57716896852146, - "y": -4570.647839869315, - "rotation": 5.399496702812901, - "action": "CARVE_RIGHT" - }, - { - "x": 113.2722880436568, - "y": -4573.958723188497, - "rotation": 5.444875263364754, - "action": "CARVE_RIGHT" - }, - { - "x": 110.14779652786072, - "y": -4577.43359110873, - "rotation": 5.490253823916606, - "action": "CARVE_RIGHT" - }, - { - "x": 107.20324009930502, - "y": -4581.072635713582, - "rotation": 5.5356323844684585, - "action": "CARVE_RIGHT" - }, - { - "x": 104.43821658686707, - "y": -4584.876096148804, - "rotation": 5.581010945020311, - "action": "CARVE_RIGHT" - }, - { - "x": 101.85237583148512, - "y": -4588.844258496413, - "rotation": 5.626389505572163, - "action": "CARVE_RIGHT" - }, - { - "x": 99.44541954785947, - "y": -4592.977455649079, - "rotation": 5.671768066124016, - "action": "CARVE_RIGHT" - }, - { - "x": 97.21710118649894, - "y": -4597.276067184833, - "rotation": 5.717146626675868, - "action": "CARVE_RIGHT" - }, - { - "x": 95.16722579611151, - "y": -4601.7405192420865, - "rotation": 5.762525187227721, - "action": "CARVE_RIGHT" - }, - { - "x": 93.29564988633855, - "y": -4606.371284394967, - "rotation": 5.807903747779573, - "action": "CARVE_RIGHT" - }, - { - "x": 91.60228129083171, - "y": -4611.168881528961, - "rotation": 5.853282308331425, - "action": "CARVE_RIGHT" - }, - { - "x": 90.0870790306716, - "y": -4616.133875716874, - "rotation": 5.898660868883278, - "action": "CARVE_RIGHT" - }, - { - "x": 88.75005317812756, - "y": -4621.266878095099, - "rotation": 5.94403942943513, - "action": "CARVE_RIGHT" - }, - { - "x": 87.59126472075761, - "y": -4626.568545740193, - "rotation": 5.989417989986983, - "action": "CARVE_RIGHT" - }, - { - "x": 86.61082542584784, - "y": -4632.039581545768, - "rotation": 6.034796550538835, - "action": "CARVE_RIGHT" - }, - { - "x": 85.8088977051903, - "y": -4637.680734099684, - "rotation": 6.080175111090687, - "action": "CARVE_RIGHT" - }, - { - "x": 85.18569448019876, - "y": -4643.492797561558, - "rotation": 6.12555367164254, - "action": "CARVE_RIGHT" - }, - { - "x": 84.74147904736131, - "y": -4649.476611540575, - "rotation": 6.170932232194392, - "action": "CARVE_RIGHT" - }, - { - "x": 84.47656494402922, - "y": -4655.6330609736015, - "rotation": 6.216310792746245, - "action": "CARVE_RIGHT" - }, - { - "x": 84.39131581454113, - "y": -4661.963076003618, - "rotation": 6.261689353298097, - "action": "CARVE_RIGHT" - }, - { - "x": 84.48613583956653, - "y": -4668.291391907572, - "rotation": 0.023882606670363238, - "action": "CARVE_RIGHT" - }, - { - "x": 84.76140066800278, - "y": -4674.459171111803, - "rotation": 0.06926116722221581, - "action": "CARVE_RIGHT" - }, - { - "x": 85.21743372446072, - "y": -4680.465494398769, - "rotation": 0.11463972777406839, - "action": "NOTHING" - }, - { - "x": 85.70921726083051, - "y": -4686.445372283688, - "rotation": 0.11114906927007973, - "action": "NOTHING" - }, - { - "x": 86.18605145320949, - "y": -4692.445782400829, - "rotation": 0.10765841076609106, - "action": "NOTHING" - }, - { - "x": 86.64790657238318, - "y": -4698.466785563415, - "rotation": 0.1041677522621024, - "action": "NOTHING" - }, - { - "x": 87.09475264486849, - "y": -4704.508442744272, - "rotation": 0.10067709375811373, - "action": "NOTHING" - }, - { - "x": 87.52655945356175, - "y": -4710.57081507536, - "rotation": 0.09718643525412507, - "action": "NOTHING" - }, - { - "x": 87.94329653838498, - "y": -4716.65396384731, - "rotation": 0.0936957767501364, - "action": "NOTHING" - }, - { - "x": 88.34493319693078, - "y": -4722.757950508957, - "rotation": 0.09020511824614774, - "action": "NOTHING" - }, - { - "x": 88.7314384851054, - "y": -4728.882836666881, - "rotation": 0.08671445974215908, - "action": "NOTHING" - }, - { - "x": 89.10278121777033, - "y": -4735.02868408494, - "rotation": 0.08322380123817041, - "action": "NOTHING" - }, - { - "x": 89.45892996938225, - "y": -4741.195554683813, - "rotation": 0.07973314273418175, - "action": "NOTHING" - }, - { - "x": 89.7998530746314, - "y": -4747.383510540536, - "rotation": 0.07624248423019309, - "action": "NOTHING" - }, - { - "x": 90.12551862907833, - "y": -4753.59261388805, - "rotation": 0.07275182572620442, - "action": "NOTHING" - }, - { - "x": 90.43589448978908, - "y": -4759.822927114741, - "rotation": 0.06926116722221576, - "action": "NOTHING" - }, - { - "x": 90.7309482759688, - "y": -4766.074512763981, - "rotation": 0.0657705087182271, - "action": "CARVE_LEFT" - }, - { - "x": 90.81336880905438, - "y": -4772.529958867511, - "rotation": 0.020391948166374525, - "action": "CARVE_LEFT" - }, - { - "x": 90.71227075923265, - "y": -4778.975013404837, - "rotation": 6.258198694794109, - "action": "CARVE_LEFT" - }, - { - "x": 90.42729350229966, - "y": -4785.256091376307, - "rotation": 6.212820134242256, - "action": "CARVE_LEFT" - }, - { - "x": 89.95812859369471, - "y": -4791.37228795452, - "rotation": 6.167441573690404, - "action": "CARVE_LEFT" - }, - { - "x": 89.30451962936507, - "y": -4797.3227477361925, - "rotation": 6.122063013138551, - "action": "CARVE_LEFT" - }, - { - "x": 88.46626210697853, - "y": -4803.106664611172, - "rotation": 6.076684452586699, - "action": "CARVE_LEFT" - }, - { - "x": 87.4432032874829, - "y": -4808.723281631785, - "rotation": 6.031305892034847, - "action": "CARVE_LEFT" - }, - { - "x": 86.23524205701173, - "y": -4814.171890882496, - "rotation": 5.985927331482994, - "action": "CARVE_LEFT" - }, - { - "x": 84.84232878913532, - "y": -4819.451833349911, - "rotation": 5.940548770931142, - "action": "CARVE_LEFT" - }, - { - "x": 83.26446520745623, - "y": -4824.562498793083, - "rotation": 5.895170210379289, - "action": "NOTHING" - }, - { - "x": 81.52633735939446, - "y": -4829.527487383462, - "rotation": 5.898660868883278, - "action": "NOTHING" - }, - { - "x": 79.80326565478147, - "y": -4834.509174068549, - "rotation": 5.902151527387266, - "action": "NOTHING" - }, - { - "x": 78.0952526460037, - "y": -4839.5076023638885, - "rotation": 5.905642185891255, - "action": "NOTHING" - }, - { - "x": 76.40230120291065, - "y": -4844.522815996668, - "rotation": 5.909132844395243, - "action": "NOTHING" - }, - { - "x": 74.72441451198279, - "y": -4849.554858905114, - "rotation": 5.9126235028992316, - "action": "NOTHING" - }, - { - "x": 73.06159607550154, - "y": -4854.6037752378825, - "rotation": 5.91611416140322, - "action": "NOTHING" - }, - { - "x": 71.41384971072138, - "y": -4859.669609353462, - "rotation": 5.919604819907208, - "action": "NOTHING" - }, - { - "x": 69.78117954904388, - "y": -4864.7524058195695, - "rotation": 5.923095478411197, - "action": "NOTHING" - }, - { - "x": 68.16359003519389, - "y": -4869.852209412551, - "rotation": 5.926586136915185, - "action": "NOTHING" - }, - { - "x": 66.56108592639768, - "y": -4874.969065116785, - "rotation": 5.930076795419174, - "action": "NOTHING" - }, - { - "x": 64.97367229156319, - "y": -4880.103018124083, - "rotation": 5.933567453923162, - "action": "NOTHING" - }, - { - "x": 63.401354510462255, - "y": -4885.254113833098, - "rotation": 5.937058112427151, - "action": "NOTHING" - }, - { - "x": 61.8441382729149, - "y": -4890.422397848731, - "rotation": 5.940548770931139, - "action": "NOTHING" - }, - { - "x": 60.30202957797559, - "y": -4895.607915981535, - "rotation": 5.9440394294351275, - "action": "NOTHING" - }, - { - "x": 58.77503473312156, - "y": -4900.810714247132, - "rotation": 5.947530087939116, - "action": "NOTHING" - }, - { - "x": 57.263160353443126, - "y": -4906.030838865616, - "rotation": 5.951020746443104, - "action": "NOTHING" - }, - { - "x": 55.76641336083599, - "y": -4911.268336260973, - "rotation": 5.954511404947093, - "action": "NOTHING" - }, - { - "x": 54.28480098319557, - "y": -4916.523253060492, - "rotation": 5.958002063451081, - "action": "NOTHING" - }, - { - "x": 52.818330753613296, - "y": -4921.795636094179, - "rotation": 5.96149272195507, - "action": "NOTHING" - }, - { - "x": 51.36701050957494, - "y": -4927.08553239418, - "rotation": 5.964983380459058, - "action": "NOTHING" - }, - { - "x": 49.93084839216089, - "y": -4932.392989194194, - "rotation": 5.968474038963047, - "action": "CARVE_LEFT" - }, - { - "x": 48.45143611891523, - "y": -4937.662611034146, - "rotation": 5.923095478411194, - "action": "CARVE_LEFT" - }, - { - "x": 46.78518660470129, - "y": -4942.760835819651, - "rotation": 5.877716917859342, - "action": "CARVE_LEFT" - }, - { - "x": 44.93218011334853, - "y": -4947.687128001622, - "rotation": 5.832338357307489, - "action": "CARVE_LEFT" - }, - { - "x": 42.89254790938657, - "y": -4952.4410004735755, - "rotation": 5.786959796755637, - "action": "CARVE_LEFT" - }, - { - "x": 40.6664721218621, - "y": -4957.0220144431005, - "rotation": 5.741581236203785, - "action": "CARVE_LEFT" - }, - { - "x": 38.25418560849656, - "y": -4961.42977930364, - "rotation": 5.696202675651932, - "action": "CARVE_LEFT" - }, - { - "x": 35.65597182018376, - "y": -4965.6639525066, - "rotation": 5.65082411510008, - "action": "CARVE_LEFT" - }, - { - "x": 32.87216466582648, - "y": -4969.724239433771, - "rotation": 5.605445554548227, - "action": "CARVE_LEFT" - }, - { - "x": 29.903148377511528, - "y": -4973.610393270069, - "rotation": 5.560066993996375, - "action": "CARVE_LEFT" - }, - { - "x": 26.749357376022097, - "y": -4977.322214876597, - "rotation": 5.5146884334445225, - "action": "CARVE_LEFT" - }, - { - "x": 23.411276136686876, - "y": -4980.859552664022, - "rotation": 5.46930987289267, - "action": "NOTHING" - }, - { - "x": 19.719926432800957, - "y": -4984.066699667406, - "rotation": 5.472800531396659, - "action": "NOTHING" - }, - { - "x": 16.04616202750578, - "y": -4987.287091848144, - "rotation": 5.476291189900647, - "action": "NOTHING" - }, - { - "x": 12.389939207345806, - "y": -4990.520741472494, - "rotation": 5.4797818484046354, - "action": "NOTHING" - }, - { - "x": 8.751214696619279, - "y": -4993.767661106557, - "rotation": 5.483272506908624, - "action": "NOTHING" - }, - { - "x": 5.12994565625006, - "y": -4997.027863615448, - "rotation": 5.486763165412612, - "action": "NOTHING" - }, - { - "x": 1.5260896826622372, - "y": -5000.301362162458, - "rotation": 5.490253823916601, - "action": "NOTHING" - }, - { - "x": -2.060395193342529, - "y": -5003.588170208227, - "rotation": 5.493744482420589, - "action": "NOTHING" - }, - { - "x": -5.629550507704895, - "y": -5006.888301509921, - "rotation": 5.497235140924578, - "action": "NOTHING" - }, - { - "x": -9.181417364224991, - "y": -5010.2017701204, - "rotation": 5.500725799428566, - "action": "NOTHING" - }, - { - "x": -12.71603643567684, - "y": -5013.528590387401, - "rotation": 5.5042164579325545, - "action": "NOTHING" - }, - { - "x": -16.233447964920042, - "y": -5016.868776952712, - "rotation": 5.507707116436543, - "action": "NOTHING" - }, - { - "x": -19.73369176600875, - "y": -5020.222344751359, - "rotation": 5.511197774940531, - "action": "NOTHING" - }, - { - "x": -23.216807225297913, - "y": -5023.589309010782, - "rotation": 5.51468843344452, - "action": "NOTHING" - }, - { - "x": -26.68283330254681, - "y": -5026.969685250027, - "rotation": 5.518179091948508, - "action": "NOTHING" - }, - { - "x": -30.13180853201991, - "y": -5030.363489278931, - "rotation": 5.521669750452497, - "action": "NOTHING" - }, - { - "x": -33.563771023584984, - "y": -5033.77073719731, - "rotation": 5.525160408956485, - "action": "NOTHING" - }, - { - "x": -36.97875846380858, - "y": -5037.191445394154, - "rotation": 5.528651067460474, - "action": "NOTHING" - }, - { - "x": -40.37680811704877, - "y": -5040.625630546816, - "rotation": 5.532141725964462, - "action": "NOTHING" - }, - { - "x": -43.75795682654524, - "y": -5044.073309620213, - "rotation": 5.5356323844684505, - "action": "NOTHING" - }, - { - "x": -47.122241015506724, - "y": -5047.534499866021, - "rotation": 5.539123042972439, - "action": "NOTHING" - }, - { - "x": -50.46969668819573, - "y": -5051.009218821876, - "rotation": 5.542613701476427, - "action": "NOTHING" - }, - { - "x": -53.800359431010655, - "y": -5054.497484310575, - "rotation": 5.546104359980416, - "action": "NOTHING" - }, - { - "x": -57.114264413565195, - "y": -5057.999314439278, - "rotation": 5.549595018484404, - "action": "NOTHING" - }, - { - "x": -60.411446389765175, - "y": -5061.514727598721, - "rotation": 5.553085676988393, - "action": "CARVE_RIGHT" - }, - { - "x": -63.193627145064454, - "y": -5065.50500297521, - "rotation": 5.598464237540245, - "action": "CARVE_RIGHT" - }, - { - "x": -65.79087826406285, - "y": -5069.665129379351, - "rotation": 5.6438427980920975, - "action": "CARVE_RIGHT" - }, - { - "x": -68.20350124385887, - "y": -5073.995437074064, - "rotation": 5.68922135864395, - "action": "CARVE_RIGHT" - }, - { - "x": -70.43174582967482, - "y": -5078.4963030218205, - "rotation": 5.734599919195802, - "action": "CARVE_RIGHT" - }, - { - "x": -72.47581015251761, - "y": -5083.168150759615, - "rotation": 5.779978479747655, - "action": "CARVE_RIGHT" - }, - { - "x": -74.33584086649576, - "y": -5088.011450274254, - "rotation": 5.825357040299507, - "action": "CARVE_RIGHT" - }, - { - "x": -76.01193328579372, - "y": -5093.026717877955, - "rotation": 5.87073560085136, - "action": "CARVE_RIGHT" - }, - { - "x": -77.5041315213041, - "y": -5098.214516084259, - "rotation": 5.916114161403212, - "action": "CARVE_RIGHT" - }, - { - "x": -78.81242861691887, - "y": -5103.575453484254, - "rotation": 5.961492721955064, - "action": "CARVE_RIGHT" - }, - { - "x": -79.93676668547998, - "y": -5109.110184623105, - "rotation": 6.006871282506917, - "action": "CARVE_RIGHT" - }, - { - "x": -80.87703704439073, - "y": -5114.819409876901, - "rotation": 6.052249843058769, - "action": "CARVE_RIGHT" - }, - { - "x": -81.63308035088816, - "y": -5120.703875329802, - "rotation": 6.097628403610622, - "action": "CARVE_RIGHT" - }, - { - "x": -82.20468673697773, - "y": -5126.7643726515025, - "rotation": 6.143006964162474, - "action": "CARVE_RIGHT" - }, - { - "x": -82.59159594403076, - "y": -5133.0017389749955, - "rotation": 6.1883855247143265, - "action": "CARVE_RIGHT" - }, - { - "x": -82.79349745704565, - "y": -5139.416856774647, - "rotation": 6.233764085266179, - "action": "CARVE_RIGHT" - }, - { - "x": -82.81003063857364, - "y": -5146.010653744578, - "rotation": 6.279142645818031, - "action": "CARVE_RIGHT" - }, - { - "x": -82.6408131326204, - "y": -5152.4696055088325, - "rotation": 0.041335899190297454, - "action": "CARVE_RIGHT" - }, - { - "x": -82.28551151453345, - "y": -5158.762166613047, - "rotation": 0.08671445974215003, - "action": "CARVE_RIGHT" - }, - { - "x": -81.74384446398398, - "y": -5164.887458089882, - "rotation": 0.1320930202940026, - "action": "CARVE_RIGHT" - }, - { - "x": -81.01558262602401, - "y": -5170.844650325061, - "rotation": 0.17747158084585518, - "action": "CARVE_RIGHT" - }, - { - "x": -80.10054847249104, - "y": -5176.632962926569, - "rotation": 0.22285014139770776, - "action": "CARVE_RIGHT" - }, - { - "x": -78.99861616375905, - "y": -5182.251664594178, - "rotation": 0.26822870194956033, - "action": "CARVE_RIGHT" - }, - { - "x": -77.70971141083531, - "y": -5187.700072989289, - "rotation": 0.3136072625014129, - "action": "CARVE_RIGHT" - }, - { - "x": -76.23381133780197, - "y": -5192.977554605108, - "rotation": 0.3589858230532655, - "action": "CARVE_RIGHT" - }, - { - "x": -74.57094434460176, - "y": -5198.08352463714, - "rotation": 0.40436438360511806, - "action": "CARVE_RIGHT" - }, - { - "x": -72.7211899701668, - "y": -5203.017446854008, - "rotation": 0.44974294415697064, - "action": "CARVE_RIGHT" - }, - { - "x": -70.6846787558899, - "y": -5207.778833468593, - "rotation": 0.4951215047088232, - "action": "CARVE_RIGHT" - }, - { - "x": -68.46159210943732, - "y": -5212.367245009494, - "rotation": 0.5405000652606757, - "action": "CARVE_RIGHT" - }, - { - "x": -66.05216216890231, - "y": -5216.782290192811, - "rotation": 0.5858786258125283, - "action": "CARVE_RIGHT" - }, - { - "x": -63.45667166729861, - "y": -5221.023625794247, - "rotation": 0.6312571863643808, - "action": "CARVE_RIGHT" - }, - { - "x": -60.67545379739296, - "y": -5225.090956521524, - "rotation": 0.6766357469162333, - "action": "CARVE_RIGHT" - }, - { - "x": -57.708892076876005, - "y": -5228.984034887127, - "rotation": 0.7220143074680858, - "action": "CARVE_RIGHT" - }, - { - "x": -54.55742021387061, - "y": -5232.702661081354, - "rotation": 0.7673928680199383, - "action": "CARVE_RIGHT" - }, - { - "x": -51.22152197277684, - "y": -5236.246682845691, - "rotation": 0.8127714285717909, - "action": "CARVE_RIGHT" - }, - { - "x": -47.70173104045286, - "y": -5239.615995346501, - "rotation": 0.8581499891236434, - "action": "CARVE_RIGHT" - }, - { - "x": -43.998630892730816, - "y": -5242.810541049023, - "rotation": 0.9035285496754959, - "action": "CARVE_RIGHT" - }, - { - "x": -40.11285466126699, - "y": -5245.830309591693, - "rotation": 0.9489071102273484, - "action": "NOTHING" - }, - { - "x": -35.81437667663259, - "y": -5248.463072175498, - "rotation": 0.9454164517233598, - "action": "NOTHING" - }, - { - "x": -31.53488991863893, - "y": -5251.108600938567, - "rotation": 0.9419257932193711, - "action": "NOTHING" - }, - { - "x": -27.274334931487612, - "y": -5253.766897132479, - "rotation": 0.9384351347153824, - "action": "NOTHING" - }, - { - "x": -23.03265273714936, - "y": -5256.437962338589, - "rotation": 0.9349444762113938, - "action": "NOTHING" - }, - { - "x": -18.809784834138785, - "y": -5259.121798467113, - "rotation": 0.9314538177074051, - "action": "NOTHING" - }, - { - "x": -14.605673196292116, - "y": -5261.818407756224, - "rotation": 0.9279631592034164, - "action": "NOTHING" - }, - { - "x": -10.420260271547914, - "y": -5264.527792771145, - "rotation": 0.9244725006994278, - "action": "NOTHING" - }, - { - "x": -6.253488980730768, - "y": -5267.2499564032505, - "rotation": 0.9209818421954391, - "action": "NOTHING" - }, - { - "x": -2.105302716337965, - "y": -5269.984901869162, - "rotation": 0.9174911836914504, - "action": "NOTHING" - }, - { - "x": 2.0243546586708883, - "y": -5272.7326327098535, - "rotation": 0.9140005251874618, - "action": "NOTHING" - }, - { - "x": 6.135538812081284, - "y": -5275.493152789754, - "rotation": 0.9105098666834731, - "action": "NOTHING" - }, - { - "x": 10.228304943628284, - "y": -5278.266466295856, - "rotation": 0.9070192081794844, - "action": "NOTHING" - }, - { - "x": 14.302707786198052, - "y": -5281.052577736823, - "rotation": 0.9035285496754958, - "action": "NOTHING" - }, - { - "x": 18.358801607026447, - "y": -5283.851491942102, - "rotation": 0.9000378911715071, - "action": "NOTHING" - }, - { - "x": 22.396640208894695, - "y": -5286.663214061037, - "rotation": 0.8965472326675185, - "action": "NOTHING" - }, - { - "x": 26.41627693132214, - "y": -5289.487749561985, - "rotation": 0.8930565741635298, - "action": "NOTHING" - }, - { - "x": 30.41776465175608, - "y": -5292.325104231432, - "rotation": 0.8895659156595411, - "action": "NOTHING" - }, - { - "x": 34.40115578675869, - "y": -5295.175284173119, - "rotation": 0.8860752571555525, - "action": "NOTHING" - }, - { - "x": 38.366502293191076, - "y": -5298.038295807157, - "rotation": 0.8825845986515638, - "action": "NOTHING" - }, - { - "x": 42.31385566939437, - "y": -5300.914145869157, - "rotation": 0.8790939401475751, - "action": "NOTHING" - }, - { - "x": 46.24326695636803, - "y": -5303.802841409359, - "rotation": 0.8756032816435865, - "action": "CARVE_LEFT" - }, - { - "x": 49.59447822845461, - "y": -5307.223053968134, - "rotation": 0.830224721091734, - "action": "CARVE_LEFT" - }, - { - "x": 52.76094539497847, - "y": -5310.811086891728, - "rotation": 0.7848461605398814, - "action": "CARVE_LEFT" - }, - { - "x": 55.743130919503535, - "y": -5314.56712511779, - "rotation": 0.7394675999880289, - "action": "CARVE_LEFT" - }, - { - "x": 58.541445087599016, - "y": -5318.491400670635, - "rotation": 0.6940890394361764, - "action": "CARVE_LEFT" - }, - { - "x": 61.15624614556071, - "y": -5322.584192535254, - "rotation": 0.6487104788843239, - "action": "CARVE_LEFT" - }, - { - "x": 63.58784043878617, - "y": -5326.8458265316385, - "rotation": 0.6033319183324714, - "action": "CARVE_LEFT" - }, - { - "x": 65.83648254980453, - "y": -5331.276675189413, - "rotation": 0.5579533577806188, - "action": "CARVE_LEFT" - }, - { - "x": 67.90237543596173, - "y": -5335.877157622792, - "rotation": 0.5125747972287663, - "action": "CARVE_LEFT" - }, - { - "x": 69.7856705667622, - "y": -5340.647739405838, - "rotation": 0.46719623667691373, - "action": "CARVE_LEFT" - }, - { - "x": 71.48646806086757, - "y": -5345.588932448048, - "rotation": 0.42181767612506116, - "action": "CARVE_LEFT" - }, - { - "x": 73.00481682275328, - "y": -5350.701294870232, - "rotation": 0.3764391155732086, - "action": "CARVE_LEFT" - }, - { - "x": 74.34071467902422, - "y": -5355.985430880724, - "rotation": 0.331060555021356, - "action": "CARVE_LEFT" - }, - { - "x": 75.49410851438962, - "y": -5361.441990651887, - "rotation": 0.28568199446950343, - "action": "CARVE_LEFT" - }, - { - "x": 76.46489440729866, - "y": -5367.071670196932, - "rotation": 0.24030343391765085, - "action": "CARVE_LEFT" - }, - { - "x": 77.25291776523707, - "y": -5372.875211247052, - "rotation": 0.19492487336579828, - "action": "CARVE_LEFT" - }, - { - "x": 77.85797345968595, - "y": -5378.853401128856, - "rotation": 0.1495463128139457, - "action": "CARVE_LEFT" - }, - { - "x": 78.2798059607433, - "y": -5385.0070726421145, - "rotation": 0.10416775226209313, - "action": "CARVE_LEFT" - }, - { - "x": 78.51810947140932, - "y": -5391.337103937813, - "rotation": 0.05878919171024056, - "action": "CARVE_LEFT" - }, - { - "x": 78.57252806153605, - "y": -5397.844418396504, - "rotation": 0.01341063115838799, - "action": "CARVE_LEFT" - }, - { - "x": 78.44267270993207, - "y": -5404.288641218156, - "rotation": 6.251217377786122, - "action": "CARVE_LEFT" - }, - { - "x": 78.12819361418163, - "y": -5410.5680531636435, - "rotation": 6.2058388172342696, - "action": "CARVE_LEFT" - }, - { - "x": 77.62879312172969, - "y": -5416.681759688012, - "rotation": 6.160460256682417, - "action": "CARVE_LEFT" - }, - { - "x": 76.94422559082253, - "y": -5422.628915642338, - "rotation": 6.115081696130565, - "action": "CARVE_LEFT" - }, - { - "x": 76.0742972517959, - "y": -5428.408725142816, - "rotation": 6.069703135578712, - "action": "CARVE_LEFT" - }, - { - "x": 75.01886606871005, - "y": -5434.020441440172, - "rotation": 6.02432457502686, - "action": "CARVE_LEFT" - }, - { - "x": 73.77784160133073, - "y": -5439.463366789403, - "rotation": 5.9789460144750075, - "action": "CARVE_LEFT" - }, - { - "x": 72.3511848674553, - "y": -5444.736852319838, - "rotation": 5.933567453923155, - "action": "NOTHING" - }, - { - "x": 70.78107977868305, - "y": -5449.880698991734, - "rotation": 5.9370581124271435, - "action": "NOTHING" - }, - { - "x": 69.22604953792614, - "y": -5455.041727847808, - "rotation": 5.940548770931132, - "action": "NOTHING" - }, - { - "x": 67.68610024217043, - "y": -5460.2199847521015, - "rotation": 5.94403942943512, - "action": "NOTHING" - }, - { - "x": 66.16123829653957, - "y": -5465.415515773531, - "rotation": 5.947530087939109, - "action": "NOTHING" - }, - { "x": 64.65147041348612, "y": -5470.6283671853, "rotation": 5.951020746443097, "action": "NOTHING" }, - { - "x": 63.1568036119846, - "y": -5475.8585854643125, - "rotation": 5.954511404947086, - "action": "NOTHING" - }, - { - "x": 61.677245216726504, - "y": -5481.106217290588, - "rotation": 5.958002063451074, - "action": "NOTHING" - }, - { - "x": 60.2128028573174, - "y": -5486.371309546678, - "rotation": 5.961492721955063, - "action": "NOTHING" - }, - { - "x": 58.76348446747596, - "y": -5491.653909317086, - "rotation": 5.964983380459051, - "action": "NOTHING" - }, - { - "x": 57.329298284235, - "y": -5496.9540638876815, - "rotation": 5.9684740389630395, - "action": "NOTHING" - }, - { - "x": 55.91025284714448, - "y": -5502.271820745128, - "rotation": 5.971964697467028, - "action": "NOTHING" - }, - { - "x": 54.50635699747647, - "y": -5507.607227576299, - "rotation": 5.975455355971016, - "action": "NOTHING" - }, - { - "x": 53.117619877432155, - "y": -5512.960332267707, - "rotation": 5.978946014475005, - "action": "NOTHING" - }, - { - "x": 51.74405092935069, - "y": -5518.331182904925, - "rotation": 5.982436672978993, - "action": "NOTHING" - }, - { - "x": 50.38565989492013, - "y": -5523.719827772019, - "rotation": 5.985927331482982, - "action": "NOTHING" - }, - { "x": 49.04245681439023, "y": -5529.12631535097, "rotation": 5.98941798998697, "action": "NOTHING" }, - { - "x": 47.714452025787246, - "y": -5534.550694321108, - "rotation": 5.992908648490959, - "action": "NOTHING" - }, - { - "x": 46.401656164130685, - "y": -5539.993013558542, - "rotation": 5.996399306994947, - "action": "NOTHING" - }, - { - "x": 45.10408016065195, - "y": -5545.453322135595, - "rotation": 5.9998899654989355, - "action": "NOTHING" - }, - { - "x": 43.82173524201495, - "y": -5550.931669320236, - "rotation": 6.003380624002924, - "action": "CARVE_RIGHT" - }, - { - "x": 42.85424152672332, - "y": -5556.705379943281, - "rotation": 6.048759184554776, - "action": "CARVE_RIGHT" - }, - { - "x": 42.07350979935976, - "y": -5562.656451876916, - "rotation": 6.094137745106629, - "action": "CARVE_RIGHT" - }, - { - "x": 41.47973590242995, - "y": -5568.785664256376, - "rotation": 6.139516305658481, - "action": "CARVE_RIGHT" - }, - { - "x": 41.073166109794315, - "y": -5575.093841716989, - "rotation": 6.184894866210334, - "action": "CARVE_RIGHT" - }, - { - "x": 40.854096992300015, - "y": -5581.581854272165, - "rotation": 6.230273426762186, - "action": "CARVE_RIGHT" - }, - { - "x": 40.822875283748715, - "y": -5588.250617191671, - "rotation": 6.275651987314038, - "action": "CARVE_RIGHT" - }, - { - "x": 40.97987404992778, - "y": -5594.809318575216, - "rotation": 0.03784524068630457, - "action": "CARVE_RIGHT" - }, - { - "x": 41.32542074055105, - "y": -5601.19921778575, - "rotation": 0.08322380123815715, - "action": "CARVE_RIGHT" - }, - { - "x": 41.8597907202709, - "y": -5607.419441630859, - "rotation": 0.12860236179000972, - "action": "CARVE_RIGHT" - }, - { - "x": 42.5832074075679, - "y": -5613.469166252886, - "rotation": 0.1739809223418623, - "action": "CARVE_RIGHT" - }, - { - "x": 43.49584241329322, - "y": -5619.347616998179, - "rotation": 0.21935948289371487, - "action": "CARVE_RIGHT" - }, - { - "x": 44.59781567886469, - "y": -5625.054068286662, - "rotation": 0.26473804344556745, - "action": "NOTHING" - }, - { - "x": 45.8068142487535, - "y": -5630.665475857073, - "rotation": 0.2612473849415788, - "action": "NOTHING" - }, - { - "x": 47.00038402429575, - "y": -5636.295261693195, - "rotation": 0.2577567264375901, - "action": "NOTHING" - }, - { - "x": 48.178512089672616, - "y": -5641.943476236096, - "rotation": 0.25426606793360146, - "action": "NOTHING" - }, - { - "x": 49.34118523872489, - "y": -5647.610170118714, - "rotation": 0.2507754094296128, - "action": "NOTHING" - }, - { - "x": 50.48838997571798, - "y": -5653.295394165303, - "rotation": 0.24728475092562413, - "action": "NOTHING" - }, - { - "x": 51.62011251610506, - "y": -5658.999199390878, - "rotation": 0.24379409242163547, - "action": "NOTHING" - }, - { - "x": 52.73633878728829, - "y": -5664.7216370006645, - "rotation": 0.2403034339176468, - "action": "NOTHING" - }, - { - "x": 53.83705442937817, - "y": -5670.462758389551, - "rotation": 0.23681277541365814, - "action": "NOTHING" - }, - { - "x": 54.92224479595098, - "y": -5676.222615141535, - "rotation": 0.23332211690966947, - "action": "NOTHING" - }, - { - "x": 55.99189495480437, - "y": -5682.001259029182, - "rotation": 0.2298314584056808, - "action": "NOTHING" - }, - { - "x": 57.04598968871107, - "y": -5687.798742013074, - "rotation": 0.22634079990169215, - "action": "NOTHING" - }, - { - "x": 58.08451349617067, - "y": -5693.61511624127, - "rotation": 0.22285014139770348, - "action": "NOTHING" - }, - { - "x": 59.10745059215965, - "y": -5699.450434048758, - "rotation": 0.21935948289371482, - "action": "NOTHING" - }, - { - "x": 60.11478490887943, - "y": -5705.3047479569195, - "rotation": 0.21586882438972615, - "action": "NOTHING" - }, - { - "x": 61.10650009650262, - "y": -5711.178110672983, - "rotation": 0.2123781658857375, - "action": "NOTHING" - }, - { - "x": 62.082579523917424, - "y": -5717.070575089491, - "rotation": 0.20888750738174883, - "action": "NOTHING" - }, - { - "x": 63.043006279470156, - "y": -5722.982194283759, - "rotation": 0.20539684887776016, - "action": "NOTHING" - }, - { - "x": 63.987763171705936, - "y": -5728.913021517341, - "rotation": 0.2019061903737715, - "action": "NOTHING" - }, - { - "x": 64.91683273010756, - "y": -5734.863110235496, - "rotation": 0.19841553186978284, - "action": "NOTHING" - }, - { - "x": 65.83019720583248, - "y": -5740.832514066653, - "rotation": 0.19492487336579417, - "action": "NOTHING" - }, - { - "x": 66.72783857244804, - "y": -5746.821286821881, - "rotation": 0.1914342148618055, - "action": "NOTHING" - }, - { - "x": 67.60973852666476, - "y": -5752.829482494356, - "rotation": 0.18794355635781684, - "action": "NOTHING" - }, - { - "x": 68.47587848906792, - "y": -5758.857155258836, - "rotation": 0.18445289785382818, - "action": "NOTHING" - }, - { - "x": 69.3262396048473, - "y": -5764.904359471133, - "rotation": 0.18096223934983952, - "action": "NOTHING" - }, - { - "x": 70.160802744525, - "y": -5770.971149667582, - "rotation": 0.17747158084585085, - "action": "NOTHING" - }, - { - "x": 70.97954850468159, - "y": -5777.057580564522, - "rotation": 0.1739809223418622, - "action": "NOTHING" - }, - { - "x": 71.78245720868037, - "y": -5783.163707057772, - "rotation": 0.17049026383787352, - "action": "NOTHING" - }, - { - "x": 72.56950890738986, - "y": -5789.289584222104, - "rotation": 0.16699960533388486, - "action": "NOTHING" - }, - { - "x": 73.34068337990449, - "y": -5795.435267310729, - "rotation": 0.1635089468298962, - "action": "CARVE_LEFT" - }, - { - "x": 73.84248467095405, - "y": -5801.835371257836, - "rotation": 0.11813038627804362, - "action": "CARVE_LEFT" - }, - { - "x": 74.15177621869438, - "y": -5808.419322877458, - "rotation": 0.07275182572619104, - "action": "CARVE_LEFT" - }, - { - "x": 74.2682537308267, - "y": -5815.187999392569, - "rotation": 0.027373265174338475, - "action": "CARVE_LEFT" - }, - { - "x": 74.19156812970311, - "y": -5821.999826504529, - "rotation": 6.265180011802072, - "action": "CARVE_LEFT" - }, - { - "x": 73.92138954628086, - "y": -5828.638180403364, - "rotation": 6.21980145125022, - "action": "CARVE_LEFT" - }, - { - "x": 73.45744019623467, - "y": -5835.102185840786, - "rotation": 6.174422890698367, - "action": "CARVE_LEFT" - }, - { - "x": 72.7994942410782, - "y": -5841.3910169025885, - "rotation": 6.129044330146515, - "action": "CARVE_LEFT" - }, - { - "x": 71.9473776496326, - "y": -5847.503896877904, - "rotation": 6.0836657695946625, - "action": "CARVE_LEFT" - }, - { - "x": 70.90096805984147, - "y": -5853.440098128785, - "rotation": 6.03828720904281, - "action": "CARVE_LEFT" - }, - { - "x": 69.66019464093128, - "y": -5859.198941960117, - "rotation": 5.992908648490958, - "action": "CARVE_LEFT" - }, - { - "x": 68.22503795591643, - "y": -5864.779798489845, - "rotation": 5.947530087939105, - "action": "CARVE_LEFT" - }, - { - "x": 66.59552982444833, - "y": -5870.182086519536, - "rotation": 5.902151527387253, - "action": "CARVE_LEFT" - }, - { - "x": 64.7717531860073, - "y": -5875.405273405251, - "rotation": 5.8567729668354005, - "action": "CARVE_LEFT" - }, - { - "x": 62.753841963436834, - "y": -5880.448874928751, - "rotation": 5.811394406283548, - "action": "CARVE_LEFT" - }, - { - "x": 60.541980926819164, - "y": -5885.312455169013, - "rotation": 5.766015845731696, - "action": "CARVE_LEFT" - }, - { - "x": 58.136405557691425, - "y": -5889.995626374076, - "rotation": 5.720637285179843, - "action": "CARVE_LEFT" - }, - { - "x": 55.537401913601556, - "y": -5894.498048833197, - "rotation": 5.675258724627991, - "action": "CARVE_LEFT" - }, - { - "x": 52.74530649300312, - "y": -5898.819430749335, - "rotation": 5.6298801640761384, - "action": "CARVE_LEFT" - }, - { - "x": 49.76050610048826, - "y": -5902.9595281119455, - "rotation": 5.584501603524286, - "action": "CARVE_LEFT" - }, - { - "x": 46.583437712357934, - "y": -5906.918144570095, - "rotation": 5.539123042972434, - "action": "CARVE_LEFT" - }, - { - "x": 43.2145883425287, - "y": -5910.695131305895, - "rotation": 5.493744482420581, - "action": "CARVE_LEFT" - }, - { - "x": 39.65449490877511, - "y": -5914.290386908245, - "rotation": 5.448365921868729, - "action": "CARVE_LEFT" - }, - { - "x": 35.90374409930705, - "y": -5917.703857246894, - "rotation": 5.402987361316876, - "action": "CARVE_LEFT" - }, - { - "x": 31.962972239681083, - "y": -5920.935535346819, - "rotation": 5.357608800765024, - "action": "NOTHING" - }, - { - "x": 27.604076118825496, - "y": -5923.774972891412, - "rotation": 5.361099459269012, - "action": "NOTHING" - }, - { - "x": 23.264858950835325, - "y": -5926.627600070648, - "rotation": 5.364590117773001, - "action": "NOTHING" - }, - { - "x": 18.94526089065065, - "y": -5929.493418202337, - "rotation": 5.368080776276989, - "action": "NOTHING" - }, - { - "x": 14.64522257278114, - "y": -5932.372428934875, - "rotation": 5.371571434780978, - "action": "NOTHING" - }, - { - "x": 10.364685110075143, - "y": -5935.264634246331, - "rotation": 5.375062093284966, - "action": "NOTHING" - }, - { - "x": 6.103590092491805, - "y": -5938.170036443539, - "rotation": 5.378552751788955, - "action": "NOTHING" - }, - { - "x": 1.8618795858761619, - "y": -5941.0886381611845, - "rotation": 5.382043410292943, - "action": "NOTHING" - }, - { - "x": -2.3605038692627476, - "y": -5944.020442360904, - "rotation": 5.3855340687969315, - "action": "NOTHING" - }, - { - "x": -6.563617258970814, - "y": -5946.965452330379, - "rotation": 5.38902472730092, - "action": "NOTHING" - }, - { - "x": -10.747517097064796, - "y": -5949.923671682434, - "rotation": 5.392515385804908, - "action": "NOTHING" - }, - { - "x": -14.91225942634529, - "y": -5952.895104354142, - "rotation": 5.396006044308897, - "action": "NOTHING" - }, - { - "x": -19.05789981980675, - "y": -5955.8797546059195, - "rotation": 5.399496702812885, - "action": "NOTHING" - }, - { - "x": -23.184493381844522, - "y": -5958.877627020642, - "rotation": 5.402987361316874, - "action": "NOTHING" - }, - { - "x": -27.292094749458965, - "y": -5961.888726502743, - "rotation": 5.406478019820862, - "action": "NOTHING" - }, - { - "x": -31.380758093456606, - "y": -5964.913058277333, - "rotation": 5.409968678324851, - "action": "CARVE_RIGHT" - }, - { - "x": -34.86707899943764, - "y": -5968.490726889499, - "rotation": 5.455347238876703, - "action": "CARVE_RIGHT" - }, - { - "x": -38.16046819743428, - "y": -5972.243263771902, - "rotation": 5.500725799428555, - "action": "CARVE_RIGHT" - }, - { - "x": -41.26141767684094, - "y": -5976.1708275898745, - "rotation": 5.546104359980408, - "action": "CARVE_RIGHT" - }, - { - "x": -44.170367160120605, - "y": -5980.273624175632, - "rotation": 5.59148292053226, - "action": "CARVE_RIGHT" - }, - { - "x": -46.88770424176375, - "y": -5984.551906402066, - "rotation": 5.636861481084113, - "action": "CARVE_RIGHT" - }, - { - "x": -49.41376452690058, - "y": -5989.005974056853, - "rotation": 5.682240041635965, - "action": "NOTHING" - }, - { - "x": -52.20395940456624, - "y": -5993.2148992400225, - "rotation": 5.6857307001399535, - "action": "NOTHING" - }, - { "x": -54.9776377881316, "y": -5997.4385918823, "rotation": 5.689221358643942, "action": "NOTHING" }, - { - "x": -57.73482157290311, - "y": -6001.677079428101, - "rotation": 5.69271201714793, - "action": "NOTHING" - }, - { - "x": -60.47553227210282, - "y": -6005.9303895801895, - "rotation": 5.696202675651919, - "action": "NOTHING" - }, - { - "x": -63.19979101786114, - "y": -6010.1985502989455, - "rotation": 5.699693334155907, - "action": "NOTHING" - }, - { - "x": -65.90761856220713, - "y": -6014.481589801641, - "rotation": 5.703183992659896, - "action": "NOTHING" - }, - { - "x": -68.59903527805642, - "y": -6018.779536561716, - "rotation": 5.706674651163884, - "action": "NOTHING" - }, - { - "x": -71.2740611601966, - "y": -6023.092419308051, - "rotation": 5.710165309667873, - "action": "NOTHING" - }, - { - "x": -73.93271582627027, - "y": -6027.420267024254, - "rotation": 5.713655968171861, - "action": "CARVE_RIGHT" - }, - { - "x": -76.134761113529, - "y": -6032.170614692589, - "rotation": 5.7590345287237135, - "action": "CARVE_RIGHT" - }, - { - "x": -78.1462584807534, - "y": -6037.097716350167, - "rotation": 5.804413089275566, - "action": "CARVE_RIGHT" - }, - { - "x": -79.96735244054457, - "y": -6042.202044214231, - "rotation": 5.849791649827418, - "action": "CARVE_RIGHT" - }, - { - "x": -81.59813616292497, - "y": -6047.484116829399, - "rotation": 5.895170210379271, - "action": "CARVE_RIGHT" - }, - { - "x": -83.0386516119899, - "y": -6052.944498943556, - "rotation": 5.940548770931123, - "action": "CARVE_RIGHT" - }, - { - "x": -84.28888968221773, - "y": -6058.583801384064, - "rotation": 5.9859273314829755, - "action": "CARVE_RIGHT" - }, - { - "x": -85.34879033443967, - "y": -6064.402680934276, - "rotation": 6.031305892034828, - "action": "CARVE_RIGHT" - }, - { - "x": -86.21824273147003, - "y": -6070.401840210363, - "rotation": 6.07668445258668, - "action": "CARVE_RIGHT" - }, - { - "x": -86.89708537339763, - "y": -6076.582027538449, - "rotation": 6.122063013138533, - "action": "CARVE_RIGHT" - }, - { - "x": -87.38510623253926, - "y": -6082.944036832055, - "rotation": 6.167441573690385, - "action": "CARVE_RIGHT" - }, - { - "x": -87.68204288805592, - "y": -6089.4887074698445, - "rotation": 6.212820134242238, - "action": "CARVE_RIGHT" - }, - { - "x": -87.7875826602328, - "y": -6096.216924173687, - "rotation": 6.25819869479409, - "action": "CARVE_RIGHT" - }, - { - "x": -87.70136962449973, - "y": -6102.969411506171, - "rotation": 0.020391948166356144, - "action": "CARVE_RIGHT" - }, - { - "x": -87.42307094197012, - "y": -6109.549797842921, - "rotation": 0.06577050871820872, - "action": "CARVE_RIGHT" - }, - { - "x": -86.95240586829689, - "y": -6115.957205056631, - "rotation": 0.1111490692700613, - "action": "CARVE_RIGHT" - }, - { - "x": -86.28914561476644, - "y": -6122.190804363422, - "rotation": 0.15652762982191387, - "action": "CARVE_RIGHT" - }, - { - "x": -85.43311320973989, - "y": -6128.249816192072, - "rotation": 0.20190619037376645, - "action": "CARVE_RIGHT" - }, - { - "x": -84.38418336044074, - "y": -6134.133510053574, - "rotation": 0.24728475092561902, - "action": "CARVE_RIGHT" - }, - { - "x": -83.14228231508814, - "y": -6139.841204411022, - "rotation": 0.2926633114774716, - "action": "CARVE_RIGHT" - }, - { - "x": -81.70738772537482, - "y": -6145.372266549812, - "rotation": 0.3380418720293242, - "action": "CARVE_RIGHT" - }, - { - "x": -80.07952850928902, - "y": -6150.726112448177, - "rotation": 0.38342043258117675, - "action": "CARVE_RIGHT" - }, - { - "x": -78.25878471427954, - "y": -6155.90220664804, - "rotation": 0.4287989931330293, - "action": "CARVE_RIGHT" - }, - { - "x": -76.245287380763, - "y": -6160.900062126185, - "rotation": 0.4741775536848819, - "action": "CARVE_RIGHT" - }, - { - "x": -74.03921840597255, - "y": -6165.719240165755, - "rotation": 0.5195561142367344, - "action": "CARVE_RIGHT" - }, - { - "x": -71.64081040814729, - "y": -6170.359350228069, - "rotation": 0.5649346747885869, - "action": "CARVE_RIGHT" - }, - { - "x": -69.05034659106144, - "y": -6174.820049824756, - "rotation": 0.6103132353404395, - "action": "CARVE_RIGHT" - }, - { - "x": -66.26816060889252, - "y": -6179.10104439021, - "rotation": 0.655691795892292, - "action": "CARVE_RIGHT" - }, - { - "x": -63.294636431427705, - "y": -6183.202087154359, - "rotation": 0.7010703564441445, - "action": "CARVE_RIGHT" - }, - { - "x": -60.130208209607616, - "y": -6187.12297901576, - "rotation": 0.746448916995997, - "action": "CARVE_RIGHT" - }, - { - "x": -56.775360141406594, - "y": -6190.863568415003, - "rotation": 0.7918274775478495, - "action": "NOTHING" - }, - { - "x": -53.06593624126877, - "y": -6194.2726137114105, - "rotation": 0.7883368190438609, - "action": "NOTHING" - }, - { - "x": -49.37465321492009, - "y": -6197.695276098801, - "rotation": 0.7848461605398722, - "action": "NOTHING" - }, - { - "x": -45.701467311265255, - "y": -6201.131568093597, - "rotation": 0.7813555020358836, - "action": "NOTHING" - }, - { - "x": -42.04633521772071, - "y": -6204.581502512196, - "rotation": 0.7778648435318949, - "action": "NOTHING" - }, - { - "x": -38.409214059083595, - "y": -6208.045092470137, - "rotation": 0.7743741850279062, - "action": "NOTHING" - }, - { - "x": -34.79006139640346, - "y": -6211.522351381267, - "rotation": 0.7708835265239176, - "action": "NOTHING" - }, - { - "x": -31.18883522585675, - "y": -6215.01329295691, - "rotation": 0.7673928680199289, - "action": "NOTHING" - }, - { - "x": -27.605493977624086, - "y": -6218.517931205037, - "rotation": 0.7639022095159402, - "action": "NOTHING" - }, - { - "x": -24.039996514770234, - "y": -6222.036280429441, - "rotation": 0.7604115510119516, - "action": "NOTHING" - }, - { - "x": -20.492302132126856, - "y": -6225.568355228913, - "rotation": 0.7569208925079629, - "action": "NOTHING" - }, - { - "x": -16.962370555177994, - "y": -6229.114170496418, - "rotation": 0.7534302340039742, - "action": "NOTHING" - }, - { - "x": -13.450161938948279, - "y": -6232.673741418276, - "rotation": 0.7499395754999856, - "action": "NOTHING" - }, - { - "x": -9.955636866893864, - "y": -6236.247083473342, - "rotation": 0.7464489169959969, - "action": "NOTHING" - }, - { - "x": -6.47875634979608, - "y": -6239.8342124321925, - "rotation": 0.7429582584920082, - "action": "NOTHING" - }, - { - "x": -3.019481824657802, - "y": -6243.435144356309, - "rotation": 0.7394675999880196, - "action": "NOTHING" - }, - { - "x": 0.4222248463974796, - "y": -6247.049895597269, - "rotation": 0.7359769414840309, - "action": "NOTHING" - }, - { - "x": 3.8464013772238923, - "y": -6250.678482795932, - "rotation": 0.7324862829800423, - "action": "NOTHING" - }, - { - "x": 7.2530850587487175, - "y": -6254.320922881636, - "rotation": 0.7289956244760536, - "action": "NOTHING" - }, - { - "x": 10.642312760065241, - "y": -6257.9772330713895, - "rotation": 0.7255049659720649, - "action": "NOTHING" - }, - { - "x": 14.014120929522933, - "y": -6261.647430869069, - "rotation": 0.7220143074680763, - "action": "NOTHING" - }, - { - "x": 17.368545595814936, - "y": -6265.331534064615, - "rotation": 0.7185236489640876, - "action": "NOTHING" - }, - { - "x": 20.7056223690629, - "y": -6269.029560733238, - "rotation": 0.7150329904600989, - "action": "NOTHING" - }, - { - "x": 24.025386441899165, - "y": -6272.741529234615, - "rotation": 0.7115423319561103, - "action": "NOTHING" - }, - { - "x": 27.327872590546257, - "y": -6276.467458212098, - "rotation": 0.7080516734521216, - "action": "NOTHING" - }, - { - "x": 30.613115175893775, - "y": -6280.207366591918, - "rotation": 0.704561014948133, - "action": "NOTHING" - }, - { - "x": 33.881148144572606, - "y": -6283.961273582396, - "rotation": 0.7010703564441443, - "action": "NOTHING" - }, - { - "x": 37.132005030026534, - "y": -6287.729198673153, - "rotation": 0.6975796979401556, - "action": "NOTHING" - }, - { - "x": 40.36571895358117, - "y": -6291.511161634324, - "rotation": 0.694089039436167, - "action": "NOTHING" - }, - { - "x": 43.58232262551033, - "y": -6295.307182515768, - "rotation": 0.6905983809321783, - "action": "NOTHING" - }, - { - "x": 46.781848346099714, - "y": -6299.11728164629, - "rotation": 0.6871077224281896, - "action": "NOTHING" - }, - { - "x": 49.96432800670806, - "y": -6302.941479632861, - "rotation": 0.683617063924201, - "action": "NOTHING" - }, - { - "x": 53.129793090825615, - "y": -6306.779797359831, - "rotation": 0.6801264054202123, - "action": "CARVE_LEFT" - }, - { - "x": 55.78795224205071, - "y": -6311.086118241012, - "rotation": 0.6347478448683598, - "action": "CARVE_LEFT" - }, - { - "x": 58.25567132843176, - "y": -6315.5676580699255, - "rotation": 0.5893692843165073, - "action": "CARVE_LEFT" - }, - { - "x": 60.533217902698894, - "y": -6320.224778008121, - "rotation": 0.5439907237646547, - "action": "CARVE_LEFT" - }, - { - "x": 62.62080784848509, - "y": -6325.057885841112, - "rotation": 0.49861216321280216, - "action": "CARVE_LEFT" - }, - { - "x": 64.51860551779156, - "y": -6330.067435853531, - "rotation": 0.4532336026609496, - "action": "CARVE_LEFT" - }, - { - "x": 66.2267238681099, - "y": -6335.253928704594, - "rotation": 0.407855042109097, - "action": "CARVE_LEFT" - }, - { - "x": 67.74522459920199, - "y": -6340.61791130388, - "rotation": 0.36247648155724443, - "action": "CARVE_LEFT" - }, - { - "x": 69.07411828953823, - "y": -6346.159976687419, - "rotation": 0.31709792100539186, - "action": "CARVE_LEFT" - }, - { - "x": 70.21336453239513, - "y": -6351.880763894091, - "rotation": 0.2717193604535393, - "action": "CARVE_LEFT" - }, - { - "x": 71.16287207161295, - "y": -6357.780957842337, - "rotation": 0.2263407999016867, - "action": "CARVE_LEFT" - }, - { - "x": 71.9224989370143, - "y": -6363.861289207178, - "rotation": 0.18096223934983413, - "action": "CARVE_LEFT" - }, - { - "x": 72.49205257948442, - "y": -6370.122534297543, - "rotation": 0.13558367879798155, - "action": "CARVE_LEFT" - }, - { - "x": 72.87129000571402, - "y": -6376.565514933903, - "rotation": 0.09020511824612898, - "action": "CARVE_LEFT" - }, - { - "x": 73.05991791260543, - "y": -6383.1910983262105, - "rotation": 0.04482655769427641, - "action": "CARVE_LEFT" - }, - { - "x": 73.05759282638445, - "y": -6389.995876472793, - "rotation": 6.28263330432201, - "action": "CARVE_LEFT" - }, - { - "x": 72.86395653915133, - "y": -6396.629586710028, - "rotation": 6.2372547437701575, - "action": "CARVE_LEFT" - }, - { - "x": 72.47870300603081, - "y": -6403.091326852182, - "rotation": 6.191876183218305, - "action": "CARVE_LEFT" - }, - { - "x": 71.90157820609362, - "y": -6409.380244121462, - "rotation": 6.146497622666453, - "action": "CARVE_LEFT" - }, - { - "x": 71.13238000362566, - "y": -6415.495535017089, - "rotation": 6.1011190621146, - "action": "CARVE_LEFT" - }, - { - "x": 70.17095800974406, - "y": -6421.436445184692, - "rotation": 6.055740501562748, - "action": "CARVE_LEFT" - }, - { - "x": 69.01721344435919, - "y": -6427.20226928603, - "rotation": 6.0103619410108955, - "action": "CARVE_LEFT" - }, - { - "x": 67.67109899848182, - "y": -6432.792350869038, - "rotation": 5.964983380459043, - "action": "CARVE_LEFT" - }, - { - "x": 66.13261869687469, - "y": -6438.2060822382, - "rotation": 5.919604819907191, - "action": "CARVE_LEFT" - }, - { - "x": 64.40182776104746, - "y": -6443.442904325238, - "rotation": 5.874226259355338, - "action": "CARVE_LEFT" - }, - { - "x": 62.47883247259448, - "y": -6448.502306560128, - "rotation": 5.828847698803486, - "action": "CARVE_LEFT" - }, - { - "x": 60.36379003687438, - "y": -6453.383826742441, - "rotation": 5.7834691382516334, - "action": "CARVE_LEFT" - }, - { - "x": 58.05690844703061, - "y": -6458.087050912992, - "rotation": 5.738090577699781, - "action": "CARVE_LEFT" - }, - { - "x": 55.558446348352355, - "y": -6462.611613225824, - "rotation": 5.692712017147929, - "action": "CARVE_LEFT" - }, - { - "x": 52.86871290297476, - "y": -6466.957195820503, - "rotation": 5.647333456596076, - "action": "CARVE_LEFT" - }, - { - "x": 49.98806765491772, - "y": -6471.12352869473, - "rotation": 5.601954896044224, - "action": "CARVE_LEFT" - }, - { - "x": 46.916920395462576, - "y": -6475.110389577276, - "rotation": 5.556576335492371, - "action": "CARVE_LEFT" - }, - { - "x": 43.65573102886561, - "y": -6478.917603801228, - "rotation": 5.511197774940519, - "action": "CARVE_LEFT" - }, - { - "x": 40.205009438407835, - "y": -6482.545044177559, - "rotation": 5.465819214388667, - "action": "NOTHING" - }, - { - "x": 36.38922144113285, - "y": -6485.830934284146, - "rotation": 5.469309872892655, - "action": "NOTHING" - }, - { - "x": 32.59173369242068, - "y": -6489.130296964644, - "rotation": 5.4728005313966435, - "action": "NOTHING" - }, - { - "x": 28.812499783975927, - "y": -6492.443142859278, - "rotation": 5.476291189900632, - "action": "NOTHING" - }, - { - "x": 25.051473752728516, - "y": -6495.769482913296, - "rotation": 5.47978184840462, - "action": "NOTHING" - }, - { - "x": 21.308610079686456, - "y": -6499.109328376122, - "rotation": 5.483272506908609, - "action": "NOTHING" - }, - { - "x": 17.583863688791368, - "y": -6502.462690800511, - "rotation": 5.486763165412597, - "action": "NOTHING" - }, - { - "x": 13.877189945776827, - "y": -6505.829582041704, - "rotation": 5.490253823916586, - "action": "NOTHING" - }, - { - "x": 10.188544657029503, - "y": -6509.210014256589, - "rotation": 5.493744482420574, - "action": "NOTHING" - }, - { - "x": 6.517884068453078, - "y": -6512.603999902859, - "rotation": 5.497235140924563, - "action": "NOTHING" - }, - { - "x": 2.8651648643349588, - "y": -6516.011551738176, - "rotation": 5.500725799428551, - "action": "NOTHING" - }, - { - "x": -0.7696558337842436, - "y": -6519.43268281934, - "rotation": 5.504216457932539, - "action": "NOTHING" - }, - { - "x": -4.3866204682384655, - "y": -6522.8674065014475, - "rotation": 5.507707116436528, - "action": "NOTHING" - }, - { - "x": -7.985771046361174, - "y": -6526.31573643707, - "rotation": 5.511197774940516, - "action": "NOTHING" - }, - { - "x": -11.567149141607604, - "y": -6529.77768657542, - "rotation": 5.514688433444505, - "action": "NOTHING" - }, - { - "x": -15.13079589467424, - "y": -6533.253271161527, - "rotation": 5.518179091948493, - "action": "NOTHING" - }, - { - "x": -18.67675201461556, - "y": -6536.742504735411, - "rotation": 5.521669750452482, - "action": "NOTHING" - }, - { - "x": -22.205057779958032, - "y": -6540.245402131263, - "rotation": 5.52516040895647, - "action": "NOTHING" - }, - { - "x": -25.715753039811403, - "y": -6543.761978476626, - "rotation": 5.5286510674604585, - "action": "NOTHING" - }, - { - "x": -29.20887721497724, - "y": -6547.29224919157, - "rotation": 5.532141725964447, - "action": "CARVE_RIGHT" - }, - { - "x": -32.16157476576801, - "y": -6551.32025159278, - "rotation": 5.577520286516299, - "action": "CARVE_RIGHT" - }, - { - "x": -34.923557731870346, - "y": -6555.52279022944, - "rotation": 5.622898847068152, - "action": "CARVE_RIGHT" - }, - { - "x": -37.49517371540654, - "y": -6559.900154017087, - "rotation": 5.668277407620004, - "action": "CARVE_RIGHT" - }, - { - "x": -39.87671843679202, - "y": -6564.452678688334, - "rotation": 5.713655968171857, - "action": "CARVE_RIGHT" - }, - { - "x": -42.06843587273099, - "y": -6569.1807466675455, - "rotation": 5.759034528723709, - "action": "CARVE_RIGHT" - }, - { - "x": -44.07051839386756, - "y": -6574.084786945814, - "rotation": 5.804413089275561, - "action": "CARVE_RIGHT" - }, - { - "x": -45.8831069020933, - "y": -6579.165274956263, - "rotation": 5.849791649827414, - "action": "NOTHING" - }, - { - "x": -47.88138581791333, - "y": -6584.0755624029825, - "rotation": 5.853282308331402, - "action": "NOTHING" - }, - { - "x": -49.86396075457599, - "y": -6589.002168766672, - "rotation": 5.856772966835391, - "action": "NOTHING" - }, - { - "x": -51.8308357123284, - "y": -6593.945133453675, - "rotation": 5.860263625339379, - "action": "NOTHING" - }, - { - "x": -53.78201435615944, - "y": -6598.9044960945375, - "rotation": 5.863754283843368, - "action": "NOTHING" - }, - { - "x": -55.71750001667681, - "y": -6603.880296543371, - "rotation": 5.867244942347356, - "action": "NOTHING" - }, - { - "x": -57.63729569098186, - "y": -6608.872574877212, - "rotation": 5.8707356008513445, - "action": "NOTHING" - }, - { - "x": -59.54140404354233, - "y": -6613.881371395388, - "rotation": 5.874226259355333, - "action": "NOTHING" - }, - { - "x": -61.429827407062874, - "y": -6618.90672661888, - "rotation": 5.877716917859321, - "action": "NOTHING" - }, - { - "x": -63.30256778335347, - "y": -6623.948681289694, - "rotation": 5.88120757636331, - "action": "NOTHING" - }, - { - "x": -65.15962684419563, - "y": -6629.007276370224, - "rotation": 5.884698234867298, - "action": "NOTHING" - }, - { - "x": -67.00100593220657, - "y": -6634.082553042626, - "rotation": 5.888188893371287, - "action": "NOTHING" - }, - { - "x": -68.82670606170112, - "y": -6639.17455270819, - "rotation": 5.891679551875275, - "action": "NOTHING" - }, - { - "x": -70.63672791955159, - "y": -6644.283316986712, - "rotation": 5.895170210379264, - "action": "NOTHING" - }, - { - "x": -72.4310718660455, - "y": -6649.408887715868, - "rotation": 5.898660868883252, - "action": "NOTHING" - }, - { - "x": -74.20973793574112, - "y": -6654.551306950596, - "rotation": 5.9021515273872405, - "action": "NOTHING" - }, - { - "x": -75.972725838321, - "y": -6659.7106169624685, - "rotation": 5.905642185891229, - "action": "NOTHING" - }, - { - "x": -77.7200349594433, - "y": -6664.886860239076, - "rotation": 5.909132844395217, - "action": "NOTHING" - }, - { - "x": -79.45166436159107, - "y": -6670.080079483407, - "rotation": 5.912623502899206, - "action": "CARVE_LEFT" - }, - { - "x": -81.2012737764191, - "y": -6675.257796695177, - "rotation": 5.867244942347353, - "action": "CARVE_LEFT" - }, - { - "x": -83.14191667627935, - "y": -6680.259168218842, - "rotation": 5.821866381795501, - "action": "CARVE_LEFT" - }, - { - "x": -85.27343267647734, - "y": -6685.0837348177465, - "rotation": 5.776487821243649, - "action": "CARVE_LEFT" - }, - { - "x": -87.59561061145135, - "y": -6689.731085490037, - "rotation": 5.731109260691796, - "action": "CARVE_LEFT" - }, - { - "x": -90.10818867039661, - "y": -6694.200857340654, - "rotation": 5.685730700139944, - "action": "CARVE_LEFT" - }, - { - "x": -92.81085453255014, - "y": -6698.492735453644, - "rotation": 5.640352139588091, - "action": "NOTHING" - }, - { - "x": -95.7970107756791, - "y": -6702.520986400396, - "rotation": 5.64384279809208, - "action": "NOTHING" - }, - { - "x": -98.76638804107354, - "y": -6706.563686303713, - "rotation": 5.647333456596068, - "action": "NOTHING" - }, - { - "x": -101.71901278201487, - "y": -6710.620859510751, - "rotation": 5.650824115100057, - "action": "NOTHING" - }, - { - "x": -104.6549110578941, - "y": -6714.692530635695, - "rotation": 5.654314773604045, - "action": "NOTHING" - }, - { - "x": -107.5741085352336, - "y": -6718.778724559014, - "rotation": 5.6578054321080335, - "action": "NOTHING" - }, - { - "x": -110.47663048870642, - "y": -6722.879466426708, - "rotation": 5.661296090612022, - "action": "NOTHING" - }, - { - "x": -113.36250180215289, - "y": -6726.9947816495605, - "rotation": 5.66478674911601, - "action": "NOTHING" - }, - { - "x": -116.23174696959497, - "y": -6731.124695902397, - "rotation": 5.668277407619999, - "action": "NOTHING" - }, - { - "x": -119.08439009624789, - "y": -6735.26923512334, - "rotation": 5.671768066123987, - "action": "NOTHING" - }, - { - "x": -121.9204548995295, - "y": -6739.428425513067, - "rotation": 5.675258724627976, - "action": "NOTHING" - }, - { - "x": -124.73996471006696, - "y": -6743.602293534074, - "rotation": 5.678749383131964, - "action": "NOTHING" - }, - { - "x": -127.54294247270104, - "y": -6747.790865909937, - "rotation": 5.682240041635953, - "action": "NOTHING" - }, - { - "x": -130.329410747488, - "y": -6751.994169624574, - "rotation": 5.685730700139941, - "action": "NOTHING" - }, - { - "x": -133.09939171069888, - "y": -6756.212231921517, - "rotation": 5.6892213586439295, - "action": "NOTHING" - }, - { - "x": -135.85290715581647, - "y": -6760.445080303174, - "rotation": 5.692712017147918, - "action": "NOTHING" - }, - { - "x": -138.5899784945297, - "y": -6764.6927425301055, - "rotation": 5.696202675651906, - "action": "NOTHING" - }, - { - "x": -141.31062675772566, - "y": -6768.955246620293, - "rotation": 5.699693334155895, - "action": "NOTHING" - }, - { - "x": -144.01487259647917, - "y": -6773.232620848414, - "rotation": 5.703183992659883, - "action": "NOTHING" - }, - { - "x": -146.70273628303985, - "y": -6777.524893745117, - "rotation": 5.706674651163872, - "action": "NOTHING" - }, - { - "x": -149.37423771181696, - "y": -6781.832094096302, - "rotation": 5.71016530966786, - "action": "NOTHING" - }, - { - "x": -152.02939640036152, - "y": -6786.154250942397, - "rotation": 5.713655968171849, - "action": "NOTHING" - }, - { - "x": -154.66823149034622, - "y": -6790.491393577642, - "rotation": 5.717146626675837, - "action": "NOTHING" - }, - { - "x": -157.29076174854285, - "y": -6794.843551549371, - "rotation": 5.7206372851798255, - "action": "NOTHING" - }, - { - "x": -159.8970055677974, - "y": -6799.210754657298, - "rotation": 5.724127943683814, - "action": "NOTHING" - }, - { - "x": -162.48698096800263, - "y": -6803.593032952803, - "rotation": 5.727618602187802, - "action": "CARVE_RIGHT" - }, - { - "x": -164.6275393571254, - "y": -6808.39135659002, - "rotation": 5.772997162739655, - "action": "CARVE_RIGHT" - }, - { - "x": -166.57785739068896, - "y": -6813.366354013915, - "rotation": 5.818375723291507, - "action": "CARVE_RIGHT" - }, - { - "x": -168.3380627498663, - "y": -6818.518512617226, - "rotation": 5.86375428384336, - "action": "CARVE_RIGHT" - }, - { - "x": -169.90823181838093, - "y": -6823.848366079101, - "rotation": 5.909132844395212, - "action": "CARVE_RIGHT" - }, - { - "x": -171.28838981904494, - "y": -6829.3564942410885, - "rotation": 5.954511404947064, - "action": "NOTHING" - }, - { - "x": -172.8063009235741, - "y": -6834.740153748623, - "rotation": 5.958002063451053, - "action": "NOTHING" - }, - { - "x": -174.30860841554724, - "y": -6840.141382066989, - "rotation": 5.961492721955041, - "action": "NOTHING" - }, - { - "x": -175.79530615814167, - "y": -6845.560225303052, - "rotation": 5.96498338045903, - "action": "NOTHING" - }, - { - "x": -177.26638770598328, - "y": -6850.996729768527, - "rotation": 5.968474038963018, - "action": "NOTHING" - }, - { - "x": -178.72184630595734, - "y": -6856.450941979384, - "rotation": 5.971964697467007, - "action": "NOTHING" - }, - { - "x": -180.16167489801717, - "y": -6861.922908655265, - "rotation": 5.975455355970995, - "action": "NOTHING" - }, - { - "x": -181.58586611599088, - "y": -6867.4126767188945, - "rotation": 5.9789460144749835, - "action": "NOTHING" - }, - { - "x": -182.99441228838623, - "y": -6872.920293295498, - "rotation": 5.982436672978972, - "action": "NOTHING" - }, - { - "x": -184.38730543919323, - "y": -6878.4458057122165, - "rotation": 5.98592733148296, - "action": "NOTHING" - }, - { - "x": -185.76453728868495, - "y": -6883.989261497528, - "rotation": 5.989417989986949, - "action": "NOTHING" - }, - { - "x": -187.12609925421634, - "y": -6889.550708380665, - "rotation": 5.992908648490937, - "action": "NOTHING" - }, - { - "x": -188.47198245102098, - "y": -6895.130194291038, - "rotation": 5.996399306994926, - "action": "NOTHING" - }, - { - "x": -189.80217769300586, - "y": -6900.727767357657, - "rotation": 5.999889965498914, - "action": "NOTHING" - }, - { - "x": -191.11667549354428, - "y": -6906.343475908559, - "rotation": 6.003380624002903, - "action": "NOTHING" - }, - { - "x": -192.41546606626673, - "y": -6911.977368470231, - "rotation": 6.006871282506891, - "action": "NOTHING" - }, - { - "x": -193.69853932584977, - "y": -6917.62949376704, - "rotation": 6.0103619410108795, - "action": "NOTHING" - }, - { - "x": -194.96588488880298, - "y": -6923.29990072066, - "rotation": 6.013852599514868, - "action": "NOTHING" - }, - { - "x": -196.21749207425407, - "y": -6928.988638449505, - "rotation": 6.017343258018856, - "action": "NOTHING" - }, - { - "x": -197.4533499047318, - "y": -6934.69575626816, - "rotation": 6.020833916522845, - "action": "NOTHING" - }, - { - "x": -198.67344710694724, - "y": -6940.421303686815, - "rotation": 6.024324575026833, - "action": "NOTHING" - }, - { - "x": -199.8777721125728, - "y": -6946.165330410699, - "rotation": 6.027815233530822, - "action": "NOTHING" - }, - { - "x": -201.06631305901968, - "y": -6951.927886339519, - "rotation": 6.03130589203481, - "action": "NOTHING" - }, - { - "x": -202.2390577902129, - "y": -6957.709021566896, - "rotation": 6.034796550538799, - "action": "NOTHING" - }, - { - "x": -203.39599385736503, - "y": -6963.5087863798035, - "rotation": 6.038287209042787, - "action": "NOTHING" - }, - { - "x": -204.53710851974736, - "y": -6969.327231258014, - "rotation": 6.0417778675467755, - "action": "NOTHING" - }, - { - "x": -205.6623887454597, - "y": -6975.164406873534, - "rotation": 6.045268526050764, - "action": "NOTHING" - }, - { - "x": -206.77182121219786, - "y": -6981.0203640900545, - "rotation": 6.048759184554752, - "action": "NOTHING" - }, - { - "x": -207.8653923080195, - "y": -6986.895153962391, - "rotation": 6.052249843058741, - "action": "NOTHING" - }, - { - "x": -208.94308813210787, - "y": -6992.788827735935, - "rotation": 6.055740501562729, - "action": "NOTHING" - }, - { - "x": -210.0048944955339, - "y": -6998.7014368461, - "rotation": 6.059231160066718, - "action": "NOTHING" - }, - { - "x": -211.0507969220161, - "y": -7004.633032917769, - "rotation": 6.062721818570706, - "action": "NOTHING" - }, - { - "x": -212.08078064867883, - "y": -7010.583667764752, - "rotation": 6.066212477074695, - "action": "NOTHING" - }, - { - "x": -213.09483062680852, - "y": -7016.553393389232, - "rotation": 6.069703135578683, - "action": "NOTHING" - }, - { - "x": -214.09293152260813, - "y": -7022.5422619812225, - "rotation": 6.0731937940826715, - "action": "NOTHING" - }, - { - "x": -215.07506771794962, - "y": -7028.550325918023, - "rotation": 6.07668445258666, - "action": "NOTHING" - }, - { - "x": -216.04122331112467, - "y": -7034.577637763675, - "rotation": 6.080175111090648, - "action": "NOTHING" - }, - { - "x": -216.99138211759342, - "y": -7040.624250268419, - "rotation": 6.083665769594637, - "action": "NOTHING" - }, - { - "x": -217.92552767073138, - "y": -7046.690216368157, - "rotation": 6.087156428098625, - "action": "NOTHING" - }, - { - "x": -218.84364322257466, - "y": -7052.775589183913, - "rotation": 6.090647086602614, - "action": "NOTHING" - }, - { - "x": -219.74571174456295, - "y": -7058.880422021296, - "rotation": 6.094137745106602, - "action": "NOTHING" - }, - { - "x": -220.63171592828115, - "y": -7065.0047683699595, - "rotation": 6.0976284036105906, - "action": "NOTHING" - }, - { - "x": -221.5016381861987, - "y": -7071.148681903074, - "rotation": 6.101119062114579, - "action": "NOTHING" - }, - { - "x": -222.35546065240743, - "y": -7077.312216476789, - "rotation": 6.104609720618567, - "action": "CARVE_RIGHT" - }, - { - "x": -222.92900948829535, - "y": -7083.73987473624, - "rotation": 6.14998828117042, - "action": "CARVE_RIGHT" - }, - { - "x": -223.30744044914687, - "y": -7090.3534062044055, - "rotation": 6.195366841722272, - "action": "CARVE_RIGHT" - }, - { - "x": -223.49047668351812, - "y": -7097.153663474862, - "rotation": 6.240745402274125, - "action": "CARVE_RIGHT" - }, - { - "x": -223.47779125694402, - "y": -7104.117974217297, - "rotation": 0.002938655646390842, - "action": "CARVE_RIGHT" - }, - { - "x": -223.26904768481106, - "y": -7110.906451573156, - "rotation": 0.04831721619824341, - "action": "CARVE_RIGHT" - }, - { - "x": -222.86396158129557, - "y": -7117.518214151698, - "rotation": 0.09369577675009598, - "action": "CARVE_RIGHT" - }, - { - "x": -222.26230052045528, - "y": -7123.9524299093255, - "rotation": 0.13907433730194854, - "action": "CARVE_RIGHT" - }, - { - "x": -221.4638838976681, - "y": -7130.208316018812, - "rotation": 0.18445289785380112, - "action": "CARVE_RIGHT" - }, - { - "x": -220.46858279141736, - "y": -7136.285138738862, - "rotation": 0.2298314584056537, - "action": "CARVE_RIGHT" - }, - { - "x": -219.27631982542266, - "y": -7142.182213283987, - "rotation": 0.27521001895750624, - "action": "CARVE_RIGHT" - }, - { - "x": -217.88706903111532, - "y": -7147.898903694715, - "rotation": 0.3205885795093588, - "action": "CARVE_RIGHT" - }, - { - "x": -216.30085571045785, - "y": -7153.434622708117, - "rotation": 0.3659671400612114, - "action": "CARVE_RIGHT" - }, - { - "x": -214.51775629910662, - "y": -7158.788831628657, - "rotation": 0.41134570061306397, - "action": "CARVE_RIGHT" - }, - { - "x": -212.53789822991655, - "y": -7163.961040199367, - "rotation": 0.45672426116491655, - "action": "CARVE_RIGHT" - }, - { - "x": -210.3614597967874, - "y": -7168.950806473339, - "rotation": 0.5021028217167691, - "action": "CARVE_RIGHT" - }, - { - "x": -207.98867001885063, - "y": -7173.75773668554, - "rotation": 0.5474813822686216, - "action": "CARVE_RIGHT" - }, - { - "x": -205.4198085049962, - "y": -7178.381485124947, - "rotation": 0.5928599428204742, - "action": "NOTHING" - }, - { - "x": -202.58268169990393, - "y": -7182.755955841408, - "rotation": 0.5893692843164855, - "action": "NOTHING" - }, - { - "x": -199.7626949073592, - "y": -7187.145461439631, - "rotation": 0.5858786258124968, - "action": "NOTHING" - }, - { - "x": -196.95982476156948, - "y": -7191.5500286222905, - "rotation": 0.5823879673085082, - "action": "NOTHING" - }, - { - "x": -194.17404828325223, - "y": -7195.969684353265, - "rotation": 0.5788973088045195, - "action": "NOTHING" - }, - { - "x": -191.4053428786303, - "y": -7200.404455856899, - "rotation": 0.5754066503005308, - "action": "NOTHING" - }, - { - "x": -188.65368633842985, - "y": -7204.854370617272, - "rotation": 0.5719159917965422, - "action": "NOTHING" - }, - { - "x": -185.9190568368806, - "y": -7209.319456377461, - "rotation": 0.5684253332925535, - "action": "NOTHING" - }, - { - "x": -183.20143293071882, - "y": -7213.799741138813, - "rotation": 0.5649346747885649, - "action": "NOTHING" - }, - { - "x": -180.5007935581925, - "y": -7218.295253160213, - "rotation": 0.5614440162845762, - "action": "NOTHING" - }, - { - "x": -177.81711803806908, - "y": -7222.806020957359, - "rotation": 0.5579533577805875, - "action": "NOTHING" - }, - { - "x": -175.15038606864567, - "y": -7227.332073302034, - "rotation": 0.5544626992765989, - "action": "NOTHING" - }, - { - "x": -172.50057772676163, - "y": -7231.873439221384, - "rotation": 0.5509720407726102, - "action": "NOTHING" - }, - { - "x": -169.86767346681359, - "y": -7236.430147997196, - "rotation": 0.5474813822686215, - "action": "NOTHING" - }, - { - "x": -167.25165411977292, - "y": -7241.00222916518, - "rotation": 0.5439907237646329, - "action": "NOTHING" - }, - { - "x": -164.65250089220564, - "y": -7245.589712514247, - "rotation": 0.5405000652606442, - "action": "NOTHING" - }, - { - "x": -162.0701953652947, - "y": -7250.192628085797, - "rotation": 0.5370094067566555, - "action": "NOTHING" - }, - { - "x": -159.50471949386468, - "y": -7254.811006173, - "rotation": 0.5335187482526669, - "action": "NOTHING" - }, - { - "x": -156.9560556054089, - "y": -7259.444877320089, - "rotation": 0.5300280897486782, - "action": "NOTHING" - }, - { - "x": -154.42418639911892, - "y": -7264.094272321645, - "rotation": 0.5265374312446895, - "action": "NOTHING" - }, - { - "x": -151.9090949449165, - "y": -7268.75922222189, - "rotation": 0.5230467727407009, - "action": "NOTHING" - }, - { - "x": -149.41076468248775, - "y": -7273.439758313982, - "rotation": 0.5195561142367122, - "action": "NOTHING" - }, - { - "x": -146.92917942031994, - "y": -7278.135912139305, - "rotation": 0.5160654557327236, - "action": "NOTHING" - }, - { - "x": -144.46432333474044, - "y": -7282.847715486772, - "rotation": 0.5125747972287349, - "action": "NOTHING" - }, - { - "x": -142.01618096895817, - "y": -7287.575200392118, - "rotation": 0.5090841387247462, - "action": "NOTHING" - }, - { - "x": -139.58473723210733, - "y": -7292.3183991372025, - "rotation": 0.5055934802207576, - "action": "NOTHING" - }, - { - "x": -137.16997739829355, - "y": -7297.077344249312, - "rotation": 0.5021028217167689, - "action": "NOTHING" - }, - { - "x": -134.7718871056424, - "y": -7301.852068500464, - "rotation": 0.49861216321278023, - "action": "NOTHING" - }, - { - "x": -132.39045235535016, - "y": -7306.642604906713, - "rotation": 0.49512150470879157, - "action": "NOTHING" - }, - { - "x": -130.025659510737, - "y": -7311.448986727457, - "rotation": 0.4916308462048029, - "action": "NOTHING" - }, - { - "x": -127.67749529630247, - "y": -7316.271247464747, - "rotation": 0.48814018770081424, - "action": "NOTHING" - }, - { - "x": -125.34594679678338, - "y": -7321.1094208626, - "rotation": 0.4846495291968256, - "action": "CARVE_RIGHT" - }, - { - "x": -123.05133279474659, - "y": -7325.981012886432, - "rotation": 0.5300280897486781, - "action": "CARVE_RIGHT" - }, - { - "x": -120.56075769741243, - "y": -7330.669774362153, - "rotation": 0.5754066503005306, - "action": "CARVE_RIGHT" - }, - { - "x": -117.8745312712522, - "y": -7335.175388214082, - "rotation": 0.6207852108523831, - "action": "CARVE_RIGHT" - }, - { - "x": -114.9930136571028, - "y": -7339.497585217263, - "rotation": 0.6661637714042357, - "action": "CARVE_RIGHT" - }, - { - "x": -111.91661523557099, - "y": -7343.636143870422, - "rotation": 0.7115423319560882, - "action": "CARVE_RIGHT" - }, - { - "x": -108.64579649277458, - "y": -7347.590890269242, - "rotation": 0.7569208925079407, - "action": "NOTHING" - }, - { - "x": -105.02988768262084, - "y": -7351.223069643108, - "rotation": 0.753430234003952, - "action": "NOTHING" - }, - { - "x": -101.4322713253574, - "y": -7354.869200033581, - "rotation": 0.7499395754999634, - "action": "NOTHING" - }, - { - "x": -97.85290607038068, - "y": -7358.529295792612, - "rotation": 0.7464489169959747, - "action": "NOTHING" - }, - { - "x": -94.29175099987052, - "y": -7362.203371567597, - "rotation": 0.742958258491986, - "action": "NOTHING" - }, - { - "x": -90.74876562767247, - "y": -7365.891442300554, - "rotation": 0.7394675999879974, - "action": "NOTHING" - }, - { - "x": -87.22390989818285, - "y": -7369.593523227303, - "rotation": 0.7359769414840087, - "action": "NOTHING" - }, - { "x": -83.7171441852364, "y": -7373.30962987664, "rotation": 0.73248628298002, "action": "NOTHING" }, - { - "x": -80.22842929099684, - "y": -7377.039778069526, - "rotation": 0.7289956244760314, - "action": "NOTHING" - }, - { - "x": -76.75772644484996, - "y": -7380.783983918263, - "rotation": 0.7255049659720427, - "action": "NOTHING" - }, - { - "x": -73.30499730229963, - "y": -7384.5422638256905, - "rotation": 0.7220143074680541, - "action": "NOTHING" - }, - { - "x": -69.87020394386631, - "y": -7388.314634484363, - "rotation": 0.7185236489640654, - "action": "NOTHING" - }, - { - "x": -66.45330887398846, - "y": -7392.101112875747, - "rotation": 0.7150329904600767, - "action": "NOTHING" - }, - { - "x": -63.05427501992646, - "y": -7395.901716269414, - "rotation": 0.7115423319560881, - "action": "NOTHING" - }, - { - "x": -59.673065730669336, - "y": -7399.716462222228, - "rotation": 0.7080516734520994, - "action": "NOTHING" - }, - { - "x": -56.30964477584416, - "y": -7403.54536857755, - "rotation": 0.7045610149481107, - "action": "NOTHING" - }, - { - "x": -52.96397634462809, - "y": -7407.388453464433, - "rotation": 0.7010703564441221, - "action": "NOTHING" - }, - { - "x": -49.63602504466304, - "y": -7411.245735296822, - "rotation": 0.6975796979401334, - "action": "NOTHING" - }, - { - "x": -46.325755900973164, - "y": -7415.117232772758, - "rotation": 0.6940890394361448, - "action": "NOTHING" - }, - { - "x": -43.033134354884794, - "y": -7419.002964873582, - "rotation": 0.6905983809321561, - "action": "NOTHING" - }, - { - "x": -39.75812626294919, - "y": -7422.902950863143, - "rotation": 0.6871077224281674, - "action": "NOTHING" - }, - { - "x": -36.50069789586788, - "y": -7426.817210287007, - "rotation": 0.6836170639241788, - "action": "NOTHING" - }, - { - "x": -33.26081593742059, - "y": -7430.745762971665, - "rotation": 0.6801264054201901, - "action": "NOTHING" - }, - { - "x": -30.038447483395885, - "y": -7434.688629023748, - "rotation": 0.6766357469162014, - "action": "NOTHING" - }, - { - "x": -26.833560040524393, - "y": -7438.645828829245, - "rotation": 0.6731450884122128, - "action": "NOTHING" - }, - { - "x": -23.646121525414635, - "y": -7442.617383052713, - "rotation": 0.6696544299082241, - "action": "NOTHING" - }, - { - "x": -20.476100263491503, - "y": -7446.603312636503, - "rotation": 0.6661637714042354, - "action": "NOTHING" - }, - { - "x": -17.323464987937324, - "y": -7450.603638799976, - "rotation": 0.6626731129002468, - "action": "NOTHING" - }, - { - "x": -14.188184838635532, - "y": -7454.618383038727, - "rotation": 0.6591824543962581, - "action": "NOTHING" - }, - { - "x": -11.07022936111692, - "y": -7458.647567123814, - "rotation": 0.6556917958922694, - "action": "NOTHING" - }, - { - "x": -7.969568505508505, - "y": -7462.691213100979, - "rotation": 0.6522011373882808, - "action": "NOTHING" - }, - { - "x": -4.886172625484951, - "y": -7466.749343289883, - "rotation": 0.6487104788842921, - "action": "NOTHING" - }, - { - "x": -1.8200124772225825, - "y": -7470.821980283329, - "rotation": 0.6452198203803035, - "action": "NOTHING" - }, - { - "x": 1.2289407816440403, - "y": -7474.909146946504, - "rotation": 0.6417291618763148, - "action": "NOTHING" - }, - { - "x": 4.260715593062976, - "y": -7479.010866416207, - "rotation": 0.6382385033723261, - "action": "NOTHING" - }, - { - "x": 7.275339999603201, - "y": -7483.127162100091, - "rotation": 0.6347478448683375, - "action": "NOTHING" - }, - { - "x": 10.272841645490363, - "y": -7487.258057675896, - "rotation": 0.6312571863643488, - "action": "NOTHING" - }, - { - "x": 13.25324777763998, - "y": -7491.403577090698, - "rotation": 0.6277665278603601, - "action": "NOTHING" - }, - { - "x": 16.21658524668811, - "y": -7495.563744560142, - "rotation": 0.6242758693563715, - "action": "NOTHING" - }, - { - "x": 19.162880508019462, - "y": -7499.738584567696, - "rotation": 0.6207852108523828, - "action": "NOTHING" - }, - { - "x": 22.09215962279303, - "y": -7503.928121863892, - "rotation": 0.6172945523483941, - "action": "NOTHING" - }, - { - "x": 25.004448258965144, - "y": -7508.132381465573, - "rotation": 0.6138038938444055, - "action": "NOTHING" - }, - { - "x": 27.89977169231006, - "y": -7512.351388655152, - "rotation": 0.6103132353404168, - "action": "NOTHING" - }, - { - "x": 30.778154807438003, - "y": -7516.585168979855, - "rotation": 0.6068225768364282, - "action": "NOTHING" - }, - { - "x": 33.63962209881072, - "y": -7520.8337482509805, - "rotation": 0.6033319183324395, - "action": "NOTHING" - }, - { - "x": 36.484197671754536, - "y": -7525.097152543156, - "rotation": 0.5998412598284508, - "action": "NOTHING" - }, - { - "x": 39.311905243470925, - "y": -7529.375408193594, - "rotation": 0.5963506013244622, - "action": "NOTHING" - }, - { - "x": 42.122768144044585, - "y": -7533.668541801354, - "rotation": 0.5928599428204735, - "action": "NOTHING" - }, - { - "x": 44.91680931744903, - "y": -7537.976580226604, - "rotation": 0.5893692843164848, - "action": "NOTHING" - }, - { - "x": 47.694051322549726, - "y": -7542.299550589883, - "rotation": 0.5858786258124962, - "action": "NOTHING" - }, - { - "x": 50.45451633410473, - "y": -7546.63748027137, - "rotation": 0.5823879673085075, - "action": "NOTHING" - }, - { - "x": 53.1982261437629, - "y": -7550.990396910149, - "rotation": 0.5788973088045188, - "action": "NOTHING" - }, - { - "x": 55.92520216105963, - "y": -7555.358328403479, - "rotation": 0.5754066503005302, - "action": "NOTHING" - }, - { - "x": 58.635465414410135, - "y": -7559.741302906068, - "rotation": 0.5719159917965415, - "action": "NOTHING" - }, - { - "x": 61.329036552100284, - "y": -7564.139348829343, - "rotation": 0.5684253332925528, - "action": "NOTHING" - }, - { - "x": 64.00593584327503, - "y": -7568.552494840729, - "rotation": 0.5649346747885642, - "action": "NOTHING" - }, - { - "x": 66.66618317892433, - "y": -7572.980769862922, - "rotation": 0.5614440162845755, - "action": "NOTHING" - }, - { - "x": 69.30979807286676, - "y": -7577.424203073171, - "rotation": 0.5579533577805869, - "action": "NOTHING" - }, - { - "x": 71.93679966273058, - "y": -7581.88282390256, - "rotation": 0.5544626992765982, - "action": "NOTHING" - }, - { - "x": 74.54720671093246, - "y": -7586.356662035285, - "rotation": 0.5509720407726095, - "action": "NOTHING" - }, - { - "x": 77.14103760565378, - "y": -7590.845747407946, - "rotation": 0.5474813822686209, - "action": "NOTHING" - }, - { - "x": 79.7183103618145, - "y": -7595.350110208829, - "rotation": 0.5439907237646322, - "action": "NOTHING" - }, - { - "x": 82.2790426220447, - "y": -7599.869780877196, - "rotation": 0.5405000652606435, - "action": "NOTHING" - }, - { - "x": 84.8232516576536, - "y": -7604.4047901025715, - "rotation": 0.5370094067566549, - "action": "NOTHING" - }, - { - "x": 87.35095436959637, - "y": -7608.955168824042, - "rotation": 0.5335187482526662, - "action": "NOTHING" - }, - { - "x": 89.86216728943837, - "y": -7613.520948229541, - "rotation": 0.5300280897486775, - "action": "NOTHING" - }, - { - "x": 92.3569065803172, - "y": -7618.102159755153, - "rotation": 0.5265374312446889, - "action": "NOTHING" - }, - { - "x": 94.83518803790218, - "y": -7622.698835084403, - "rotation": 0.5230467727407002, - "action": "NOTHING" - }, - { - "x": 97.29702709135165, - "y": -7627.311006147564, - "rotation": 0.5195561142367116, - "action": "NOTHING" - }, - { - "x": 99.74243880426779, - "y": -7631.93870512095, - "rotation": 0.5160654557327229, - "action": "CARVE_LEFT" - }, - { - "x": 101.74984793342584, - "y": -7636.972185483838, - "rotation": 0.4706868951808703, - "action": "CARVE_LEFT" - }, - { - "x": 103.56394264560541, - "y": -7642.185490338625, - "rotation": 0.42530833462901774, - "action": "CARVE_LEFT" - }, - { - "x": 105.18481858329727, - "y": -7647.579136134791, - "rotation": 0.37992977407716516, - "action": "CARVE_LEFT" - }, - { - "x": 106.61252017267823, - "y": -7653.153685534317, - "rotation": 0.3345512135253126, - "action": "CARVE_LEFT" - }, - { - "x": 107.847040759953, - "y": -7658.909747287861, - "rotation": 0.28917265297346, - "action": "CARVE_LEFT" - }, - { - "x": 108.88832274735557, - "y": -7664.847976111241, - "rotation": 0.24379409242160743, - "action": "CARVE_LEFT" - }, - { - "x": 109.7362577288109, - "y": -7670.969072562239, - "rotation": 0.19841553186975486, - "action": "CARVE_LEFT" - }, - { - "x": 110.39068662525777, - "y": -7677.273782917704, - "rotation": 0.15303697131790228, - "action": "CARVE_LEFT" - }, - { - "x": 110.85139981963353, - "y": -7683.762899050969, - "rotation": 0.1076584107660497, - "action": "CARVE_LEFT" - }, - { - "x": 111.11813729152162, - "y": -7690.437258309572, - "rotation": 0.06227985021419714, - "action": "CARVE_LEFT" - }, - { - "x": 111.1905887514627, - "y": -7697.297743393284, - "rotation": 0.016901289662344568, - "action": "CARVE_LEFT" - }, - { - "x": 111.06840719245875, - "y": -7704.118246236369, - "rotation": 6.254708036290078, - "action": "CARVE_LEFT" - }, - { - "x": 110.75128033189726, - "y": -7710.763689523037, - "rotation": 6.209329475738226, - "action": "CARVE_LEFT" - }, - { - "x": 110.23894792314191, - "y": -7717.233214726809, - "rotation": 6.163950915186374, - "action": "CARVE_LEFT" - }, - { - "x": 109.53120161677863, - "y": -7723.526012609304, - "rotation": 6.118572354634521, - "action": "CARVE_LEFT" - }, - { - "x": 108.62788482220849, - "y": -7729.641323089615, - "rotation": 6.073193794082669, - "action": "CARVE_LEFT" - }, - { - "x": 107.52889256958663, - "y": -7735.578435114008, - "rotation": 6.027815233530816, - "action": "CARVE_LEFT" - }, - { - "x": 106.23417137210645, - "y": -7741.336686525948, - "rotation": 5.982436672978964, - "action": "CARVE_LEFT" - }, - { - "x": 104.74371908862804, - "y": -7746.915463936446, - "rotation": 5.937058112427112, - "action": "CARVE_LEFT" - }, - { - "x": 103.05758478665038, - "y": -7752.3142025947345, - "rotation": 5.891679551875259, - "action": "CARVE_LEFT" - }, - { - "x": 101.17586860562605, - "y": -7757.532386259259, - "rotation": 5.846300991323407, - "action": "CARVE_LEFT" - }, - { - "x": 99.098721620618, - "y": -7762.569547068992, - "rotation": 5.800922430771554, - "action": "CARVE_LEFT" - }, - { - "x": 96.82634570629733, - "y": -7767.425265415071, - "rotation": 5.755543870219702, - "action": "CARVE_LEFT" - }, - { - "x": 94.3589934012814, - "y": -7772.099169812758, - "rotation": 5.7101653096678495, - "action": "CARVE_LEFT" - }, - { - "x": 91.69696777281123, - "y": -7776.590936773708, - "rotation": 5.664786749115997, - "action": "CARVE_LEFT" - }, - { - "x": 88.84062228176782, - "y": -7780.9002906785645, - "rotation": 5.619408188564145, - "action": "CARVE_LEFT" - }, - { - "x": 85.79036064802597, - "y": -7785.027003649877, - "rotation": 5.574029628012292, - "action": "CARVE_LEFT" - }, - { - "x": 82.54663671614534, - "y": -7788.970895425321, - "rotation": 5.52865106746044, - "action": "CARVE_LEFT" - }, - { - "x": 79.10995432139764, - "y": -7792.731833231248, - "rotation": 5.4832725069085875, - "action": "NOTHING" - }, - { - "x": 75.31001651236795, - "y": -7796.152889949354, - "rotation": 5.486763165412576, - "action": "NOTHING" - }, - { "x": 71.52863063328361, "y": -7799.587644632, "rotation": 5.490253823916564, "action": "NOTHING" }, - { - "x": 67.7657508741687, - "y": -7803.0361084887045, - "rotation": 5.493744482420553, - "action": "NOTHING" - }, - { - "x": 64.02133186911264, - "y": -7806.498293032906, - "rotation": 5.497235140924541, - "action": "NOTHING" - }, - { - "x": 60.295328695125164, - "y": -7809.974210081116, - "rotation": 5.50072579942853, - "action": "NOTHING" - }, - { - "x": 56.58769687099411, - "y": -7813.4638717520775, - "rotation": 5.504216457932518, - "action": "NOTHING" - }, - { - "x": 52.89839235614599, - "y": -7816.96729046592, - "rotation": 5.507707116436507, - "action": "NOTHING" - }, - { - "x": 49.22737154950937, - "y": -7820.484478943325, - "rotation": 5.511197774940495, - "action": "NOTHING" - }, - { - "x": 45.574591288381015, - "y": -7824.0154502046835, - "rotation": 5.5146884334444835, - "action": "NOTHING" - }, - { - "x": 41.94000884729482, - "y": -7827.560217569267, - "rotation": 5.518179091948472, - "action": "NOTHING" - }, - { - "x": 38.32358193689353, - "y": -7831.118794654388, - "rotation": 5.52166975045246, - "action": "NOTHING" - }, - { - "x": 34.72526870280319, - "y": -7834.691195374577, - "rotation": 5.525160408956449, - "action": "NOTHING" - }, - { - "x": 31.145027724510367, - "y": -7838.277433940748, - "rotation": 5.528651067460437, - "action": "NOTHING" - }, - { - "x": 27.58281801424213, - "y": -7841.877524859374, - "rotation": 5.532141725964426, - "action": "NOTHING" - }, - { - "x": 24.038599015848774, - "y": -7845.491482931664, - "rotation": 5.535632384468414, - "action": "NOTHING" - }, - { - "x": 20.512330603689282, - "y": -7849.1193232527385, - "rotation": 5.5391230429724025, - "action": "NOTHING" - }, - { - "x": 17.003973081519497, - "y": -7852.761061210812, - "rotation": 5.542613701476391, - "action": "NOTHING" - }, - { - "x": 13.513487181383056, - "y": -7856.4167124863725, - "rotation": 5.546104359980379, - "action": "NOTHING" - }, - { - "x": 10.04083406250501, - "y": -7860.086293051368, - "rotation": 5.549595018484368, - "action": "NOTHING" - }, - { "x": 6.58597531018818, "y": -7863.76981916839, "rotation": 5.553085676988356, "action": "NOTHING" }, - { - "x": 3.1488729347122075, - "y": -7867.467307389867, - "rotation": 5.556576335492345, - "action": "NOTHING" - }, - { - "x": -0.2705106297647011, - "y": -7871.178774557247, - "rotation": 5.560066993996333, - "action": "NOTHING" - }, - { - "x": -3.6722125263013226, - "y": -7874.904237800199, - "rotation": 5.563557652500322, - "action": "NOTHING" - }, - { - "x": -7.056269476266289, - "y": -7878.643714535799, - "rotation": 5.56704831100431, - "action": "NOTHING" - }, - { - "x": -10.422717780428274, - "y": -7882.397222467733, - "rotation": 5.5705389695082985, - "action": "NOTHING" - }, - { - "x": -13.77159332004351, - "y": -7886.164779585492, - "rotation": 5.574029628012287, - "action": "NOTHING" - }, - { - "x": -17.10293155794063, - "y": -7889.946404163577, - "rotation": 5.577520286516275, - "action": "CARVE_RIGHT" - }, - { - "x": -19.90740985777873, - "y": -7894.213602243867, - "rotation": 5.622898847068128, - "action": "CARVE_RIGHT" - }, - { - "x": -22.51852150956069, - "y": -7898.65819492924, - "rotation": 5.66827740761998, - "action": "CARVE_RIGHT" - }, - { - "x": -24.93657406238256, - "y": -7903.280507415857, - "rotation": 5.713655968171833, - "action": "CARVE_RIGHT" - }, - { - "x": -27.1618232863131, - "y": -7908.080911623492, - "rotation": 5.759034528723685, - "action": "CARVE_RIGHT" - }, - { - "x": -29.19447331013889, - "y": -7913.059826070438, - "rotation": 5.8044130892755375, - "action": "CARVE_RIGHT" - }, - { - "x": -31.034676758765553, - "y": -7918.21771574871, - "rotation": 5.84979164982739, - "action": "CARVE_RIGHT" - }, - { - "x": -32.68253489027599, - "y": -7923.555091999576, - "rotation": 5.895170210379242, - "action": "CARVE_RIGHT" - }, - { - "x": -34.138097732646365, - "y": -7929.072512389387, - "rotation": 5.940548770931095, - "action": "CARVE_RIGHT" - }, - { - "x": -35.4013642201207, - "y": -7934.770580585732, - "rotation": 5.985927331482947, - "action": "CARVE_RIGHT" - }, - { - "x": -36.472282329244884, - "y": -7940.64994623389, - "rotation": 6.0313058920347995, - "action": "CARVE_RIGHT" - }, - { - "x": -37.350749214560935, - "y": -7946.7113048336, - "rotation": 6.076684452586652, - "action": "CARVE_RIGHT" - }, - { - "x": -38.036611343962306, - "y": -7952.955397616139, - "rotation": 6.122063013138504, - "action": "CARVE_RIGHT" - }, - { - "x": -38.52966463371107, - "y": -7959.383011421705, - "rotation": 6.167441573690357, - "action": "CARVE_RIGHT" - }, - { - "x": -38.829654583117765, - "y": -7965.994978577114, - "rotation": 6.212820134242209, - "action": "CARVE_RIGHT" - }, - { - "x": -38.93627640888473, - "y": -7972.7921767737935, - "rotation": 6.2581986947940615, - "action": "CARVE_RIGHT" - }, - { - "x": -38.84918205918979, - "y": -7979.613691502351, - "rotation": 0.020391948166327722, - "action": "CARVE_RIGHT" - }, - { - "x": -38.56804654428838, - "y": -7986.261154883125, - "rotation": 0.0657705087181803, - "action": "CARVE_RIGHT" - }, - { - "x": -38.09259694543229, - "y": -7992.733696314109, - "rotation": 0.11114906927003287, - "action": "CARVE_RIGHT" - }, - { - "x": -37.422612276026506, - "y": -7999.030494514422, - "rotation": 0.15652762982188545, - "action": "CARVE_RIGHT" - }, - { - "x": -36.55792334313302, - "y": -8005.150777393599, - "rotation": 0.20190619037373803, - "action": "CARVE_RIGHT" - }, - { - "x": -35.498412609320965, - "y": -8011.093821921212, - "rotation": 0.2472847509255906, - "action": "CARVE_RIGHT" - }, - { - "x": -34.24401405486217, - "y": -8016.858953996806, - "rotation": 0.2926633114774432, - "action": "CARVE_RIGHT" - }, - { - "x": -32.794713040271276, - "y": -8022.445548320167, - "rotation": 0.33804187202929575, - "action": "CARVE_RIGHT" - }, - { - "x": -31.15054616918967, - "y": -8027.853028261913, - "rotation": 0.38342043258114833, - "action": "CARVE_RIGHT" - }, - { - "x": -29.31160115161231, - "y": -8033.0808657344005, - "rotation": 0.4287989931330009, - "action": "CARVE_RIGHT" - }, - { - "x": -27.27801666745672, - "y": -8038.1285810629615, - "rotation": 0.4741775536848535, - "action": "CARVE_RIGHT" - }, - { - "x": -25.04998223047323, - "y": -8042.995742857455, - "rotation": 0.519556114236706, - "action": "CARVE_RIGHT" - }, - { - "x": -22.62773805249576, - "y": -8047.681967884143, - "rotation": 0.5649346747885585, - "action": "CARVE_RIGHT" - }, - { - "x": -20.011574908032213, - "y": -8052.18692093788, - "rotation": 0.610313235340411, - "action": "CARVE_RIGHT" - }, - { - "x": -17.201833999193724, - "y": -8056.51031471463, - "rotation": 0.6556917958922636, - "action": "CARVE_RIGHT" - }, - { - "x": -14.19890682096196, - "y": -8060.651909684291, - "rotation": 0.7010703564441161, - "action": "CARVE_RIGHT" - }, - { - "x": -11.003235026793632, - "y": -8064.611513963847, - "rotation": 0.7464489169959686, - "action": "CARVE_RIGHT" - }, - { - "x": -7.6153102945614055, - "y": -8068.388983190826, - "rotation": 0.7918274775478211, - "action": "CARVE_RIGHT" - }, - { - "x": -4.035674192830429, - "y": -8071.984220397083, - "rotation": 0.8372060380996736, - "action": "CARVE_RIGHT" - }, - { - "x": -0.26491804746964887, - "y": -8075.39717588289, - "rotation": 0.8825845986515262, - "action": "CARVE_RIGHT" - }, - { - "x": 3.6963171914028754, - "y": -8078.627847091348, - "rotation": 0.9279631592033787, - "action": "NOTHING" - }, - { - "x": 8.077855905008143, - "y": -8081.464192165631, - "rotation": 0.92447250069939, - "action": "NOTHING" - }, - { - "x": 12.439621674958262, - "y": -8084.313746250083, - "rotation": 0.9209818421954014, - "action": "NOTHING" - }, - { - "x": 16.781674849491704, - "y": -8087.176510331911, - "rotation": 0.9174911836914127, - "action": "NOTHING" - }, - { - "x": 21.104075295946913, - "y": -8090.052485729875, - "rotation": 0.914000525187424, - "action": "NOTHING" - }, - { - "x": 25.40688240199652, - "y": -8092.941674093363, - "rotation": 0.9105098666834354, - "action": "NOTHING" - }, - { - "x": 29.690155076878526, - "y": -8095.844077401484, - "rotation": 0.9070192081794467, - "action": "NOTHING" - }, - { - "x": 33.953951752624505, - "y": -8098.759697962156, - "rotation": 0.903528549675458, - "action": "NOTHING" - }, - { - "x": 38.19833038528478, - "y": -8101.688538411194, - "rotation": 0.9000378911714694, - "action": "NOTHING" - }, - { - "x": 42.42334845615061, - "y": -8104.63060171141, - "rotation": 0.8965472326674807, - "action": "NOTHING" - }, - { - "x": 46.62906297297344, - "y": -8107.585891151707, - "rotation": 0.893056574163492, - "action": "NOTHING" - }, - { - "x": 50.815530471181106, - "y": -8110.554410346173, - "rotation": 0.8895659156595034, - "action": "NOTHING" - }, - { - "x": 54.98280701509108, - "y": -8113.536163233191, - "rotation": 0.8860752571555147, - "action": "NOTHING" - }, - { - "x": 59.13094819912082, - "y": -8116.5311540745315, - "rotation": 0.882584598651526, - "action": "NOTHING" - }, - { - "x": 63.26000914899508, - "y": -8119.539387454469, - "rotation": 0.8790939401475374, - "action": "NOTHING" - }, - { - "x": 67.3700445229503, - "y": -8122.56086827888, - "rotation": 0.8756032816435487, - "action": "NOTHING" - }, - { - "x": 71.46110851293605, - "y": -8125.595601774359, - "rotation": 0.8721126231395601, - "action": "NOTHING" - }, - { - "x": 75.53325484581362, - "y": -8128.643593487331, - "rotation": 0.8686219646355714, - "action": "CARVE_LEFT" - }, - { - "x": 79.00451075534073, - "y": -8132.243622273171, - "rotation": 0.8232434040837189, - "action": "CARVE_LEFT" - }, - { - "x": 82.28263096764034, - "y": -8136.018752812109, - "rotation": 0.7778648435318664, - "action": "CARVE_LEFT" - }, - { - "x": 85.36810318042018, - "y": -8139.96914765405, - "rotation": 0.7324862829800138, - "action": "CARVE_LEFT" - }, - { - "x": 88.26136283553981, - "y": -8144.095016505704, - "rotation": 0.6871077224281613, - "action": "CARVE_LEFT" - }, - { - "x": 90.96279325794251, - "y": -8148.3966161043945, - "rotation": 0.6417291618763088, - "action": "CARVE_LEFT" - }, - { - "x": 93.47272579424028, - "y": -8152.874250092197, - "rotation": 0.5963506013244563, - "action": "CARVE_LEFT" - }, - { - "x": 95.79143995095313, - "y": -8157.528268890381, - "rotation": 0.5509720407726038, - "action": "CARVE_LEFT" - }, - { - "x": 97.91916353240326, - "y": -8162.359069574175, - "rotation": 0.5055934802207512, - "action": "CARVE_LEFT" - }, - { - "x": 99.85607277826497, - "y": -8167.367095747841, - "rotation": 0.46021491966889866, - "action": "CARVE_LEFT" - }, - { - "x": 101.6022925007713, - "y": -8172.552837420064, - "rotation": 0.4148363591170461, - "action": "CARVE_LEFT" - }, - { - "x": 103.15789622157799, - "y": -8177.916830879654, - "rotation": 0.3694577985651935, - "action": "CARVE_LEFT" - }, - { - "x": 104.52290630828577, - "y": -8183.459658571557, - "rotation": 0.32407923801334093, - "action": "CARVE_LEFT" - }, - { - "x": 105.6972941106217, - "y": -8189.18194897318, - "rotation": 0.27870067746148836, - "action": "CARVE_LEFT" - }, - { - "x": 106.68098009628034, - "y": -8195.084376471023, - "rotation": 0.23332211690963578, - "action": "CARVE_LEFT" - }, - { - "x": 107.47383398642573, - "y": -8201.167661237625, - "rotation": 0.1879435563577832, - "action": "CARVE_LEFT" - }, - { - "x": 108.07567489085486, - "y": -8207.432569108814, - "rotation": 0.14256499580593063, - "action": "CARVE_LEFT" - }, - { - "x": 108.48627144282337, - "y": -8213.879911461267, - "rotation": 0.09718643525407805, - "action": "CARVE_LEFT" - }, - { - "x": 108.70534193353456, - "y": -8220.510545090372, - "rotation": 0.05180787470222548, - "action": "CARVE_LEFT" - }, - { - "x": 108.73255444629223, - "y": -8227.32537208841, - "rotation": 0.006429314150372914, - "action": "CARVE_LEFT" - }, - { - "x": 108.56755209032978, - "y": -8234.018715137687, - "rotation": 6.244236060778107, - "action": "CARVE_LEFT" - }, - { - "x": 108.21002462572166, - "y": -8240.539274571727, - "rotation": 6.1988575002262545, - "action": "CARVE_LEFT" - }, - { - "x": 107.65971384639995, - "y": -8246.886193683422, - "rotation": 6.153478939674402, - "action": "CARVE_LEFT" - }, - { - "x": 106.91641344140079, - "y": -8253.05866505194, - "rotation": 6.10810037912255, - "action": "CARVE_LEFT" - }, - { - "x": 105.97996885645749, - "y": -8259.055930412102, - "rotation": 6.062721818570697, - "action": "CARVE_LEFT" - }, - { - "x": 104.8502771559398, - "y": -8264.877280524082, - "rotation": 6.017343258018845, - "action": "CARVE_LEFT" - }, - { - "x": 103.52728688513847, - "y": -8270.522055043433, - "rotation": 5.971964697466992, - "action": "CARVE_LEFT" - }, - { - "x": 102.01099793289396, - "y": -8275.989642391432, - "rotation": 5.92658613691514, - "action": "CARVE_LEFT" - }, - { - "x": 100.30146139456899, - "y": -8281.279479625757, - "rotation": 5.881207576363288, - "action": "CARVE_LEFT" - }, - { - "x": 98.39877943536364, - "y": -8286.391052311472, - "rotation": 5.835829015811435, - "action": "CARVE_LEFT" - }, - { - "x": 96.30310515397242, - "y": -8291.323894392355, - "rotation": 5.790450455259583, - "action": "CARVE_LEFT" - }, - { - "x": 94.01464244658246, - "y": -8296.077588062526, - "rotation": 5.74507189470773, - "action": "CARVE_LEFT" - }, - { - "x": 91.53364587121186, - "y": -8300.651763638403, - "rotation": 5.699693334155878, - "action": "CARVE_LEFT" - }, - { - "x": 88.86042051238772, - "y": -8305.046099430983, - "rotation": 5.654314773604026, - "action": "CARVE_LEFT" - }, - { - "x": 85.99532184616254, - "y": -8309.26032161843, - "rotation": 5.608936213052173, - "action": "CARVE_LEFT" - }, - { - "x": 82.93875560546867, - "y": -8313.294204118989, - "rotation": 5.563557652500321, - "action": "CARVE_LEFT" - }, - { - "x": 79.69117764580963, - "y": -8317.147568464214, - "rotation": 5.518179091948468, - "action": "CARVE_LEFT" - }, - { - "x": 76.25309381128773, - "y": -8320.82028367251, - "rotation": 5.472800531396616, - "action": "CARVE_LEFT" - }, - { - "x": 72.62505980096702, - "y": -8324.312266123, - "rotation": 5.4274219708447635, - "action": "CARVE_LEFT" - }, - { - "x": 68.80768103557091, - "y": -8327.623479429692, - "rotation": 5.382043410292911, - "action": "CARVE_LEFT" - }, - { - "x": 64.8016125245135, - "y": -8330.75393431597, - "rotation": 5.336664849741059, - "action": "CARVE_LEFT" - }, - { - "x": 60.607558733263936, - "y": -8333.703688489393, - "rotation": 5.291286289189206, - "action": "CARVE_LEFT" - }, - { - "x": 56.22627345104297, - "y": -8336.472846516815, - "rotation": 5.245907728637354, - "action": "CARVE_LEFT" - }, - { - "x": 51.65855965885088, - "y": -8339.061559699803, - "rotation": 5.2005291680855015, - "action": "CARVE_LEFT" - }, - { - "x": 46.90526939782601, - "y": -8341.470025950379, - "rotation": 5.155150607533649, - "action": "CARVE_LEFT" - }, - { - "x": 41.96730363793307, - "y": -8343.698489667062, - "rotation": 5.109772046981797, - "action": "NOTHING" - }, - { - "x": 36.503626299398626, - "y": -8345.431941381983, - "rotation": 5.113262705485785, - "action": "NOTHING" - }, - { - "x": 31.062810037153145, - "y": -8347.178381889305, - "rotation": 5.1167533639897735, - "action": "NOTHING" - }, - { - "x": 25.644765199589916, - "y": -8348.937791202692, - "rotation": 5.120244022493762, - "action": "NOTHING" - }, - { - "x": 20.249402689361503, - "y": -8350.710149722958, - "rotation": 5.12373468099775, - "action": "NOTHING" - }, - { - "x": 14.876633961969318, - "y": -8352.495438237018, - "rotation": 5.127225339501739, - "action": "NOTHING" - }, - { - "x": 9.52637102435661, - "y": -8354.293637916839, - "rotation": 5.130715998005727, - "action": "NOTHING" - }, - { - "x": 4.19852643350487, - "y": -8356.104730318384, - "rotation": 5.134206656509716, - "action": "CARVE_RIGHT" - }, - { - "x": -0.40173024332318086, - "y": -8358.58157262284, - "rotation": 5.179585217061568, - "action": "CARVE_RIGHT" - }, - { - "x": -4.8080371826024555, - "y": -8361.230677959427, - "rotation": 5.224963777613421, - "action": "CARVE_RIGHT" - }, - { - "x": -9.021194877593437, - "y": -8364.051926437469, - "rotation": 5.270342338165273, - "action": "CARVE_RIGHT" - }, - { - "x": -13.041950738768215, - "y": -8367.0452460744, - "rotation": 5.315720898717125, - "action": "CARVE_RIGHT" - }, - { - "x": -16.87099923479885, - "y": -8370.210612667712, - "rotation": 5.361099459268978, - "action": "CARVE_RIGHT" - }, - { - "x": -20.508982033194155, - "y": -8373.548049667217, - "rotation": 5.40647801982083, - "action": "CARVE_RIGHT" - }, - { - "x": -23.956488140585645, - "y": -8377.057628047625, - "rotation": 5.451856580372683, - "action": "CARVE_RIGHT" - }, - { - "x": -27.214054042663605, - "y": -8380.739466181443, - "rotation": 5.497235140924535, - "action": "CARVE_RIGHT" - }, - { - "x": -30.282163843764007, - "y": -8384.593729712198, - "rotation": 5.542613701476387, - "action": "CARVE_RIGHT" - }, - { - "x": -33.16124940610719, - "y": -8388.620631427968, - "rotation": 5.58799226202824, - "action": "CARVE_RIGHT" - }, - { - "x": -35.851690488689115, - "y": -8392.820431135235, - "rotation": 5.633370822580092, - "action": "CARVE_RIGHT" - }, - { - "x": -38.353814885826, - "y": -8397.193435533056, - "rotation": 5.678749383131945, - "action": "CARVE_RIGHT" - }, - { - "x": -40.66789856535321, - "y": -8401.739998087545, - "rotation": 5.724127943683797, - "action": "CARVE_RIGHT" - }, - { - "x": -42.79416580647921, - "y": -8406.460518906675, - "rotation": 5.7695065042356495, - "action": "CARVE_RIGHT" - }, - { - "x": -44.73278933729537, - "y": -8411.355444615383, - "rotation": 5.814885064787502, - "action": "CARVE_RIGHT" - }, - { - "x": -46.48389047194257, - "y": -8416.425268231002, - "rotation": 5.860263625339354, - "action": "CARVE_RIGHT" - }, - { - "x": -48.04753924743525, - "y": -8421.670529038993, - "rotation": 5.905642185891207, - "action": "CARVE_RIGHT" - }, - { - "x": -49.42375456014386, - "y": -8427.091812468998, - "rotation": 5.951020746443059, - "action": "CARVE_RIGHT" - }, - { - "x": -50.6125043019365, - "y": -8432.689749971196, - "rotation": 5.9963993069949115, - "action": "CARVE_RIGHT" - }, - { - "x": -51.61370549598053, - "y": -8438.465018892974, - "rotation": 6.041777867546764, - "action": "CARVE_RIGHT" - }, - { - "x": -52.427224432205044, - "y": -8444.418342355906, - "rotation": 6.087156428098616, - "action": "CARVE_RIGHT" - }, - { - "x": -53.052876802424876, - "y": -8450.550489133042, - "rotation": 6.132534988650469, - "action": "CARVE_RIGHT" - }, - { - "x": -53.490427835127136, - "y": -8456.862273526496, - "rotation": 6.177913549202321, - "action": "CARVE_RIGHT" - }, - { - "x": -53.73959242992095, - "y": -8463.354555245358, - "rotation": 6.223292109754174, - "action": "CARVE_RIGHT" - }, - { - "x": -53.80003529165123, - "y": -8470.028239283894, - "rotation": 6.268670670306026, - "action": "CARVE_RIGHT" - }, - { - "x": -53.671386824970675, - "y": -8476.645198064945, - "rotation": 0.03086392367829216, - "action": "CARVE_RIGHT" - }, - { - "x": -53.35331525699268, - "y": -8483.09257364314, - "rotation": 0.07624248423014474, - "action": "CARVE_RIGHT" - }, - { - "x": -52.84554091018501, - "y": -8489.369488774018, - "rotation": 0.12162104478199731, - "action": "CARVE_RIGHT" - }, - { - "x": -52.14783606345625, - "y": -8495.475115557505, - "rotation": 0.1669996053338499, - "action": "CARVE_RIGHT" - }, - { - "x": -51.26002481358961, - "y": -8501.40867530713, - "rotation": 0.21237816588570246, - "action": "CARVE_RIGHT" - }, - { - "x": -50.18198293702304, - "y": -8507.169438419583, - "rotation": 0.25775672643755504, - "action": "CARVE_RIGHT" - }, - { - "x": -48.913637751975074, - "y": -8512.75672424459, - "rotation": 0.3031352869894076, - "action": "CARVE_RIGHT" - }, - { - "x": -47.45496798091539, - "y": -8518.169900955103, - "rotation": 0.3485138475412602, - "action": "CARVE_RIGHT" - }, - { - "x": -45.80600361337933, - "y": -8523.408385417839, - "rotation": 0.39389240809311277, - "action": "CARVE_RIGHT" - }, - { - "x": -43.966825769125535, - "y": -8528.471643064113, - "rotation": 0.43927096864496534, - "action": "CARVE_RIGHT" - }, - { - "x": -41.93756656163592, - "y": -8533.35918776101, - "rotation": 0.4846495291968179, - "action": "CARVE_RIGHT" - }, - { - "x": -39.718408961957074, - "y": -8538.070581682876, - "rotation": 0.5300280897486704, - "action": "CARVE_RIGHT" - }, - { - "x": -37.309586662882374, - "y": -8542.605435183117, - "rotation": 0.575406650300523, - "action": "CARVE_RIGHT" - }, - { - "x": -34.71138394347389, - "y": -8546.96340666634, - "rotation": 0.6207852108523755, - "action": "CARVE_RIGHT" - }, - { - "x": -31.924135533923355, - "y": -8551.144202460793, - "rotation": 0.666163771404228, - "action": "CARVE_RIGHT" - }, - { - "x": -28.948226480751323, - "y": -8555.147576691134, - "rotation": 0.7115423319560805, - "action": "CARVE_RIGHT" - }, - { - "x": -25.784092012343734, - "y": -8558.973331151505, - "rotation": 0.756920892507933, - "action": "CARVE_RIGHT" - }, - { - "x": -22.43221740482507, - "y": -8562.621315178942, - "rotation": 0.8022994530597856, - "action": "CARVE_RIGHT" - }, - { - "x": -18.89313784826728, - "y": -8566.091425527082, - "rotation": 0.8476780136116381, - "action": "CARVE_RIGHT" - }, - { - "x": -15.167438313233692, - "y": -8569.383606240197, - "rotation": 0.8930565741634906, - "action": "CARVE_RIGHT" - }, - { - "x": -11.255753417657084, - "y": -8572.497848527535, - "rotation": 0.9384351347153431, - "action": "CARVE_RIGHT" - }, - { - "x": -7.158767294051128, - "y": -8575.434190637976, - "rotation": 0.9838136952671956, - "action": "CARVE_RIGHT" - }, - { - "x": -2.8772134570543884, - "y": -8578.192717735006, - "rotation": 1.0291922558190483, - "action": "CARVE_RIGHT" - }, - { - "x": 1.5881253286939048, - "y": -8580.773561771999, - "rotation": 1.074570816370901, - "action": "CARVE_RIGHT" - }, - { - "x": 6.2364171803471145, - "y": -8583.176901367804, - "rotation": 1.1199493769227535, - "action": "CARVE_RIGHT" - }, - { - "x": 11.066781228314287, - "y": -8585.402961682654, - "rotation": 1.1653279374746062, - "action": "CARVE_RIGHT" - }, - { - "x": 16.078287747393865, - "y": -8587.452014294378, - "rotation": 1.2107064980264588, - "action": "NOTHING" - }, - { - "x": 21.623503835737665, - "y": -8588.998373419223, - "rotation": 1.2072158395224701, - "action": "NOTHING" - }, - { - "x": 27.145689043441553, - "y": -8590.557603176352, - "rotation": 1.2037251810184815, - "action": "NOTHING" - }, - { - "x": 32.64493641448092, - "y": -8592.129680989117, - "rotation": 1.2002345225144928, - "action": "NOTHING" - }, - { - "x": 38.12133843046793, - "y": -8593.714584674428, - "rotation": 1.1967438640105041, - "action": "NOTHING" - }, - { - "x": 43.57498701208081, - "y": -8595.312292441678, - "rotation": 1.1932532055065155, - "action": "NOTHING" - }, - { - "x": 49.00597352048965, - "y": -8596.922782891685, - "rotation": 1.1897625470025268, - "action": "NOTHING" - }, - { - "x": 54.41438875877872, - "y": -8598.54603501562, - "rotation": 1.1862718884985382, - "action": "NOTHING" - }, - { - "x": 59.800322973365446, - "y": -8600.182028193956, - "rotation": 1.1827812299945495, - "action": "NOTHING" - }, - { - "x": 65.16386585541579, - "y": -8601.830742195398, - "rotation": 1.1792905714905608, - "action": "NOTHING" - }, - { - "x": 70.50510654225631, - "y": -8603.492157175837, - "rotation": 1.1757999129865722, - "action": "NOTHING" - }, - { - "x": 75.82413361878274, - "y": -8605.166253677291, - "rotation": 1.1723092544825835, - "action": "CARVE_LEFT" - }, - { - "x": 80.42040091350287, - "y": -8607.501608002192, - "rotation": 1.1269306939307309, - "action": "CARVE_LEFT" - }, - { - "x": 84.82667508034703, - "y": -8610.005540288259, - "rotation": 1.0815521333788782, - "action": "CARVE_LEFT" - }, - { - "x": 89.04376681979599, - "y": -8612.677921236767, - "rotation": 1.0361735728270256, - "action": "CARVE_LEFT" - }, - { - "x": 93.07243372792021, - "y": -8615.518669477044, - "rotation": 0.9907950122751731, - "action": "CARVE_LEFT" - }, - { - "x": 96.9133804374139, - "y": -8618.527751438365, - "rotation": 0.9454164517233206, - "action": "CARVE_LEFT" - }, - { - "x": 100.56725875827733, - "y": -8621.705181222176, - "rotation": 0.900037891171468, - "action": "CARVE_LEFT" - }, - { - "x": 104.03466781814825, - "y": -8625.051020474626, - "rotation": 0.8546593306196155, - "action": "CARVE_LEFT" - }, - { - "x": 107.31615420228333, - "y": -8628.565378259433, - "rotation": 0.809280770067763, - "action": "CARVE_LEFT" - }, - { - "x": 110.41221209319036, - "y": -8632.248410931052, - "rotation": 0.7639022095159105, - "action": "CARVE_LEFT" - }, - { - "x": 113.32328340991214, - "y": -8636.100322008177, - "rotation": 0.718523648964058, - "action": "CARVE_LEFT" - }, - { - "x": 116.04975794696274, - "y": -8640.121362047546, - "rotation": 0.6731450884122054, - "action": "CARVE_LEFT" - }, - { - "x": 118.5919735129172, - "y": -8644.311828518074, - "rotation": 0.6277665278603529, - "action": "CARVE_LEFT" - }, - { - "x": 120.95021606865531, - "y": -8648.672065675288, - "rotation": 0.5823879673085004, - "action": "CARVE_LEFT" - }, - { - "x": 123.12471986526027, - "y": -8653.20246443609, - "rotation": 0.5370094067566479, - "action": "CARVE_LEFT" - }, - { - "x": 125.11566758157336, - "y": -8657.903462253827, - "rotation": 0.4916308462047953, - "action": "CARVE_LEFT" - }, - { - "x": 126.923190461405, - "y": -8662.775542993671, - "rotation": 0.4462522856529427, - "action": "CARVE_LEFT" - }, - { - "x": 128.5473684504034, - "y": -8667.81923680832, - "rotation": 0.40087372510109015, - "action": "CARVE_LEFT" - }, - { - "x": 129.98823033258148, - "y": -8673.035120014001, - "rotation": 0.3554951645492376, - "action": "CARVE_LEFT" - }, - { - "x": 131.2457538665027, - "y": -8678.423814966796, - "rotation": 0.310116603997385, - "action": "CARVE_LEFT" - }, - { - "x": 132.31986592112705, - "y": -8683.985989939261, - "rotation": 0.2647380434455324, - "action": "CARVE_LEFT" - }, - { - "x": 133.21044261131757, - "y": -8689.722358997373, - "rotation": 0.21935948289367985, - "action": "CARVE_LEFT" - }, - { - "x": 133.9173094330085, - "y": -8695.633681877767, - "rotation": 0.17398092234182727, - "action": "CARVE_LEFT" - }, - { - "x": 134.4402413980357, - "y": -8701.720763865304, - "rotation": 0.1286023617899747, - "action": "CARVE_LEFT" - }, - { - "x": 134.77896316863024, - "y": -8707.984455670916, - "rotation": 0.08322380123812212, - "action": "CARVE_LEFT" - }, - { - "x": 134.933149191576, - "y": -8714.425653309789, - "rotation": 0.03784524068626955, - "action": "CARVE_LEFT" - }, - { - "x": 134.90242477099534, - "y": -8720.98819860913, - "rotation": 6.275651987314003, - "action": "CARVE_LEFT" - }, - { - "x": 134.68641534925803, - "y": -8727.385594354806, - "rotation": 6.2302734267621505, - "action": "CARVE_LEFT" - }, - { - "x": 134.28479858347023, - "y": -8733.616922593244, - "rotation": 6.184894866210298, - "action": "CARVE_LEFT" - }, - { - "x": 133.69730420625459, - "y": -8739.681314827916, - "rotation": 6.139516305658446, - "action": "CARVE_LEFT" - }, - { - "x": 132.92371388687832, - "y": -8745.577951888277, - "rotation": 6.094137745106593, - "action": "CARVE_LEFT" - }, - { - "x": 131.96386109272848, - "y": -8751.306063799031, - "rotation": 6.048759184554741, - "action": "CARVE_LEFT" - }, - { - "x": 130.81763095113368, - "y": -8756.864929649715, - "rotation": 6.003380624002888, - "action": "CARVE_LEFT" - }, - { - "x": 129.4849601115312, - "y": -8762.25387746462, - "rotation": 5.958002063451036, - "action": "CARVE_LEFT" - }, - { - "x": 127.96583660797884, - "y": -8767.472284073023, - "rotation": 5.912623502899184, - "action": "CARVE_LEFT" - }, - { - "x": 126.26029972201066, - "y": -8772.51957497975, - "rotation": 5.867244942347331, - "action": "CARVE_LEFT" - }, - { - "x": 124.36843984583571, - "y": -8777.39522423606, - "rotation": 5.821866381795479, - "action": "CARVE_LEFT" - }, - { - "x": 122.29039834587905, - "y": -8782.09875431085, - "rotation": 5.776487821243626, - "action": "CARVE_LEFT" - }, - { - "x": 120.0263674266641, - "y": -8786.629735962182, - "rotation": 5.731109260691774, - "action": "CARVE_LEFT" - }, - { - "x": 117.57658999503552, - "y": -8790.987788109134, - "rotation": 5.6857307001399215, - "action": "CARVE_LEFT" - }, - { - "x": 114.94135952472203, - "y": -8795.172577703957, - "rotation": 5.640352139588069, - "action": "CARVE_LEFT" - }, - { - "x": 112.12101992123793, - "y": -8799.183819604568, - "rotation": 5.594973579036217, - "action": "CARVE_LEFT" - }, - { - "x": 109.11596538712293, - "y": -8803.021276447349, - "rotation": 5.549595018484364, - "action": "CARVE_LEFT" - }, - { - "x": 105.9266402875192, - "y": -8806.684758520267, - "rotation": 5.504216457932512, - "action": "CARVE_LEFT" - }, - { - "x": 102.55353901608497, - "y": -8810.174123636314, - "rotation": 5.4588378973806595, - "action": "NOTHING" - }, - { - "x": 98.82332456849058, - "y": -8813.329629143596, - "rotation": 5.462328555884648, - "action": "NOTHING" - }, - { "x": 95.110740796896, "y": -8816.498313155596, "rotation": 5.465819214388636, "action": "NOTHING" }, - { - "x": 91.41574296475956, - "y": -8819.680187208647, - "rotation": 5.469309872892625, - "action": "NOTHING" - }, - { - "x": 87.73828677586022, - "y": -8822.87526314087, - "rotation": 5.472800531396613, - "action": "NOTHING" - }, - { "x": 84.0783283731632, "y": -8826.08355309133, "rotation": 5.476291189900602, "action": "NOTHING" }, - { - "x": 80.43582433768847, - "y": -8829.305069499209, - "rotation": 5.47978184840459, - "action": "NOTHING" - }, - { - "x": 76.81073168738192, - "y": -8832.53982510296, - "rotation": 5.483272506908579, - "action": "NOTHING" - }, - { - "x": 73.20300787598931, - "y": -8835.787832939486, - "rotation": 5.486763165412567, - "action": "NOTHING" - }, - { - "x": 69.61261079193308, - "y": -8839.049106343302, - "rotation": 5.4902538239165555, - "action": "NOTHING" - }, - { - "x": 66.03949875719175, - "y": -8842.32365894571, - "rotation": 5.493744482420544, - "action": "NOTHING" - }, - { - "x": 62.483630526182175, - "y": -8845.611504673978, - "rotation": 5.497235140924532, - "action": "NOTHING" - }, - { - "x": 58.9449652846445, - "y": -8848.912657750509, - "rotation": 5.500725799428521, - "action": "NOTHING" - }, - { - "x": 55.42346264852986, - "y": -8852.227132692022, - "rotation": 5.504216457932509, - "action": "NOTHING" - }, - { - "x": 51.91908266289077, - "y": -8855.554944308735, - "rotation": 5.507707116436498, - "action": "NOTHING" - }, - { - "x": 48.43178580077427, - "y": -8858.896107703546, - "rotation": 5.511197774940486, - "action": "CARVE_RIGHT" - }, - { - "x": 45.47885669344591, - "y": -8862.729501726151, - "rotation": 5.5565763354923385, - "action": "CARVE_RIGHT" - }, - { - "x": 42.71116431476616, - "y": -8866.73246868323, - "rotation": 5.601954896044191, - "action": "CARVE_RIGHT" - }, - { - "x": 40.12835934218087, - "y": -8870.905295679751, - "rotation": 5.647333456596043, - "action": "CARVE_RIGHT" - }, - { - "x": 37.73014433218632, - "y": -8875.248316635734, - "rotation": 5.692712017147896, - "action": "CARVE_RIGHT" - }, - { - "x": 35.51627358235107, - "y": -8879.76191216094, - "rotation": 5.738090577699748, - "action": "CARVE_RIGHT" - }, - { - "x": 33.486552993682274, - "y": -8884.446509429868, - "rotation": 5.783469138251601, - "action": "CARVE_RIGHT" - }, - { - "x": 31.640839933335517, - "y": -8889.302582057066, - "rotation": 5.828847698803453, - "action": "CARVE_RIGHT" - }, - { - "x": 29.97904309766744, - "y": -8894.330649972753, - "rotation": 5.874226259355305, - "action": "CARVE_RIGHT" - }, - { - "x": 28.50112237563023, - "y": -8899.531279298762, - "rotation": 5.919604819907158, - "action": "CARVE_RIGHT" - }, - { - "x": 27.207088712507304, - "y": -8904.905082224785, - "rotation": 5.96498338045901, - "action": "NOTHING" - }, - { - "x": 25.784256794225076, - "y": -8910.163276162917, - "rotation": 5.968474038962999, - "action": "NOTHING" - }, - { - "x": 24.376417228219985, - "y": -8915.439039933848, - "rotation": 5.971964697466987, - "action": "NOTHING" - }, - { - "x": 22.983579403922548, - "y": -8920.732421522109, - "rotation": 5.9754553559709755, - "action": "NOTHING" - }, - { - "x": 21.605753010093302, - "y": -8926.04346911081, - "rotation": 5.978946014474964, - "action": "NOTHING" - }, - { - "x": 20.24294803403594, - "y": -8931.372231081066, - "rotation": 5.982436672978952, - "action": "NOTHING" - }, - { - "x": 18.895174760812367, - "y": -8936.718756011427, - "rotation": 5.985927331482941, - "action": "NOTHING" - }, - { - "x": 17.56244377245972, - "y": -8942.083092677307, - "rotation": 5.989417989986929, - "action": "NOTHING" - }, - { - "x": 16.244765947209338, - "y": -8947.465290050422, - "rotation": 5.992908648490918, - "action": "NOTHING" - }, - { - "x": 14.942152458707639, - "y": -8952.865397298223, - "rotation": 5.996399306994906, - "action": "CARVE_RIGHT" - }, - { - "x": 13.954726644703634, - "y": -8958.56120514394, - "rotation": 6.041777867546759, - "action": "CARVE_RIGHT" - }, - { - "x": 13.152371289716065, - "y": -8964.432833630703, - "rotation": 6.087156428098611, - "action": "CARVE_RIGHT" - }, - { - "x": 12.535281094023784, - "y": -8970.481060785003, - "rotation": 6.132534988650463, - "action": "CARVE_RIGHT" - }, - { - "x": 12.103701190112192, - "y": -8976.706710134324, - "rotation": 6.177913549202316, - "action": "CARVE_RIGHT" - }, - { - "x": 11.857927008306428, - "y": -8983.110650585117, - "rotation": 6.223292109754168, - "action": "CARVE_RIGHT" - }, - { - "x": 11.798304142740262, - "y": -8989.693796301086, - "rotation": 6.268670670306021, - "action": "CARVE_RIGHT" - }, - { - "x": 11.925212456866635, - "y": -8996.221251351384, - "rotation": 0.03086392367828683, - "action": "CARVE_RIGHT" - }, - { - "x": 12.238993960887045, - "y": -9002.581666457869, - "rotation": 0.0762424842301394, - "action": "CARVE_RIGHT" - }, - { - "x": 12.739938538939958, - "y": -9008.77415456106, - "rotation": 0.12162104478199198, - "action": "CARVE_RIGHT" - }, - { - "x": 13.428284088096218, - "y": -9014.797877974948, - "rotation": 0.16699960533384456, - "action": "CARVE_RIGHT" - }, - { - "x": 14.304216657006982, - "y": -9020.652048256137, - "rotation": 0.21237816588569713, - "action": "CARVE_RIGHT" - }, - { - "x": 15.36787058420501, - "y": -9026.335926073327, - "rotation": 0.2577567264375497, - "action": "CARVE_RIGHT" - }, - { - "x": 16.61932863606014, - "y": -9031.848821077107, - "rotation": 0.3031352869894023, - "action": "CARVE_RIGHT" - }, - { - "x": 18.058622144389794, - "y": -9037.190091770079, - "rotation": 0.34851384754125486, - "action": "CARVE_RIGHT" - }, - { - "x": 19.685731143725313, - "y": -9042.359145377304, - "rotation": 0.39389240809310744, - "action": "CARVE_RIGHT" - }, - { - "x": 21.500584508234986, - "y": -9047.355437717075, - "rotation": 0.43927096864496, - "action": "NOTHING" - }, - { - "x": 23.50160963315499, - "y": -9052.181169419364, - "rotation": 0.43578031014097135, - "action": "NOTHING" - }, - { - "x": 25.48716019370085, - "y": -9057.02309306958, - "rotation": 0.4322896516369827, - "action": "NOTHING" - }, - { - "x": 27.457239903769896, - "y": -9061.8812481683, - "rotation": 0.428798993132994, - "action": "NOTHING" - }, - { - "x": 29.411852142983296, - "y": -9066.755674439739, - "rotation": 0.42530833462900536, - "action": "NOTHING" - }, - { - "x": 31.350999957560283, - "y": -9071.646411831107, - "rotation": 0.4218176761250167, - "action": "NOTHING" - }, - { - "x": 33.274686061190245, - "y": -9076.553500511982, - "rotation": 0.41832701762102803, - "action": "NOTHING" - }, - { - "x": 35.18291283590268, - "y": -9081.476980873664, - "rotation": 0.41483635911703937, - "action": "NOTHING" - }, - { - "x": 37.075682332934946, - "y": -9086.416893528552, - "rotation": 0.4113457006130507, - "action": "NOTHING" - }, - { - "x": 38.95299627359795, - "y": -9091.37327930951, - "rotation": 0.40785504210906204, - "action": "NOTHING" - }, - { - "x": 40.81485605013958, - "y": -9096.346179269232, - "rotation": 0.4043643836050734, - "action": "NOTHING" - }, - { - "x": 42.66126272660616, - "y": -9101.335634679624, - "rotation": 0.4008737251010847, - "action": "NOTHING" - }, - { - "x": 44.49221703970161, - "y": -9106.341687031168, - "rotation": 0.39738306659709605, - "action": "NOTHING" - }, - { - "x": 46.30771939964458, - "y": -9111.364378032305, - "rotation": 0.3938924080931074, - "action": "CARVE_LEFT" - }, - { - "x": 47.75391292665022, - "y": -9116.731254946191, - "rotation": 0.3485138475412548, - "action": "CARVE_LEFT" - }, - { - "x": 49.01233539490875, - "y": -9122.274829441256, - "rotation": 0.30313528698940223, - "action": "CARVE_LEFT" - }, - { - "x": 50.082923421180816, - "y": -9127.99576120137, - "rotation": 0.25775672643754965, - "action": "CARVE_LEFT" - }, - { - "x": 50.96556283638656, - "y": -9133.89475573234, - "rotation": 0.21237816588569708, - "action": "CARVE_LEFT" - }, - { - "x": 51.66008882086172, - "y": -9139.972564239077, - "rotation": 0.1669996053338445, - "action": "CARVE_LEFT" - }, - { - "x": 52.16628603927585, - "y": -9146.229983503064, - "rotation": 0.12162104478199193, - "action": "CARVE_LEFT" - }, - { - "x": 52.48388877521345, - "y": -9152.667855760146, - "rotation": 0.07624248423013935, - "action": "CARVE_LEFT" - }, - { - "x": 52.61258106541886, - "y": -9159.287068578617, - "rotation": 0.030863923678286782, - "action": "CARVE_LEFT" - }, - { - "x": 52.55200031939078, - "y": -9165.975976850601, - "rotation": 6.268670670306021, - "action": "CARVE_LEFT" - }, - { - "x": 52.30179721615788, - "y": -9172.495318149735, - "rotation": 6.223292109754168, - "action": "CARVE_LEFT" - }, - { - "x": 51.86167457647213, - "y": -9178.844198624814, - "rotation": 6.177913549202316, - "action": "CARVE_LEFT" - }, - { - "x": 51.23138722378003, - "y": -9185.021773812648, - "rotation": 6.132534988650463, - "action": "CARVE_LEFT" - }, - { - "x": 50.410741845541324, - "y": -9191.027248507176, - "rotation": 6.087156428098611, - "action": "CARVE_LEFT" - }, - { - "x": 49.39959685489446, - "y": -9196.859876628909, - "rotation": 6.041777867546759, - "action": "CARVE_LEFT" - }, - { - "x": 48.197862252667925, - "y": -9202.5189610947, - "rotation": 5.996399306994906, - "action": "CARVE_LEFT" - }, - { - "x": 46.80549948973664, - "y": -9208.003853687835, - "rotation": 5.951020746443054, - "action": "CARVE_LEFT" - }, - { - "x": 45.22252132972256, - "y": -9213.313954928448, - "rotation": 5.905642185891201, - "action": "CARVE_LEFT" - }, - { - "x": 43.44899171203868, - "y": -9218.448713944263, - "rotation": 5.860263625339349, - "action": "CARVE_LEFT" - }, - { - "x": 41.485025615275646, - "y": -9223.407628341649, - "rotation": 5.814885064787497, - "action": "NOTHING" - }, - { - "x": 39.31871337646099, - "y": -9228.18041635065, - "rotation": 5.818375723291485, - "action": "NOTHING" - }, - { - "x": 37.16826533959339, - "y": -9232.969168790443, - "rotation": 5.821866381795473, - "action": "NOTHING" - }, - { - "x": 35.033673739576315, - "y": -9237.773922587083, - "rotation": 5.825357040299462, - "action": "NOTHING" - }, - { - "x": 32.91493115650998, - "y": -9242.594714898016, - "rotation": 5.82884769880345, - "action": "NOTHING" - }, - { - "x": 30.812030514789598, - "y": -9247.431583111425, - "rotation": 5.832338357307439, - "action": "NOTHING" - }, - { - "x": 28.72496508220589, - "y": -9252.284564845575, - "rotation": 5.835829015811427, - "action": "NOTHING" - }, - { - "x": 26.653728469047802, - "y": -9257.153697948152, - "rotation": 5.839319674315416, - "action": "NOTHING" - }, - { - "x": 24.598314627207444, - "y": -9262.039020495613, - "rotation": 5.842810332819404, - "action": "NOTHING" - }, - { - "x": 22.55871784928723, - "y": -9266.940570792538, - "rotation": 5.8463009913233925, - "action": "NOTHING" - }, - { - "x": 20.53493276770924, - "y": -9271.858387370974, - "rotation": 5.849791649827381, - "action": "NOTHING" - }, - { - "x": 18.52695435382676, - "y": -9276.792508989789, - "rotation": 5.853282308331369, - "action": "NOTHING" - }, - { - "x": 16.534777917038028, - "y": -9281.742974634028, - "rotation": 5.856772966835358, - "action": "NOTHING" - }, - { - "x": 14.558399103902184, - "y": -9286.70982351426, - "rotation": 5.860263625339346, - "action": "NOTHING" - }, - { - "x": 12.597813897257373, - "y": -9291.693095065946, - "rotation": 5.863754283843335, - "action": "NOTHING" - }, - { - "x": 10.653018615341043, - "y": -9296.69282894879, - "rotation": 5.867244942347323, - "action": "NOTHING" - }, - { "x": 8.724009910912425, "y": -9301.7090650461, "rotation": 5.870735600851312, "action": "NOTHING" }, - { "x": 6.810784770377168, "y": -9306.741843464151, "rotation": 5.8742262593553, "action": "NOTHING" }, - { - "x": 4.913340512914143, - "y": -9311.79120453155, - "rotation": 5.8777169178592885, - "action": "NOTHING" - }, - { - "x": 3.031674789604404, - "y": -9316.857188798596, - "rotation": 5.881207576363277, - "action": "NOTHING" - }, - { - "x": 1.165785582562303, - "y": -9321.939837036653, - "rotation": 5.884698234867265, - "action": "NOTHING" - }, - { - "x": -0.6843287959312472, - "y": -9327.039190237512, - "rotation": 5.888188893371254, - "action": "NOTHING" - }, - { - "x": -2.5186697042933677, - "y": -9332.155289612767, - "rotation": 5.891679551875242, - "action": "NOTHING" - }, - { - "x": -4.337238172501672, - "y": -9337.288176593182, - "rotation": 5.895170210379231, - "action": "NOTHING" - }, - { - "x": -6.1400349029545875, - "y": -9342.437892828068, - "rotation": 5.898660868883219, - "action": "NOTHING" - }, - { - "x": -7.927060271329555, - "y": -9347.604480184653, - "rotation": 5.902151527387208, - "action": "NOTHING" - }, - { - "x": -9.698314327439103, - "y": -9352.787980747466, - "rotation": 5.905642185891196, - "action": "NOTHING" - }, - { - "x": -11.4537967960848, - "y": -9357.988436817706, - "rotation": 5.9091328443951845, - "action": "NOTHING" - }, - { - "x": -13.193507077909107, - "y": -9363.205890912632, - "rotation": 5.912623502899173, - "action": "CARVE_RIGHT" - }, - { - "x": -14.567969763283111, - "y": -9368.76383325286, - "rotation": 5.958002063451025, - "action": "CARVE_RIGHT" - }, - { - "x": -15.751131179696095, - "y": -9374.501804498665, - "rotation": 6.003380624002878, - "action": "CARVE_RIGHT" - }, - { - "x": -16.742915733013636, - "y": -9380.420475515079, - "rotation": 6.04875918455473, - "action": "CARVE_RIGHT" - }, - { - "x": -17.543197071191827, - "y": -9386.52056296346, - "rotation": 6.094137745106583, - "action": "CARVE_RIGHT" - }, - { - "x": -18.151798219470475, - "y": -9392.802829178712, - "rotation": 6.139516305658435, - "action": "CARVE_RIGHT" - }, - { - "x": -18.56849171522858, - "y": -9399.268082046821, - "rotation": 6.184894866210287, - "action": "CARVE_RIGHT" - }, - { - "x": -18.79299974250288, - "y": -9405.917174882694, - "rotation": 6.23027342676214, - "action": "CARVE_RIGHT" - }, - { - "x": -18.824994266170265, - "y": -9412.751006308301, - "rotation": 6.275651987313992, - "action": "CARVE_RIGHT" - }, - { - "x": -18.664120863066394, - "y": -9419.471572572565, - "rotation": 0.037845240686258386, - "action": "CARVE_RIGHT" - }, - { - "x": -18.310070670194328, - "y": -9426.018719772394, - "rotation": 0.08322380123811096, - "action": "CARVE_RIGHT" - }, - { - "x": -17.76258685386153, - "y": -9432.391592535476, - "rotation": 0.12860236178996354, - "action": "CARVE_RIGHT" - }, - { - "x": -17.02146447093891, - "y": -9438.58938477145, - "rotation": 0.1739809223418161, - "action": "CARVE_RIGHT" - }, - { - "x": -16.08655033046668, - "y": -9444.611339541285, - "rotation": 0.2193594828936687, - "action": "CARVE_RIGHT" - }, - { - "x": -14.957742855606275, - "y": -9450.45674892699, - "rotation": 0.26473804344552126, - "action": "CARVE_RIGHT" - }, - { - "x": -13.634991945937427, - "y": -9456.12495390166, - "rotation": 0.31011660399737384, - "action": "CARVE_RIGHT" - }, - { - "x": -12.118298840099587, - "y": -9461.61534419983, - "rotation": 0.3554951645492264, - "action": "CARVE_RIGHT" - }, - { - "x": -10.4077159787769, - "y": -9466.92735818816, - "rotation": 0.400873725101079, - "action": "CARVE_RIGHT" - }, - { - "x": -8.503346868025865, - "y": -9472.060482736442, - "rotation": 0.44625228565293157, - "action": "CARVE_RIGHT" - }, - { - "x": -6.405345942944887, - "y": -9477.014253088926, - "rotation": 0.49163084620478414, - "action": "CARVE_RIGHT" - }, - { - "x": -4.113918431684882, - "y": -9481.788252735967, - "rotation": 0.5370094067566367, - "action": "CARVE_RIGHT" - }, - { - "x": -1.6293202198001282, - "y": -9486.382113285998, - "rotation": 0.5823879673084892, - "action": "CARVE_RIGHT" - }, - { - "x": 1.0481422850614592, - "y": -9490.79551433781, - "rotation": 0.6277665278603417, - "action": "CARVE_RIGHT" - }, - { - "x": 3.918112288129449, - "y": -9495.028183353164, - "rotation": 0.6731450884121942, - "action": "CARVE_RIGHT" - }, - { - "x": 6.980182742144208, - "y": -9499.07989552971, - "rotation": 0.7185236489640467, - "action": "CARVE_RIGHT" - }, - { - "x": 10.233896481653243, - "y": -9502.95047367423, - "rotation": 0.7639022095158993, - "action": "CARVE_RIGHT" - }, - { - "x": 13.678746356971358, - "y": -9506.639788076185, - "rotation": 0.8092807700677518, - "action": "CARVE_RIGHT" - }, - { - "x": 17.314175367805447, - "y": -9510.147756381602, - "rotation": 0.8546593306196043, - "action": "CARVE_RIGHT" - }, - { - "x": 21.139576796544723, - "y": -9513.47434346725, - "rotation": 0.9000378911714568, - "action": "CARVE_RIGHT" - }, - { - "x": 25.1542943412172, - "y": -9516.619561315134, - "rotation": 0.9454164517233093, - "action": "CARVE_RIGHT" - }, - { - "x": 29.35762224811319, - "y": -9519.583468887324, - "rotation": 0.9907950122751619, - "action": "NOTHING" - }, - { - "x": 34.007519945502494, - "y": -9522.127974870116, - "rotation": 0.9873043537711732, - "action": "NOTHING" - }, - { - "x": 38.63701893527939, - "y": -9524.68551599125, - "rotation": 0.9838136952671845, - "action": "NOTHING" - }, - { - "x": 43.246186653473465, - "y": -9527.25608818173, - "rotation": 0.9803230367631959, - "action": "NOTHING" - }, - { - "x": 47.835090037430156, - "y": -9529.839687717566, - "rotation": 0.9768323782592072, - "action": "NOTHING" - }, - { - "x": 52.40379552708778, - "y": -9532.436311218815, - "rotation": 0.9733417197552185, - "action": "NOTHING" - }, - { - "x": 56.95236906625138, - "y": -9535.045955648642, - "rotation": 0.9698510612512299, - "action": "NOTHING" - }, - { - "x": 61.480876103863515, - "y": -9537.668618312377, - "rotation": 0.9663604027472412, - "action": "NOTHING" - }, - { - "x": 65.98938159527194, - "y": -9540.304296856562, - "rotation": 0.9628697442432526, - "action": "NOTHING" - }, - { - "x": 70.47795000349416, - "y": -9542.952989268028, - "rotation": 0.9593790857392639, - "action": "NOTHING" - }, - { - "x": 74.94664530047895, - "y": -9545.614693872942, - "rotation": 0.9558884272352752, - "action": "NOTHING" - }, - { - "x": 79.3955309683648, - "y": -9548.289409335885, - "rotation": 0.9523977687312866, - "action": "NOTHING" - }, - { - "x": 83.82467000073522, - "y": -9550.977134658915, - "rotation": 0.9489071102272979, - "action": "NOTHING" - }, - { - "x": 88.23412490387108, - "y": -9553.677869180636, - "rotation": 0.9454164517233092, - "action": "NOTHING" - }, - { - "x": 92.6239576979998, - "y": -9556.39161257527, - "rotation": 0.9419257932193206, - "action": "NOTHING" - }, - { - "x": 96.99422991854158, - "y": -9559.118364851736, - "rotation": 0.9384351347153319, - "action": "NOTHING" - }, - { - "x": 101.34500261735252, - "y": -9561.858126352727, - "rotation": 0.9349444762113432, - "action": "NOTHING" - }, - { - "x": 105.67633636396477, - "y": -9564.610897753784, - "rotation": 0.9314538177073546, - "action": "NOTHING" - }, - { - "x": 109.98829124682354, - "y": -9567.376680062387, - "rotation": 0.9279631592033659, - "action": "CARVE_LEFT" - }, - { - "x": 113.67653724245113, - "y": -9570.714954646723, - "rotation": 0.8825845986515134, - "action": "CARVE_LEFT" - }, - { - "x": 117.1728710209549, - "y": -9574.226526473783, - "rotation": 0.8372060380996609, - "action": "CARVE_LEFT" - }, - { - "x": 120.47784120913053, - "y": -9577.911503020972, - "rotation": 0.7918274775478084, - "action": "CARVE_LEFT" - }, - { - "x": 123.59194401842252, - "y": -9581.770039067495, - "rotation": 0.7464489169959558, - "action": "CARVE_LEFT" - }, - { - "x": 126.51562338425025, - "y": -9585.802336567811, - "rotation": 0.7010703564441033, - "action": "CARVE_LEFT" - }, - { - "x": 129.24927110498643, - "y": -9590.008644525416, - "rotation": 0.6556917958922508, - "action": "CARVE_LEFT" - }, - { - "x": 131.7932269805888, - "y": -9594.389258866928, - "rotation": 0.6103132353403983, - "action": "CARVE_LEFT" - }, - { - "x": 134.1477789508857, - "y": -9598.944522316484, - "rotation": 0.5649346747885458, - "action": "CARVE_LEFT" - }, - { - "x": 136.31316323351675, - "y": -9603.674824270474, - "rotation": 0.5195561142366932, - "action": "CARVE_LEFT" - }, - { - "x": 138.2895644615288, - "y": -9608.580600672563, - "rotation": 0.47417755368484066, - "action": "CARVE_LEFT" - }, - { - "x": 140.07711582062888, - "y": -9613.662333889042, - "rotation": 0.4287989931329881, - "action": "CARVE_LEFT" - }, - { - "x": 141.67589918609406, - "y": -9618.920552584486, - "rotation": 0.3834204325811355, - "action": "CARVE_LEFT" - }, - { - "x": 143.08594525933972, - "y": -9624.355831597726, - "rotation": 0.33804187202928293, - "action": "CARVE_LEFT" - }, - { - "x": 144.30723370414665, - "y": -9629.96879181813, - "rotation": 0.29266331147743035, - "action": "CARVE_LEFT" - }, - { - "x": 145.33969328254798, - "y": -9635.760100062194, - "rotation": 0.24728475092557778, - "action": "CARVE_LEFT" - }, - { - "x": 146.18320199037677, - "y": -9641.730468950445, - "rotation": 0.2019061903737252, - "action": "CARVE_LEFT" - }, - { - "x": 146.83758719247487, - "y": -9647.88065678465, - "rotation": 0.15652762982187263, - "action": "CARVE_LEFT" - }, - { - "x": 147.30262575756416, - "y": -9654.211467425332, - "rotation": 0.11114906927002005, - "action": "CARVE_LEFT" - }, - { - "x": 147.57804419278082, - "y": -9660.723750169598, - "rotation": 0.06577050871816748, - "action": "CARVE_LEFT" - }, - { - "x": 147.66351877787326, - "y": -9667.418399629272, - "rotation": 0.020391948166314906, - "action": "CARVE_LEFT" - }, - { - "x": 147.55868602883282, - "y": -9674.10154323148, - "rotation": 6.258198694794048, - "action": "CARVE_LEFT" - }, - { - "x": 147.26321246424428, - "y": -9680.613966425039, - "rotation": 6.212820134242196, - "action": "CARVE_LEFT" - }, - { - "x": 146.77681670091945, - "y": -9686.954790405563, - "rotation": 6.167441573690343, - "action": "CARVE_LEFT" - }, - { - "x": 146.09926931497913, - "y": -9693.123185715669, - "rotation": 6.122063013138491, - "action": "CARVE_LEFT" - }, - { - "x": 145.23039270328204, - "y": -9699.118372114188, - "rotation": 6.076684452586639, - "action": "CARVE_LEFT" - }, - { - "x": 144.17006094520048, - "y": -9704.939618445724, - "rotation": 6.031305892034786, - "action": "CARVE_LEFT" - }, - { - "x": 142.91819966474148, - "y": -9710.586242510517, - "rotation": 5.985927331482934, - "action": "CARVE_LEFT" - }, - { - "x": 141.4747858930127, - "y": -9716.057610934638, - "rotation": 5.940548770931081, - "action": "CARVE_LEFT" - }, - { - "x": 139.83984793103235, - "y": -9721.353139040515, - "rotation": 5.895170210379229, - "action": "CARVE_LEFT" - }, - { - "x": 138.01346521288224, - "y": -9726.472290717767, - "rotation": 5.8497916498273765, - "action": "CARVE_LEFT" - }, - { - "x": 135.99576816920307, - "y": -9731.414578294369, - "rotation": 5.804413089275524, - "action": "CARVE_LEFT" - }, - { - "x": 133.78693809103132, - "y": -9736.179562408139, - "rotation": 5.759034528723672, - "action": "CARVE_LEFT" - }, - { - "x": 131.38720699397672, - "y": -9740.76685187854, - "rotation": 5.713655968171819, - "action": "CARVE_LEFT" - }, - { - "x": 128.79685748273957, - "y": -9745.176103578806, - "rotation": 5.668277407619967, - "action": "CARVE_LEFT" - }, - { - "x": 126.01622261596715, - "y": -9749.407022308384, - "rotation": 5.6228988470681145, - "action": "CARVE_LEFT" - }, - { - "x": 123.0456857714483, - "y": -9753.459360665693, - "rotation": 5.577520286516262, - "action": "CARVE_LEFT" - }, - { - "x": 119.88568051164543, - "y": -9757.332918921207, - "rotation": 5.53214172596441, - "action": "CARVE_LEFT" - }, - { - "x": 116.53669044956308, - "y": -9761.027544890847, - "rotation": 5.486763165412557, - "action": "NOTHING" - }, - { - "x": 112.83363978622711, - "y": -9764.391145171981, - "rotation": 5.490253823916546, - "action": "NOTHING" - }, - { - "x": 109.14859441330586, - "y": -9767.768278270123, - "rotation": 5.493744482420534, - "action": "NOTHING" - }, - { - "x": 105.48151065486611, - "y": -9771.158956688756, - "rotation": 5.497235140924523, - "action": "NOTHING" - }, - { - "x": 101.83234527313837, - "y": -9774.563193231183, - "rotation": 5.500725799428511, - "action": "NOTHING" - }, - { - "x": 98.20105546738691, - "y": -9777.98100099969, - "rotation": 5.5042164579324995, - "action": "NOTHING" - }, - { - "x": 94.58759887278259, - "y": -9781.41239339472, - "rotation": 5.507707116436488, - "action": "NOTHING" - }, - { - "x": 90.99193355927845, - "y": -9784.85738411403, - "rotation": 5.511197774940476, - "action": "NOTHING" - }, - { - "x": 87.41401803048802, - "y": -9788.315987151876, - "rotation": 5.514688433444465, - "action": "NOTHING" - }, - { - "x": 83.8538112225664, - "y": -9791.788216798182, - "rotation": 5.518179091948453, - "action": "NOTHING" - }, - { - "x": 80.31127250309412, - "y": -9795.274087637716, - "rotation": 5.521669750452442, - "action": "NOTHING" - }, - { "x": 76.7863616699636, "y": -9798.773614549264, "rotation": 5.52516040895643, "action": "NOTHING" }, - { - "x": 73.27903895026853, - "y": -9802.286812704817, - "rotation": 5.528651067460419, - "action": "NOTHING" - }, - { - "x": 69.78926499919584, - "y": -9805.813697568754, - "rotation": 5.532141725964407, - "action": "NOTHING" - }, - { - "x": 66.31700089892038, - "y": -9809.354284897021, - "rotation": 5.5356323844683955, - "action": "NOTHING" - }, - { - "x": 62.86220815750242, - "y": -9812.908590736319, - "rotation": 5.539123042972384, - "action": "NOTHING" - }, - { - "x": 59.42484870778771, - "y": -9816.476631423297, - "rotation": 5.542613701476372, - "action": "NOTHING" - }, - { - "x": 56.00488490631035, - "y": -9820.058423583738, - "rotation": 5.546104359980361, - "action": "NOTHING" - }, - { - "x": 52.60227953219829, - "y": -9823.653984131755, - "rotation": 5.549595018484349, - "action": "NOTHING" - }, - { - "x": 49.21699578608152, - "y": -9827.263330268986, - "rotation": 5.553085676988338, - "action": "NOTHING" - }, - { - "x": 45.84899728900297, - "y": -9830.886479483788, - "rotation": 5.556576335492326, - "action": "NOTHING" - }, - { - "x": 42.49824808133204, - "y": -9834.523449550437, - "rotation": 5.5600669939963145, - "action": "NOTHING" - }, - { - "x": 39.164712621680785, - "y": -9838.174258528334, - "rotation": 5.563557652500303, - "action": "NOTHING" - }, - { - "x": 35.84835578582285, - "y": -9841.838924761201, - "rotation": 5.567048311004291, - "action": "NOTHING" - }, - { - "x": 32.54914286561491, - "y": -9845.517466876292, - "rotation": 5.57053896950828, - "action": "NOTHING" - }, - { - "x": 29.267039567920904, - "y": -9849.209903783598, - "rotation": 5.574029628012268, - "action": "NOTHING" - }, - { - "x": 26.002012013538785, - "y": -9852.916254675056, - "rotation": 5.577520286516257, - "action": "NOTHING" - }, - { - "x": 22.754026736129987, - "y": -9856.636539023759, - "rotation": 5.581010945020245, - "action": "NOTHING" - }, - { - "x": 19.523050681151478, - "y": -9860.370776583173, - "rotation": 5.584501603524234, - "action": "NOTHING" - }, - { - "x": 16.309051204790446, - "y": -9864.118987386353, - "rotation": 5.587992262028222, - "action": "NOTHING" - }, - { - "x": 13.111996072901595, - "y": -9867.881191745155, - "rotation": 5.5914829205322105, - "action": "CARVE_RIGHT" - }, - { - "x": 10.424126719405631, - "y": -9872.113078823031, - "rotation": 5.636861481084063, - "action": "CARVE_RIGHT" - }, - { - "x": 7.925410428129746, - "y": -9876.518932268787, - "rotation": 5.682240041635915, - "action": "CARVE_RIGHT" - }, - { - "x": 5.615571822103994, - "y": -9881.09910612113, - "rotation": 5.727618602187768, - "action": "CARVE_RIGHT" - }, - { - "x": 3.4943872125179736, - "y": -9885.854001060132, - "rotation": 5.77299716273962, - "action": "CARVE_RIGHT" - }, - { - "x": 1.5616844612104857, - "y": -9890.784064282354, - "rotation": 5.818375723291473, - "action": "CARVE_RIGHT" - }, - { - "x": -0.18265715649749326, - "y": -9895.889789376264, - "rotation": 5.863754283843325, - "action": "CARVE_RIGHT" - }, - { - "x": -1.738707088627405, - "y": -9901.171716197978, - "rotation": 5.909132844395177, - "action": "CARVE_RIGHT" - }, - { - "x": -3.1064836430260265, - "y": -9906.6304307473, - "rotation": 5.95451140494703, - "action": "CARVE_RIGHT" - }, - { - "x": -4.285954123507578, - "y": -9912.266565044094, - "rotation": 5.999889965498882, - "action": "CARVE_RIGHT" - }, - { - "x": -5.277034965655834, - "y": -9918.08079700494, - "rotation": 6.045268526050735, - "action": "CARVE_RIGHT" - }, - { - "x": -6.079591872287013, - "y": -9924.073850320125, - "rotation": 6.090647086602587, - "action": "CARVE_RIGHT" - }, - { - "x": -6.693439948574322, - "y": -9930.246494330917, - "rotation": 6.136025647154439, - "action": "CARVE_RIGHT" - }, - { - "x": -7.118343836834901, - "y": -9936.59954390717, - "rotation": 6.181404207706292, - "action": "CARVE_RIGHT" - }, - { - "x": -7.354017850980043, - "y": -9943.13385932522, - "rotation": 6.226782768258144, - "action": "CARVE_RIGHT" - }, - { - "x": -7.400126110629429, - "y": -9949.850346146095, - "rotation": 6.272161328809997, - "action": "CARVE_RIGHT" - }, - { - "x": -7.256302202322677, - "y": -9956.48267786827, - "rotation": 0.03435458218226284, - "action": "CARVE_RIGHT" - }, - { - "x": -6.922221618519601, - "y": -9962.944549044407, - "rotation": 0.07973314273411541, - "action": "CARVE_RIGHT" - }, - { - "x": -6.397611926577962, - "y": -9969.23508934931, - "rotation": 0.125111703285968, - "action": "CARVE_RIGHT" - }, - { - "x": -5.682252629892698, - "y": -9975.35347778285, - "rotation": 0.17049026383782057, - "action": "CARVE_RIGHT" - }, - { - "x": -4.775975029382307, - "y": -9981.29894253924, - "rotation": 0.21586882438967314, - "action": "CARVE_RIGHT" - }, - { - "x": -3.6786620853215424, - "y": -9987.070760876639, - "rotation": 0.2612473849415257, - "action": "CARVE_RIGHT" - }, - { - "x": -2.3902482795195814, - "y": -9992.668258987069, - "rotation": 0.3066259454933783, - "action": "CARVE_RIGHT" - }, - { - "x": -0.9107194778428467, - "y": -9998.090811866674, - "rotation": 0.35200450604523087, - "action": "CARVE_RIGHT" - }, - { - "x": 0.75988720691835, - "y": -10003.337843186284, - "rotation": 0.39738306659708345, - "action": "CARVE_RIGHT" - }, - { - "x": 2.621483551840165, - "y": -10008.408825162312, - "rotation": 0.442761627148936, - "action": "CARVE_RIGHT" - }, - { - "x": 4.6739303603134115, - "y": -10013.303278427975, - "rotation": 0.4881401877007886, - "action": "CARVE_RIGHT" - }, - { - "x": 6.917037598150388, - "y": -10018.020771904821, - "rotation": 0.5335187482526411, - "action": "CARVE_RIGHT" - }, - { - "x": 9.350564529351185, - "y": -10022.560922674598, - "rotation": 0.5788973088044936, - "action": "CARVE_RIGHT" - }, - { - "x": 11.974219851530263, - "y": -10026.923395851421, - "rotation": 0.6242758693563462, - "action": "CARVE_RIGHT" - }, - { - "x": 14.787661831004145, - "y": -10031.107904454273, - "rotation": 0.6696544299081987, - "action": "CARVE_RIGHT" - }, - { - "x": 17.790498437541018, - "y": -10035.11420927982, - "rotation": 0.7150329904600512, - "action": "NOTHING" - }, - { - "x": 21.109674921386073, - "y": -10038.825520773114, - "rotation": 0.7115423319560625, - "action": "NOTHING" - }, - { - "x": 24.411577533027504, - "y": -10042.550791392821, - "rotation": 0.7080516734520739, - "action": "NOTHING" - }, - { - "x": 27.696240619497324, - "y": -10046.290040073198, - "rotation": 0.7045610149480852, - "action": "NOTHING" - }, - { - "x": 30.963698113608057, - "y": -10050.043286030565, - "rotation": 0.7010703564440965, - "action": "NOTHING" - }, - { - "x": 34.213983535024234, - "y": -10053.810548762516, - "rotation": 0.6975796979401079, - "action": "NOTHING" - }, - { - "x": 37.44712999133125, - "y": -10057.591848047134, - "rotation": 0.6940890394361192, - "action": "NOTHING" - }, - { - "x": 40.66317017910161, - "y": -10061.387203942197, - "rotation": 0.6905983809321306, - "action": "NOTHING" - }, - { - "x": 43.862136384958546, - "y": -10065.196636784407, - "rotation": 0.6871077224281419, - "action": "NOTHING" - }, - { - "x": 47.04406048663701, - "y": -10069.020167188599, - "rotation": 0.6836170639241532, - "action": "NOTHING" - }, - { - "x": 50.20897395404211, - "y": -10072.857816046968, - "rotation": 0.6801264054201646, - "action": "NOTHING" - }, - { - "x": 53.3569078503049, - "y": -10076.709604528287, - "rotation": 0.6766357469161759, - "action": "NOTHING" - }, - { - "x": 56.487892832835605, - "y": -10080.575554077137, - "rotation": 0.6731450884121872, - "action": "NOTHING" - }, - { - "x": 59.60195915437424, - "y": -10084.45568641313, - "rotation": 0.6696544299081986, - "action": "NOTHING" - }, - { - "x": 62.69913666403868, - "y": -10088.350023530142, - "rotation": 0.6661637714042099, - "action": "NOTHING" - }, - { - "x": 65.77945480837013, - "y": -10092.258587695536, - "rotation": 0.6626731129002212, - "action": "NOTHING" - }, - { - "x": 68.84294263237601, - "y": -10096.181401449407, - "rotation": 0.6591824543962326, - "action": "NOTHING" - }, - { - "x": 71.88962878057035, - "y": -10100.118487603802, - "rotation": 0.6556917958922439, - "action": "NOTHING" - }, - { - "x": 74.91954149801154, - "y": -10104.069869241974, - "rotation": 0.6522011373882552, - "action": "NOTHING" - }, - { - "x": 77.93270863133762, - "y": -10108.035569717602, - "rotation": 0.6487104788842666, - "action": "NOTHING" - }, - { - "x": 80.92915762979892, - "y": -10112.01561265405, - "rotation": 0.6452198203802779, - "action": "NOTHING" - }, - { - "x": 83.9089155462883, - "y": -10116.010021943595, - "rotation": 0.6417291618762893, - "action": "NOTHING" - }, - { - "x": 86.8720090383687, - "y": -10120.018821746682, - "rotation": 0.6382385033723006, - "action": "NOTHING" - }, - { - "x": 89.81846436929834, - "y": -10124.042036491162, - "rotation": 0.6347478448683119, - "action": "NOTHING" - }, - { - "x": 92.74830740905321, - "y": -10128.079690871547, - "rotation": 0.6312571863643233, - "action": "CARVE_LEFT" - }, - { - "x": 95.19523818403106, - "y": -10132.563452673552, - "rotation": 0.5858786258124707, - "action": "CARVE_LEFT" - }, - { - "x": 97.45250263932323, - "y": -10137.22240660774, - "rotation": 0.5405000652606182, - "action": "CARVE_LEFT" - }, - { - "x": 99.52031076330486, - "y": -10142.056965756756, - "rotation": 0.49512150470876565, - "action": "CARVE_LEFT" - }, - { - "x": 101.39882102903401, - "y": -10147.067589687584, - "rotation": 0.44974294415691307, - "action": "CARVE_LEFT" - }, - { - "x": 103.08814053133209, - "y": -10152.254784327044, - "rotation": 0.4043643836050605, - "action": "CARVE_LEFT" - }, - { - "x": 104.5883251235222, - "y": -10157.61910183761, - "rotation": 0.3589858230532079, - "action": "CARVE_LEFT" - }, - { - "x": 105.8993795538259, - "y": -10163.161140493541, - "rotation": 0.31360726250135534, - "action": "CARVE_LEFT" - }, - { - "x": 107.0212576014194, - "y": -10168.881544557311, - "rotation": 0.26822870194950277, - "action": "CARVE_LEFT" - }, - { - "x": 107.95386221215, - "y": -10174.78100415636, - "rotation": 0.2228501413976502, - "action": "CARVE_LEFT" - }, - { - "x": 108.6970456339134, - "y": -10180.860255160156, - "rotation": 0.17747158084579762, - "action": "CARVE_LEFT" - }, - { - "x": 109.25060955169302, - "y": -10187.12007905755, - "rotation": 0.13209302029394504, - "action": "CARVE_LEFT" - }, - { - "x": 109.61430522226176, - "y": -10193.561302834452, - "rotation": 0.08671445974209246, - "action": "CARVE_LEFT" - }, - { - "x": 109.78783360854739, - "y": -10200.184798851815, - "rotation": 0.041335899190239896, - "action": "CARVE_LEFT" - }, - { - "x": 109.77084578406445, - "y": -10206.959917446511, - "rotation": 6.2791426458179735, - "action": "CARVE_LEFT" - }, - { - "x": 109.56298569533047, - "y": -10213.564360054004, - "rotation": 6.233764085266121, - "action": "CARVE_LEFT" - }, - { - "x": 109.16394944676424, - "y": -10219.99722650765, - "rotation": 6.188385524714269, - "action": "CARVE_LEFT" - }, - { - "x": 108.57348516161923, - "y": -10226.257666043955, - "rotation": 6.143006964162416, - "action": "CARVE_LEFT" - }, - { - "x": 107.79139284326465, - "y": -10232.344877171658, - "rotation": 6.097628403610564, - "action": "CARVE_LEFT" - }, - { - "x": 106.81752423681321, - "y": -10238.258107541134, - "rotation": 6.0522498430587115, - "action": "CARVE_LEFT" - }, - { - "x": 105.65178269109506, - "y": -10243.996653814138, - "rotation": 6.006871282506859, - "action": "CARVE_LEFT" - }, - { - "x": 104.29412302097664, - "y": -10249.55986153385, - "rotation": 5.961492721955007, - "action": "CARVE_LEFT" - }, - { - "x": 102.74455137002398, - "y": -10254.947124995262, - "rotation": 5.916114161403154, - "action": "CARVE_LEFT" - }, - { - "x": 101.00312507350944, - "y": -10260.157887115885, - "rotation": 5.870735600851302, - "action": "CARVE_LEFT" - }, - { - "x": 99.06995252176108, - "y": -10265.191639306766, - "rotation": 5.8253570402994495, - "action": "CARVE_LEFT" - }, - { - "x": 96.94519302385396, - "y": -10270.047921343843, - "rotation": 5.779978479747597, - "action": "CARVE_LEFT" - }, - { - "x": 94.62905667164232, - "y": -10274.726321239612, - "rotation": 5.734599919195745, - "action": "CARVE_LEFT" - }, - { - "x": 92.12180420413208, - "y": -10279.22647511511, - "rotation": 5.689221358643892, - "action": "CARVE_LEFT" - }, - { - "x": 89.42374687219264, - "y": -10283.548067072232, - "rotation": 5.64384279809204, - "action": "CARVE_LEFT" - }, - { - "x": 86.53524630360727, - "y": -10287.690829066343, - "rotation": 5.598464237540187, - "action": "CARVE_LEFT" - }, - { - "x": 83.45671436846126, - "y": -10291.654540779233, - "rotation": 5.553085676988335, - "action": "CARVE_LEFT" - }, - { - "x": 80.18861304486701, - "y": -10295.43902949237, - "rotation": 5.507707116436483, - "action": "CARVE_LEFT" - }, - { - "x": 76.73145428502521, - "y": -10299.044169960482, - "rotation": 5.46232855588463, - "action": "CARVE_LEFT" - }, - { - "x": 73.0857998816214, - "y": -10302.46988428544, - "rotation": 5.416949995332778, - "action": "CARVE_LEFT" - }, - { - "x": 69.252261334557, - "y": -10305.71614179047, - "rotation": 5.371571434780925, - "action": "CARVE_LEFT" - }, - { - "x": 65.23149971801413, - "y": -10308.78295889467, - "rotation": 5.326192874229073, - "action": "CARVE_LEFT" - }, - { - "x": 61.024225547853206, - "y": -10311.670398987842, - "rotation": 5.2808143136772205, - "action": "NOTHING" - }, - { - "x": 56.36982167931042, - "y": -10314.13790992598, - "rotation": 5.284304972181209, - "action": "NOTHING" - }, - { - "x": 51.73569456233659, - "y": -10316.618333966055, - "rotation": 5.287795630685197, - "action": "NOTHING" - }, - { - "x": 47.12177624013858, - "y": -10319.111666575112, - "rotation": 5.291286289189186, - "action": "NOTHING" - }, - { - "x": 42.52799925569257, - "y": -10321.61790356617, - "rotation": 5.294776947693174, - "action": "NOTHING" - }, - { - "x": 37.95429665046482, - "y": -10324.13704109726, - "rotation": 5.298267606197163, - "action": "NOTHING" - }, - { - "x": 33.400601963135514, - "y": -10326.669075670487, - "rotation": 5.301758264701151, - "action": "NOTHING" - }, - { - "x": 28.866849228325762, - "y": -10329.214004131078, - "rotation": 5.30524892320514, - "action": "NOTHING" - }, - { - "x": 24.35297297532767, - "y": -10331.77182366644, - "rotation": 5.308739581709128, - "action": "NOTHING" - }, - { - "x": 19.85890822683752, - "y": -10334.342531805221, - "rotation": 5.3122302402131165, - "action": "NOTHING" - }, - { - "x": 15.384590497692036, - "y": -10336.926126416367, - "rotation": 5.315720898717105, - "action": "NOTHING" - }, - { - "x": 10.929955793607732, - "y": -10339.522605708189, - "rotation": 5.319211557221093, - "action": "NOTHING" - }, - { - "x": 6.494940609923334, - "y": -10342.131968227426, - "rotation": 5.322702215725082, - "action": "NOTHING" - }, - { - "x": 2.079481930345266, - "y": -10344.754212858315, - "rotation": 5.32619287422907, - "action": "NOTHING" - }, - { - "x": -2.3164827743038003, - "y": -10347.389338821662, - "rotation": 5.329683532733059, - "action": "NOTHING" - }, - { - "x": -6.6930155473333475, - "y": -10350.03734567391, - "rotation": 5.333174191237047, - "action": "NOTHING" - }, - { - "x": -11.05017794743036, - "y": -10352.698233306228, - "rotation": 5.336664849741036, - "action": "NOTHING" - }, - { - "x": -15.388031049901652, - "y": -10355.37200194357, - "rotation": 5.340155508245024, - "action": "NOTHING" - }, - { - "x": -19.706635447913143, - "y": -10358.058652143767, - "rotation": 5.3436461667490125, - "action": "NOTHING" - }, - { - "x": -24.006051253726135, - "y": -10360.75818479661, - "rotation": 5.347136825253001, - "action": "CARVE_RIGHT" - }, - { - "x": -27.685199540002355, - "y": -10364.02707090064, - "rotation": 5.392515385804853, - "action": "CARVE_RIGHT" - }, - { - "x": -31.174623430024344, - "y": -10367.467276019099, - "rotation": 5.437893946356706, - "action": "CARVE_RIGHT" - }, - { - "x": -34.474871913415186, - "y": -10371.078907198373, - "rotation": 5.483272506908558, - "action": "CARVE_RIGHT" - }, - { - "x": -37.586441566385155, - "y": -10374.86211878505, - "rotation": 5.528651067460411, - "action": "CARVE_RIGHT" - }, - { - "x": -40.50977669104859, - "y": -10378.817112299374, - "rotation": 5.574029628012263, - "action": "CARVE_RIGHT" - }, - { - "x": -43.24526945439321, - "y": -10382.944136309035, - "rotation": 5.619408188564115, - "action": "CARVE_RIGHT" - }, - { - "x": -45.79326002690256, - "y": -10387.243486303267, - "rotation": 5.664786749115968, - "action": "CARVE_RIGHT" - }, - { - "x": -48.1540367208326, - "y": -10391.715504567252, - "rotation": 5.71016530966782, - "action": "CARVE_RIGHT" - }, - { - "x": -50.327836128143126, - "y": -10396.360580056855, - "rotation": 5.755543870219673, - "action": "CARVE_RIGHT" - }, - { - "x": -52.31484325808489, - "y": -10401.179148273664, - "rotation": 5.800922430771525, - "action": "CARVE_RIGHT" - }, - { - "x": -54.1151916744433, - "y": -10406.171691140346, - "rotation": 5.846300991323377, - "action": "CARVE_RIGHT" - }, - { - "x": -55.728963632439395, - "y": -10411.338736876309, - "rotation": 5.89167955187523, - "action": "CARVE_RIGHT" - }, - { - "x": -57.1561902152891, - "y": -10416.680859873686, - "rotation": 5.937058112427082, - "action": "CARVE_RIGHT" - }, - { - "x": -58.39685147042138, - "y": -10422.198680573623, - "rotation": 5.982436672978935, - "action": "CARVE_RIGHT" - }, - { - "x": -59.4508765453563, - "y": -10427.892865342877, - "rotation": 6.027815233530787, - "action": "CARVE_RIGHT" - }, - { - "x": -60.31814382324363, - "y": -10433.764126350727, - "rotation": 6.0731937940826395, - "action": "CARVE_RIGHT" - }, - { - "x": -60.99848105806296, - "y": -10439.813221446188, - "rotation": 6.118572354634492, - "action": "CARVE_RIGHT" - }, - { - "x": -61.49166550948604, - "y": -10446.040954035545, - "rotation": 6.163950915186344, - "action": "CARVE_RIGHT" - }, - { - "x": -61.7974240774022, - "y": -10452.448172960178, - "rotation": 6.209329475738197, - "action": "CARVE_RIGHT" - }, - { - "x": -61.915433436107634, - "y": -10459.035772374702, - "rotation": 6.254708036290049, - "action": "CARVE_RIGHT" - }, - { - "x": -61.84532489439633, - "y": -10465.674404709278, - "rotation": 0.0169012896623153, - "action": "CARVE_RIGHT" - }, - { - "x": -61.58674718083635, - "y": -10472.144588835834, - "rotation": 0.06227985021416787, - "action": "CARVE_RIGHT" - }, - { - "x": -61.139401172484206, - "y": -10478.445429001446, - "rotation": 0.10765841076602044, - "action": "CARVE_RIGHT" - }, - { - "x": -60.50303975583678, - "y": -10484.576078847655, - "rotation": 0.153036971317873, - "action": "CARVE_RIGHT" - }, - { - "x": -59.67746768813084, - "y": -10490.53574127956, - "rotation": 0.19841553186972558, - "action": "CARVE_RIGHT" - }, - { - "x": -58.66254145898936, - "y": -10496.323668335253, - "rotation": 0.24379409242157815, - "action": "CARVE_RIGHT" - }, - { - "x": -57.45816915241373, - "y": -10501.939161055558, - "rotation": 0.2891726529734307, - "action": "CARVE_RIGHT" - }, - { - "x": -56.06431030912109, - "y": -10507.38156935411, - "rotation": 0.3345512135252833, - "action": "CARVE_RIGHT" - }, - { - "x": -54.48097578922593, - "y": -10512.650291887754, - "rotation": 0.37992977407713585, - "action": "CARVE_RIGHT" - }, - { - "x": -52.70822763526513, - "y": -10517.744775927264, - "rotation": 0.4253083346289884, - "action": "CARVE_RIGHT" - }, - { - "x": -50.74617893556565, - "y": -10522.664517228386, - "rotation": 0.470686895180841, - "action": "CARVE_RIGHT" - }, - { - "x": -48.59499368795398, - "y": -10527.409059903204, - "rotation": 0.5160654557326936, - "action": "CARVE_RIGHT" - }, - { - "x": -46.254886663806595, - "y": -10531.977996291824, - "rotation": 0.5614440162845461, - "action": "CARVE_RIGHT" - }, - { - "x": -43.72612327244056, - "y": -10536.370966834374, - "rotation": 0.6068225768363986, - "action": "CARVE_RIGHT" - }, - { - "x": -41.00901942584349, - "y": -10540.58765994334, - "rotation": 0.6522011373882511, - "action": "CARVE_RIGHT" - }, - { - "x": -38.10394140374203, - "y": -10544.627811876195, - "rotation": 0.6975796979401037, - "action": "CARVE_RIGHT" - }, - { - "x": -35.011305719008035, - "y": -10548.491206608367, - "rotation": 0.7429582584919562, - "action": "CARVE_RIGHT" - }, - { - "x": -31.731578983401704, - "y": -10552.17767570651, - "rotation": 0.7883368190438087, - "action": "CARVE_RIGHT" - }, - { - "x": -28.265277773650737, - "y": -10555.687098202105, - "rotation": 0.8337153795956612, - "action": "CARVE_RIGHT" - }, - { - "x": -24.612968497864838, - "y": -10559.019400465355, - "rotation": 0.8790939401475137, - "action": "CARVE_RIGHT" - }, - { - "x": -20.77526726228468, - "y": -10562.174556079419, - "rotation": 0.9244725006993663, - "action": "CARVE_RIGHT" - }, - { - "x": -16.752839738364543, - "y": -10565.15258571494, - "rotation": 0.9698510612512188, - "action": "CARVE_RIGHT" - }, - { - "x": -12.546401030187841, - "y": -10567.953557004905, - "rotation": 1.0152296218030714, - "action": "NOTHING" - }, - { - "x": -7.892766617946492, - "y": -10570.334540601021, - "rotation": 1.0117389632990827, - "action": "NOTHING" - }, - { - "x": -3.2592496211707696, - "y": -10572.728292338052, - "rotation": 1.008248304795094, - "action": "NOTHING" - }, - { - "x": 1.3542184172533789, - "y": -10575.134807214637, - "rotation": 1.0047576462911054, - "action": "NOTHING" - }, - { - "x": 5.94770545368237, - "y": -10577.554080576314, - "rotation": 1.0012669877871168, - "action": "NOTHING" - }, - { - "x": 10.52127894499618, - "y": -10579.98610811456, - "rotation": 0.9977763292831281, - "action": "NOTHING" - }, - { - "x": 15.075005849876428, - "y": -10582.430885865844, - "rotation": 0.9942856707791394, - "action": "NOTHING" - }, - { - "x": 19.60895263008134, - "y": -10584.88841021068, - "rotation": 0.9907950122751508, - "action": "NOTHING" - }, - { - "x": 24.123185251717615, - "y": -10587.35867787268, - "rotation": 0.9873043537711621, - "action": "NOTHING" - }, - { - "x": 28.61776918650917, - "y": -10589.84168591761, - "rotation": 0.9838136952671734, - "action": "NOTHING" - }, - { - "x": 33.092769413062825, - "y": -10592.337431752452, - "rotation": 0.9803230367631848, - "action": "NOTHING" - }, - { - "x": 37.54825041813087, - "y": -10594.845913124464, - "rotation": 0.9768323782591961, - "action": "NOTHING" - }, - { - "x": 41.98427619787057, - "y": -10597.367128120242, - "rotation": 0.9733417197552074, - "action": "NOTHING" - }, - { - "x": 46.400910259100606, - "y": -10599.901075164791, - "rotation": 0.9698510612512188, - "action": "NOTHING" - }, - { - "x": 50.79821562055444, - "y": -10602.447753020591, - "rotation": 0.9663604027472301, - "action": "NOTHING" - }, - { - "x": 55.17625481413062, - "y": -10605.007160786668, - "rotation": 0.9628697442432415, - "action": "NOTHING" - }, - { - "x": 59.53508988614007, - "y": -10607.57929789767, - "rotation": 0.9593790857392528, - "action": "NOTHING" - }, - { - "x": 63.87478239855028, - "y": -10610.164164122938, - "rotation": 0.9558884272352641, - "action": "CARVE_LEFT" - }, - { - "x": 67.59222910984576, - "y": -10613.320105047425, - "rotation": 0.9105098666834116, - "action": "CARVE_LEFT" - }, - { - "x": 71.12201470756973, - "y": -10616.645344266233, - "rotation": 0.8651313061315591, - "action": "CARVE_LEFT" - }, - { - "x": 74.4647020409661, - "y": -10620.139976213313, - "rotation": 0.8197527455797066, - "action": "CARVE_LEFT" - }, - { - "x": 77.62080151196618, - "y": -10623.80414265376, - "rotation": 0.774374185027854, - "action": "CARVE_LEFT" - }, - { - "x": 80.59077121458569, - "y": -10627.638032557208, - "rotation": 0.7289956244760015, - "action": "CARVE_LEFT" - }, - { - "x": 83.37501707397406, - "y": -10631.641881971533, - "rotation": 0.683617063924149, - "action": "CARVE_LEFT" - }, - { - "x": 85.97389298511673, - "y": -10635.81597389688, - "rotation": 0.6382385033722965, - "action": "CARVE_LEFT" - }, - { - "x": 88.38770095119125, - "y": -10640.160638160007, - "rotation": 0.592859942820444, - "action": "CARVE_LEFT" - }, - { - "x": 90.61669122157815, - "y": -10644.67625128893, - "rotation": 0.5474813822685914, - "action": "CARVE_LEFT" - }, - { - "x": 92.66106242952735, - "y": -10649.363236387902, - "rotation": 0.5021028217167389, - "action": "CARVE_LEFT" - }, - { - "x": 94.52096172948085, - "y": -10654.222063012689, - "rotation": 0.45672426116488635, - "action": "CARVE_LEFT" - }, - { - "x": 96.19648493405263, - "y": -10659.253247046165, - "rotation": 0.41134570061303377, - "action": "CARVE_LEFT" - }, - { - "x": 97.6876766506666, - "y": -10664.457350574225, - "rotation": 0.3659671400611812, - "action": "CARVE_LEFT" - }, - { - "x": 98.99453041785323, - "y": -10669.834981761995, - "rotation": 0.3205885795093286, - "action": "CARVE_LEFT" - }, - { - "x": 100.1169888412059, - "y": -10675.386794730364, - "rotation": 0.27521001895747604, - "action": "CARVE_LEFT" - }, - { - "x": 101.05494372899777, - "y": -10681.113489432822, - "rotation": 0.22983145840562347, - "action": "CARVE_LEFT" - }, - { - "x": 101.80823622745979, - "y": -10687.015811532605, - "rotation": 0.1844528978537709, - "action": "CARVE_LEFT" - }, - { - "x": 102.37665695572079, - "y": -10693.094552280148, - "rotation": 0.13907433730191832, - "action": "CARVE_LEFT" - }, - { - "x": 102.7599461404106, - "y": -10699.350548390852, - "rotation": 0.09369577675006574, - "action": "CARVE_LEFT" - }, - { - "x": 102.9577937499267, - "y": -10705.784681923147, - "rotation": 0.04831721619821317, - "action": "CARVE_LEFT" - }, - { - "x": 102.96983962836545, - "y": -10712.39788015687, - "rotation": 0.0029386556463606023, - "action": "CARVE_LEFT" - }, - { - "x": 102.79570342969102, - "y": -10718.86747867736, - "rotation": 6.2407454022740945, - "action": "CARVE_LEFT" - }, - { - "x": 102.43505468906173, - "y": -10725.17024468186, - "rotation": 6.195366841722242, - "action": "CARVE_LEFT" - }, - { - "x": 101.88761503750365, - "y": -10731.305302026089, - "rotation": 6.14998828117039, - "action": "CARVE_LEFT" - }, - { - "x": 101.15315806298982, - "y": -10737.27182391084, - "rotation": 6.104609720618537, - "action": "CARVE_LEFT" - }, - { - "x": 100.23150917186672, - "y": -10743.069032751198, - "rotation": 6.059231160066685, - "action": "CARVE_LEFT" - }, - { - "x": 99.12254545062721, - "y": -10748.696200046088, - "rotation": 6.013852599514832, - "action": "CARVE_LEFT" - }, - { - "x": 97.82619552802916, - "y": -10754.152646248134, - "rotation": 5.96847403896298, - "action": "CARVE_LEFT" - }, - { - "x": 96.34243943755881, - "y": -10759.437740633859, - "rotation": 5.923095478411128, - "action": "CARVE_LEFT" - }, - { - "x": 94.67130848023815, - "y": -10764.550901174196, - "rotation": 5.877716917859275, - "action": "CARVE_LEFT" - }, - { - "x": 92.81288508777547, - "y": -10769.491594405332, - "rotation": 5.832338357307423, - "action": "CARVE_LEFT" - }, - { - "x": 90.76730268605814, - "y": -10774.259335299865, - "rotation": 5.78695979675557, - "action": "CARVE_LEFT" - }, - { - "x": 88.53474555898707, - "y": -10778.853687138284, - "rotation": 5.741581236203718, - "action": "CARVE_LEFT" - }, - { - "x": 86.11544871265163, - "y": -10783.274261380775, - "rotation": 5.6962026756518656, - "action": "CARVE_LEFT" - }, - { - "x": 83.50969773984467, - "y": -10787.520717539339, - "rotation": 5.650824115100013, - "action": "CARVE_LEFT" - }, - { - "x": 80.71782868491644, - "y": -10791.592763050232, - "rotation": 5.605445554548161, - "action": "CARVE_LEFT" - }, - { - "x": 77.74022790896676, - "y": -10795.49015314673, - "rotation": 5.560066993996308, - "action": "CARVE_LEFT" - }, - { - "x": 74.57733195537469, - "y": -10799.212690732193, - "rotation": 5.514688433444456, - "action": "NOTHING" - }, - { - "x": 71.08029642037329, - "y": -10802.623310146717, - "rotation": 5.518179091948444, - "action": "NOTHING" - }, - { - "x": 67.60051496260292, - "y": -10806.047427615049, - "rotation": 5.521669750452433, - "action": "NOTHING" - }, - { - "x": 64.13794878331582, - "y": -10809.485058834976, - "rotation": 5.525160408956421, - "action": "NOTHING" - }, - { - "x": 60.69255950900806, - "y": -10812.936219794785, - "rotation": 5.52865106746041, - "action": "NOTHING" - }, - { - "x": 57.264309190321775, - "y": -10816.400926772452, - "rotation": 5.532141725964398, - "action": "NOTHING" - }, - { - "x": 53.853160300950044, - "y": -10819.879196334834, - "rotation": 5.535632384468387, - "action": "NOTHING" - }, - { - "x": 50.45907573654453, - "y": -10823.371045336864, - "rotation": 5.539123042972375, - "action": "NOTHING" - }, - { - "x": 47.0820188136257, - "y": -10826.876490920746, - "rotation": 5.5426137014763635, - "action": "NOTHING" - }, - { - "x": 43.721953268495824, - "y": -10830.395550515153, - "rotation": 5.546104359980352, - "action": "NOTHING" - }, - { - "x": 40.37884325615453, - "y": -10833.928241834432, - "rotation": 5.54959501848434, - "action": "NOTHING" - }, - { "x": 37.0526533492171, "y": -10837.4745828778, "rotation": 5.553085676988329, "action": "NOTHING" }, - { - "x": 33.74334853683538, - "y": -10841.034591928552, - "rotation": 5.556576335492317, - "action": "NOTHING" - }, - { - "x": 30.450894223621326, - "y": -10844.608287553267, - "rotation": 5.560066993996306, - "action": "NOTHING" - }, - { - "x": 27.17525622857324, - "y": -10848.195688601016, - "rotation": 5.563557652500294, - "action": "NOTHING" - }, - { - "x": 23.916400784004583, - "y": -10851.796814202573, - "rotation": 5.5670483110042825, - "action": "NOTHING" - }, - { - "x": 20.674294534475443, - "y": -10855.411683769627, - "rotation": 5.570538969508271, - "action": "NOTHING" - }, - { - "x": 17.448904535726623, - "y": -10859.040316994, - "rotation": 5.574029628012259, - "action": "NOTHING" - }, - { - "x": 14.240198253616333, - "y": -10862.682733846857, - "rotation": 5.577520286516248, - "action": "NOTHING" - }, - { - "x": 11.048143563059504, - "y": -10866.33895457793, - "rotation": 5.581010945020236, - "action": "NOTHING" - }, - { - "x": 7.872708746969694, - "y": -10870.008999714739, - "rotation": 5.584501603524225, - "action": "NOTHING" - }, - { - "x": 4.713862495203598, - "y": -10873.692890061808, - "rotation": 5.587992262028213, - "action": "NOTHING" - }, - { - "x": 1.571573903508137, - "y": -10877.3906466999, - "rotation": 5.591482920532202, - "action": "NOTHING" - }, - { - "x": -1.5541875275298551, - "y": -10881.102290985235, - "rotation": 5.59497357903619, - "action": "NOTHING" - }, - { - "x": -4.663451893531379, - "y": -10884.827844548721, - "rotation": 5.5984642375401785, - "action": "NOTHING" - }, - { - "x": -7.75624888737044, - "y": -10888.56732929519, - "rotation": 5.601954896044167, - "action": "NOTHING" - }, - { - "x": -10.832607800216651, - "y": -10892.320767402622, - "rotation": 5.605445554548155, - "action": "NOTHING" - }, - { - "x": -13.892557522575284, - "y": -10896.088181321384, - "rotation": 5.608936213052144, - "action": "NOTHING" - }, - { - "x": -16.936126545324754, - "y": -10899.869593773466, - "rotation": 5.612426871556132, - "action": "NOTHING" - }, - { - "x": -19.963342960751575, - "y": -10903.665027751722, - "rotation": 5.615917530060121, - "action": "NOTHING" - }, - { - "x": -22.974234463582757, - "y": -10907.474506519105, - "rotation": 5.619408188564109, - "action": "NOTHING" - }, - { - "x": -25.968828352015677, - "y": -10911.298053607918, - "rotation": 5.622898847068098, - "action": "NOTHING" - }, - { - "x": -28.947151528745415, - "y": -10915.135692819045, - "rotation": 5.626389505572086, - "action": "NOTHING" - }, - { - "x": -31.90923050198958, - "y": -10918.987448221213, - "rotation": 5.6298801640760745, - "action": "CARVE_RIGHT" - }, - { - "x": -34.389547948929284, - "y": -10923.284262888727, - "rotation": 5.675258724627927, - "action": "CARVE_RIGHT" - }, - { - "x": -36.684580727034714, - "y": -10927.752229911932, - "rotation": 5.720637285179779, - "action": "CARVE_RIGHT" - }, - { - "x": -38.794546130044864, - "y": -10932.391755574632, - "rotation": 5.766015845731632, - "action": "CARVE_RIGHT" - }, - { - "x": -40.71960992274094, - "y": -10937.203292657668, - "rotation": 5.811394406283484, - "action": "CARVE_RIGHT" - }, - { - "x": -42.459886478052226, - "y": -10942.187340314396, - "rotation": 5.8567729668353365, - "action": "CARVE_RIGHT" - }, - { - "x": -44.01543891381961, - "y": -10947.344443946478, - "rotation": 5.902151527387189, - "action": "CARVE_RIGHT" - }, - { - "x": -45.38627922921765, - "y": -10952.675195079984, - "rotation": 5.947530087939041, - "action": "CARVE_RIGHT" - }, - { - "x": -46.572368440835994, - "y": -10958.180231241813, - "rotation": 5.992908648490894, - "action": "CARVE_RIGHT" - }, - { - "x": -47.573616718420894, - "y": -10963.860235836408, - "rotation": 6.038287209042746, - "action": "CARVE_RIGHT" - }, - { - "x": -48.389883520277735, - "y": -10969.715938022793, - "rotation": 6.083665769594599, - "action": "CARVE_RIGHT" - }, - { - "x": -49.02097772833529, - "y": -10975.748112591918, - "rotation": 6.129044330146451, - "action": "CARVE_RIGHT" - }, - { - "x": -49.46665778287263, - "y": -10981.957579844306, - "rotation": 6.174422890698303, - "action": "CARVE_RIGHT" - }, - { - "x": -49.72663181690936, - "y": -10988.345205468, - "rotation": 6.219801451250156, - "action": "CARVE_RIGHT" - }, - { - "x": -49.80055779026013, - "y": -10994.91190041684, - "rotation": 6.265180011802008, - "action": "CARVE_RIGHT" - }, - { - "x": -49.688056020608315, - "y": -11001.449540792326, - "rotation": 0.027373265174274408, - "action": "CARVE_RIGHT" - }, - { - "x": -49.3887801825466, - "y": -11007.820285977952, - "rotation": 0.07275182572612698, - "action": "CARVE_RIGHT" - }, - { - "x": -48.90243608833615, - "y": -11014.023244823475, - "rotation": 0.11813038627797956, - "action": "CARVE_RIGHT" - }, - { - "x": -48.2287815488821, - "y": -11020.057575563049, - "rotation": 0.16350894682983214, - "action": "CARVE_RIGHT" - }, - { - "x": -47.36762623505646, - "y": -11025.92248568435, - "rotation": 0.2088875073816847, - "action": "CARVE_RIGHT" - }, - { - "x": -46.31883153936788, - "y": -11031.617231798022, - "rotation": 0.2542660679335373, - "action": "CARVE_RIGHT" - }, - { - "x": -45.08231043797714, - "y": -11037.141119507449, - "rotation": 0.29964462848538986, - "action": "CARVE_RIGHT" - }, - { - "x": -43.65802735305786, - "y": -11042.493503278847, - "rotation": 0.34502318903724244, - "action": "CARVE_RIGHT" - }, - { - "x": -42.045998015501254, - "y": -11047.67378631169, - "rotation": 0.390401749589095, - "action": "CARVE_RIGHT" - }, - { - "x": -40.24628932796444, - "y": -11052.681420409446, - "rotation": 0.4357803101409476, - "action": "CARVE_RIGHT" - }, - { - "x": -38.25901922826122, - "y": -11057.515905850649, - "rotation": 0.48115887069280017, - "action": "CARVE_RIGHT" - }, - { - "x": -36.08435655309463, - "y": -11062.176791260274, - "rotation": 0.5265374312446527, - "action": "CARVE_RIGHT" - }, - { - "x": -33.72252090213048, - "y": -11066.663673481455, - "rotation": 0.5719159917965052, - "action": "CARVE_RIGHT" - }, - { - "x": -31.173782502410916, - "y": -11070.976197447506, - "rotation": 0.6172945523483577, - "action": "CARVE_RIGHT" - }, - { - "x": -28.438462073107313, - "y": -11075.114056054263, - "rotation": 0.6626731129002102, - "action": "CARVE_RIGHT" - }, - { - "x": -25.516930690611684, - "y": -11079.076990032752, - "rotation": 0.7080516734520628, - "action": "CARVE_RIGHT" - }, - { - "x": -22.40960965396569, - "y": -11082.864787822173, - "rotation": 0.7534302340039153, - "action": "CARVE_RIGHT" - }, - { - "x": -19.116970350626545, - "y": -11086.477285443187, - "rotation": 0.7988087945557678, - "action": "NOTHING" - }, - { - "x": -15.476085113146603, - "y": -11089.764378029484, - "rotation": 0.7953181360517791, - "action": "NOTHING" - }, - { - "x": -11.852759944630813, - "y": -11093.064827420056, - "rotation": 0.7918274775477905, - "action": "NOTHING" - }, - { - "x": -8.246952472250847, - "y": -11096.378646852505, - "rotation": 0.7883368190438018, - "action": "NOTHING" - }, - { - "x": -4.6586207576042575, - "y": -11099.705849861739, - "rotation": 0.7848461605398132, - "action": "NOTHING" - }, - { - "x": -1.0877232955942682, - "y": -11103.04645027914, - "rotation": 0.7813555020358245, - "action": "NOTHING" - }, - { - "x": 2.4657809866876943, - "y": -11106.400462231742, - "rotation": 0.7778648435318358, - "action": "NOTHING" - }, - { - "x": 6.001932731076735, - "y": -11109.767900141404, - "rotation": 0.7743741850278472, - "action": "NOTHING" - }, - { - "x": 9.520772149446493, - "y": -11113.14877872399, - "rotation": 0.7708835265238585, - "action": "NOTHING" - }, - { - "x": 13.022339024818416, - "y": -11116.543112988553, - "rotation": 0.7673928680198698, - "action": "NOTHING" - }, - { - "x": 16.50667271246833, - "y": -11119.950918236518, - "rotation": 0.7639022095158812, - "action": "NOTHING" - }, - { - "x": 19.973812141030276, - "y": -11123.372210060863, - "rotation": 0.7604115510118925, - "action": "NOTHING" - }, - { - "x": 23.42379581359767, - "y": -11126.80700434531, - "rotation": 0.7569208925079038, - "action": "NOTHING" - }, - { - "x": 26.856661808821748, - "y": -11130.255317263514, - "rotation": 0.7534302340039152, - "action": "NOTHING" - }, - { - "x": 30.272447782007315, - "y": -11133.717165278253, - "rotation": 0.7499395754999265, - "action": "NOTHING" - }, - { - "x": 33.67119096620582, - "y": -11137.192565140624, - "rotation": 0.7464489169959379, - "action": "NOTHING" - }, - { - "x": 37.05292817330575, - "y": -11140.681533889236, - "rotation": 0.7429582584919492, - "action": "NOTHING" - }, - { - "x": 40.41769579512035, - "y": -11144.18408884941, - "rotation": 0.7394675999879605, - "action": "NOTHING" - }, - { - "x": 43.76552980447268, - "y": -11147.70024763238, - "rotation": 0.7359769414839719, - "action": "NOTHING" - }, - { - "x": 47.096465756277986, - "y": -11151.230028134489, - "rotation": 0.7324862829799832, - "action": "NOTHING" - }, - { - "x": 50.41053878862348, - "y": -11154.773448536398, - "rotation": 0.7289956244759945, - "action": "NOTHING" - }, - { - "x": 53.70778362384538, - "y": -11158.330527302292, - "rotation": 0.7255049659720059, - "action": "NOTHING" - }, - { - "x": 56.98823456960343, - "y": -11161.901283179088, - "rotation": 0.7220143074680172, - "action": "NOTHING" - }, - { - "x": 60.25192551995265, - "y": -11165.48573519564, - "rotation": 0.7185236489640285, - "action": "NOTHING" - }, - { - "x": 63.49888995641256, - "y": -11169.083902661956, - "rotation": 0.7150329904600399, - "action": "NOTHING" - }, - { - "x": 66.72916094903374, - "y": -11172.695805168412, - "rotation": 0.7115423319560512, - "action": "NOTHING" - }, - { - "x": 69.94277115746178, - "y": -11176.321462584969, - "rotation": 0.7080516734520625, - "action": "NOTHING" - }, - { - "x": 73.1397528319986, - "y": -11179.960895060385, - "rotation": 0.7045610149480739, - "action": "CARVE_LEFT" - }, - { - "x": 75.83102130228119, - "y": -11184.066868681053, - "rotation": 0.6591824543962214, - "action": "CARVE_LEFT" - }, - { - "x": 78.33660259520694, - "y": -11188.343673142006, - "rotation": 0.6138038938443688, - "action": "CARVE_LEFT" - }, - { - "x": 80.65677274702752, - "y": -11192.791661724254, - "rotation": 0.5684253332925163, - "action": "CARVE_LEFT" - }, - { - "x": 82.79175610864294, - "y": -11197.411234347868, - "rotation": 0.5230467727406638, - "action": "CARVE_LEFT" - }, - { - "x": 84.74172548309812, - "y": -11202.202837447116, - "rotation": 0.4776682121888112, - "action": "CARVE_LEFT" - }, - { - "x": 86.50680226273607, - "y": -11207.166963845888, - "rotation": 0.43228965163695865, - "action": "CARVE_LEFT" - }, - { - "x": 88.08705656600868, - "y": -11212.304152633455, - "rotation": 0.3869110910851061, - "action": "CARVE_LEFT" - }, - { - "x": 89.48250737394591, - "y": -11217.614989040523, - "rotation": 0.3415325305332535, - "action": "CARVE_LEFT" - }, - { - "x": 90.69312266628422, - "y": -11223.100104315607, - "rotation": 0.2961539699814009, - "action": "CARVE_LEFT" - }, - { - "x": 91.71881955725503, - "y": -11228.760175601712, - "rotation": 0.25077540942954835, - "action": "CARVE_LEFT" - }, - { - "x": 92.55946443103397, - "y": -11234.59592581332, - "rotation": 0.20539684887769577, - "action": "CARVE_LEFT" - }, - { - "x": 93.21487307685192, - "y": -11240.608123513699, - "rotation": 0.1600182883258432, - "action": "CARVE_LEFT" - }, - { - "x": 93.68481082376837, - "y": -11246.797582792493, - "rotation": 0.11463972777399062, - "action": "CARVE_LEFT" - }, - { - "x": 93.96899267510824, - "y": -11253.165163143653, - "rotation": 0.06926116722213804, - "action": "CARVE_LEFT" - }, - { - "x": 94.06708344256262, - "y": -11259.711769343643, - "rotation": 0.023882606670285474, - "action": "CARVE_LEFT" - }, - { - "x": 93.97870552516146, - "y": -11266.274106681609, - "rotation": 6.261689353298019, - "action": "CARVE_LEFT" - }, - { - "x": 93.70350619285993, - "y": -11272.669578844112, - "rotation": 6.2163107927461665, - "action": "CARVE_LEFT" - }, - { - "x": 93.2411848702386, - "y": -11278.897288618682, - "rotation": 6.170932232194314, - "action": "CARVE_LEFT" - }, - { - "x": 92.59149299743666, - "y": -11284.956388193204, - "rotation": 6.125553671642462, - "action": "CARVE_LEFT" - }, - { - "x": 91.7542338914328, - "y": -11290.846079025003, - "rotation": 6.080175111090609, - "action": "CARVE_LEFT" - }, - { - "x": 90.72926260767291, - "y": -11296.565611710246, - "rotation": 6.034796550538757, - "action": "CARVE_LEFT" - }, - { - "x": 89.51648580204369, - "y": -11302.114285853684, - "rotation": 5.9894179899869044, - "action": "CARVE_LEFT" - }, - { - "x": 88.11586159319153, - "y": -11307.491449938698, - "rotation": 5.944039429435052, - "action": "CARVE_LEFT" - }, - { - "x": 86.52739942518556, - "y": -11312.696501197686, - "rotation": 5.8986608688832, - "action": "CARVE_LEFT" - }, - { - "x": 84.75115993052441, - "y": -11317.728885482764, - "rotation": 5.853282308331347, - "action": "CARVE_LEFT" - }, - { - "x": 82.78725479348537, - "y": -11322.588097136788, - "rotation": 5.807903747779495, - "action": "CARVE_LEFT" - }, - { - "x": 80.63584661381569, - "y": -11327.27367886471, - "rotation": 5.762525187227642, - "action": "CARVE_LEFT" - }, - { - "x": 78.29714877076464, - "y": -11331.785221605238, - "rotation": 5.71714662667579, - "action": "CARVE_LEFT" - }, - { - "x": 75.77142528745595, - "y": -11336.122364402823, - "rotation": 5.671768066123938, - "action": "CARVE_LEFT" - }, - { - "x": 73.05899069559966, - "y": -11340.284794279974, - "rotation": 5.626389505572085, - "action": "CARVE_LEFT" - }, - { - "x": 70.16020990054237, - "y": -11344.272246109873, - "rotation": 5.581010945020233, - "action": "CARVE_LEFT" - }, - { - "x": 67.07549804665544, - "y": -11348.08450248932, - "rotation": 5.53563238446838, - "action": "NOTHING" - }, - { - "x": 63.66521337406494, - "y": -11351.593018233301, - "rotation": 5.539123042972369, - "action": "NOTHING" - }, - { - "x": 60.272064591597754, - "y": -11355.11516745567, - "rotation": 5.542613701476357, - "action": "NOTHING" - }, - { - "x": 56.89601506736203, - "y": -11358.650967370846, - "rotation": 5.546104359980346, - "action": "NOTHING" - }, - { - "x": 53.53702858920306, - "y": -11362.200435479632, - "rotation": 5.549595018484334, - "action": "NOTHING" - }, - { - "x": 50.1950693636189, - "y": -11365.763589568409, - "rotation": 5.553085676988323, - "action": "NOTHING" - }, - { - "x": 46.870102014678565, - "y": -11369.34044770834, - "rotation": 5.556576335492311, - "action": "NOTHING" - }, - { - "x": 43.56209158294294, - "y": -11372.93102825458, - "rotation": 5.5600669939962994, - "action": "NOTHING" - }, - { - "x": 40.27100352438833, - "y": -11376.53534984547, - "rotation": 5.563557652500288, - "action": "NOTHING" - }, - { - "x": 36.9968037093326, - "y": -11380.15343140176, - "rotation": 5.567048311004276, - "action": "NOTHING" - }, - { - "x": 33.73945842136403, - "y": -11383.785292125813, - "rotation": 5.570538969508265, - "action": "NOTHING" - }, - { - "x": 30.49893435627269, - "y": -11387.430951500812, - "rotation": 5.574029628012253, - "action": "NOTHING" - }, - { - "x": 27.275198620984575, - "y": -11391.090429289987, - "rotation": 5.577520286516242, - "action": "NOTHING" - }, - { - "x": 24.068218732498217, - "y": -11394.763745535822, - "rotation": 5.58101094502023, - "action": "NOTHING" - }, - { - "x": 20.877962616823993, - "y": -11398.450920559279, - "rotation": 5.5845016035242185, - "action": "NOTHING" - }, - { - "x": 17.704398607926006, - "y": -11402.151974959013, - "rotation": 5.587992262028207, - "action": "NOTHING" - }, - { - "x": 14.54749544666657, - "y": -11405.866929610604, - "rotation": 5.591482920532195, - "action": "NOTHING" - }, - { - "x": 11.407222279753274, - "y": -11409.595805665771, - "rotation": 5.594973579036184, - "action": "NOTHING" - }, - { - "x": 8.283548658688641, - "y": -11413.338624551607, - "rotation": 5.598464237540172, - "action": "NOTHING" - }, - { - "x": 5.176444538722363, - "y": -11417.095407969804, - "rotation": 5.601954896044161, - "action": "NOTHING" - }, - { - "x": 2.0858802778061003, - "y": -11420.866177895883, - "rotation": 5.605445554548149, - "action": "NOTHING" - }, - { - "x": -0.9881733644491413, - "y": -11424.65095657843, - "rotation": 5.608936213052138, - "action": "NOTHING" - }, - { - "x": -4.0457452278130805, - "y": -11428.44976653833, - "rotation": 5.612426871556126, - "action": "NOTHING" - }, - { - "x": -7.086863752473678, - "y": -11432.262630567997, - "rotation": 5.6159175300601145, - "action": "NOTHING" - }, - { - "x": -10.111556980072105, - "y": -11436.089571730623, - "rotation": 5.619408188564103, - "action": "NOTHING" - }, - { - "x": -13.119852554735166, - "y": -11439.930613359411, - "rotation": 5.622898847068091, - "action": "NOTHING" - }, - { - "x": -16.111777724105195, - "y": -11443.785779056821, - "rotation": 5.62638950557208, - "action": "NOTHING" - }, - { - "x": -19.08735934036741, - "y": -11447.655092693814, - "rotation": 5.629880164076068, - "action": "NOTHING" - }, - { - "x": -22.046623861274757, - "y": -11451.538578409098, - "rotation": 5.633370822580057, - "action": "NOTHING" - }, - { - "x": -24.98959735117023, - "y": -11455.436260608374, - "rotation": 5.636861481084045, - "action": "NOTHING" - }, - { - "x": -27.916305482006674, - "y": -11459.34816396359, - "rotation": 5.640352139588034, - "action": "NOTHING" - }, - { - "x": -30.826773534364097, - "y": -11463.274313412192, - "rotation": 5.643842798092022, - "action": "NOTHING" - }, - { - "x": -33.72102639846446, - "y": -11467.214734156378, - "rotation": 5.6473334565960105, - "action": "NOTHING" - }, - { - "x": -36.599088575184005, - "y": -11471.169451662352, - "rotation": 5.650824115099999, - "action": "NOTHING" - }, - { - "x": -39.46098417706306, - "y": -11475.138491659585, - "rotation": 5.654314773603987, - "action": "NOTHING" - }, - { - "x": -42.306736929313395, - "y": -11479.121880140076, - "rotation": 5.657805432107976, - "action": "CARVE_RIGHT" - }, - { - "x": -44.68182338005675, - "y": -11483.540380015726, - "rotation": 5.703183992659828, - "action": "CARVE_RIGHT" - }, - { - "x": -46.87105875168802, - "y": -11488.130881536157, - "rotation": 5.748562553211681, - "action": "CARVE_RIGHT" - }, - { - "x": -48.874631401238986, - "y": -11492.893817128755, - "rotation": 5.793941113763533, - "action": "CARVE_RIGHT" - }, - { - "x": -50.69267823286331, - "y": -11497.829665648793, - "rotation": 5.8393196743153855, - "action": "CARVE_RIGHT" - }, - { - "x": -52.325284834753816, - "y": -11502.938952255085, - "rotation": 5.884698234867238, - "action": "CARVE_RIGHT" - }, - { - "x": -53.772485615717926, - "y": -11508.222248285949, - "rotation": 5.93007679541909, - "action": "CARVE_RIGHT" - }, - { - "x": -55.03426394141204, - "y": -11513.680171135487, - "rotation": 5.975455355970943, - "action": "CARVE_RIGHT" - }, - { - "x": -56.11055227023571, - "y": -11519.313384130166, - "rotation": 6.020833916522795, - "action": "CARVE_RIGHT" - }, - { - "x": -57.001232288886385, - "y": -11525.122596405708, - "rotation": 6.0662124770746475, - "action": "CARVE_RIGHT" - }, - { - "x": -57.70613504757563, - "y": -11531.108562784302, - "rotation": 6.1115910376265, - "action": "CARVE_RIGHT" - }, - { - "x": -58.22504109490748, - "y": -11537.27208365211, - "rotation": 6.156969598178352, - "action": "CARVE_RIGHT" - }, - { - "x": -58.557680612419894, - "y": -11543.61400483708, - "rotation": 6.202348158730205, - "action": "CARVE_RIGHT" - }, - { - "x": -58.70373354879001, - "y": -11550.135217487083, - "rotation": 6.247726719282057, - "action": "CARVE_RIGHT" - }, - { - "x": -58.662831381862844, - "y": -11556.760646446677, - "rotation": 0.009919972654323317, - "action": "CARVE_RIGHT" - }, - { - "x": -58.434610391979184, - "y": -11563.218866162077, - "rotation": 0.055298533206175886, - "action": "CARVE_RIGHT" - }, - { - "x": -58.0187590426268, - "y": -11569.508969038661, - "rotation": 0.10067709375802845, - "action": "CARVE_RIGHT" - }, - { - "x": -57.415017841303495, - "y": -11575.630096908979, - "rotation": 0.14605565430988102, - "action": "CARVE_RIGHT" - }, - { - "x": -56.62317920072804, - "y": -11581.581440901757, - "rotation": 0.1914342148617336, - "action": "CARVE_RIGHT" - }, - { - "x": -55.64308730039804, - "y": -11587.362241311252, - "rotation": 0.23681277541358617, - "action": "CARVE_RIGHT" - }, - { - "x": -54.47463794849397, - "y": -11592.971787466908, - "rotation": 0.2821913359654387, - "action": "CARVE_RIGHT" - }, - { - "x": -53.11777844412854, - "y": -11598.409417603352, - "rotation": 0.3275698965172913, - "action": "CARVE_RIGHT" - }, - { - "x": -51.572507439940516, - "y": -11603.674518730711, - "rotation": 0.37294845706914387, - "action": "CARVE_RIGHT" - }, - { - "x": -49.83887480503223, - "y": -11608.766526505246, - "rotation": 0.41832701762099644, - "action": "CARVE_RIGHT" - }, - { - "x": -47.916981488249924, - "y": -11613.684925100313, - "rotation": 0.463705578172849, - "action": "CARVE_RIGHT" - }, - { - "x": -45.80697938180606, - "y": -11618.429247077653, - "rotation": 0.5090841387247016, - "action": "CARVE_RIGHT" - }, - { - "x": -43.5090711852429, - "y": -11622.999073258983, - "rotation": 0.5544626992765541, - "action": "CARVE_RIGHT" - }, - { - "x": -41.02351026973642, - "y": -11627.39403259793, - "rotation": 0.5998412598284066, - "action": "CARVE_RIGHT" - }, - { - "x": -38.35060054273973, - "y": -11631.613802052265, - "rotation": 0.6452198203802592, - "action": "CARVE_RIGHT" - }, - { - "x": -35.490696312965326, - "y": -11635.65810645647, - "rotation": 0.6905983809321117, - "action": "CARVE_RIGHT" - }, - { - "x": -32.44420215570522, - "y": -11639.526718394616, - "rotation": 0.7359769414839642, - "action": "CARVE_RIGHT" - }, - { - "x": -29.21157277848816, - "y": -11643.219458073554, - "rotation": 0.7813555020358167, - "action": "CARVE_RIGHT" - }, - { - "x": -25.7933128870732, - "y": -11646.736193196431, - "rotation": 0.8267340625876692, - "action": "CARVE_RIGHT" - }, - { - "x": -22.189977051778747, - "y": -11650.076838836518, - "rotation": 0.8721126231395218, - "action": "CARVE_RIGHT" - }, - { - "x": -18.4021695741463, - "y": -11653.241357311346, - "rotation": 0.9174911836913743, - "action": "CARVE_RIGHT" - }, - { - "x": -14.430544353938073, - "y": -11656.229758057172, - "rotation": 0.9628697442432268, - "action": "NOTHING" - }, - { - "x": -10.037027507704247, - "y": -11658.82236079192, - "rotation": 0.9593790857392381, - "action": "NOTHING" - }, - { - "x": -5.6628485203482715, - "y": -11661.427768316848, - "rotation": 0.9558884272352495, - "action": "NOTHING" - }, - { - "x": -1.3079456705348633, - "y": -11664.045980350502, - "rotation": 0.9523977687312608, - "action": "NOTHING" - }, - { - "x": 3.0277422794185114, - "y": -11666.676996945529, - "rotation": 0.9489071102272721, - "action": "NOTHING" - }, - { - "x": 7.344276084781363, - "y": -11669.320818487739, - "rotation": 0.9454164517232835, - "action": "NOTHING" - }, - { - "x": 11.641716019646875, - "y": -11671.977445695198, - "rotation": 0.9419257932192948, - "action": "NOTHING" - }, - { - "x": 15.920121878165595, - "y": -11674.646879617309, - "rotation": 0.9384351347153062, - "action": "NOTHING" - }, - { - "x": 20.1795529757761, - "y": -11677.329121633893, - "rotation": 0.9349444762113175, - "action": "NOTHING" - }, - { - "x": 24.420068150432677, - "y": -11680.024173454289, - "rotation": 0.9314538177073288, - "action": "NOTHING" - }, - { - "x": 28.641725763829992, - "y": -11682.732037116435, - "rotation": 0.9279631592033402, - "action": "NOTHING" - }, - { - "x": 32.84458370262478, - "y": -11685.45271498597, - "rotation": 0.9244725006993515, - "action": "NOTHING" - }, - { - "x": 37.02869937965455, - "y": -11688.186209755322, - "rotation": 0.9209818421953628, - "action": "NOTHING" - }, - { - "x": 41.1941297351533, - "y": -11690.932524442811, - "rotation": 0.9174911836913742, - "action": "NOTHING" - }, - { - "x": 45.34093123796431, - "y": -11693.69166239175, - "rotation": 0.9140005251873855, - "action": "CARVE_LEFT" - }, - { - "x": 48.88533495488878, - "y": -11697.004065910156, - "rotation": 0.868621964635533, - "action": "CARVE_LEFT" - }, - { - "x": 52.24258796898505, - "y": -11700.485862645144, - "rotation": 0.8232434040836805, - "action": "CARVE_LEFT" - }, - { - "x": 55.41320475485129, - "y": -11704.137190686954, - "rotation": 0.7778648435318279, - "action": "CARVE_LEFT" - }, - { - "x": 58.39764746833083, - "y": -11707.958235340206, - "rotation": 0.7324862829799754, - "action": "CARVE_LEFT" - }, - { - "x": 61.19632608558842, - "y": -11711.949228997584, - "rotation": 0.6871077224281229, - "action": "CARVE_LEFT" - }, - { - "x": 63.80959854183955, - "y": -11716.11045101384, - "rotation": 0.6417291618762704, - "action": "CARVE_LEFT" - }, - { - "x": 66.23777086973355, - "y": -11720.442227580097, - "rotation": 0.5963506013244179, - "action": "CARVE_LEFT" - }, - { - "x": 68.4810973373913, - "y": -11724.944931598493, - "rotation": 0.5509720407725653, - "action": "CARVE_LEFT" - }, - { - "x": 70.53978058609844, - "y": -11729.61898255712, - "rotation": 0.5055934802207128, - "action": "CARVE_LEFT" - }, - { - "x": 72.41397176765479, - "y": -11734.46484640528, - "rotation": 0.46021491966886025, - "action": "CARVE_LEFT" - }, - { - "x": 74.10377068138094, - "y": -11739.48303542906, - "rotation": 0.41483635911700767, - "action": "CARVE_LEFT" - }, - { - "x": 75.60922591078281, - "y": -11744.67410812721, - "rotation": 0.3694577985651551, - "action": "CARVE_LEFT" - }, - { - "x": 76.93033495987487, - "y": -11750.038669087337, - "rotation": 0.3240792380133025, - "action": "CARVE_LEFT" - }, - { - "x": 78.06704438916296, - "y": -11755.577368862412, - "rotation": 0.27870067746144994, - "action": "CARVE_LEFT" - }, - { - "x": 79.01924995128755, - "y": -11761.290903847585, - "rotation": 0.23332211690959737, - "action": "CARVE_LEFT" - }, - { - "x": 79.7867967263281, - "y": -11767.1800161573, - "rotation": 0.1879435563577448, - "action": "CARVE_LEFT" - }, - { - "x": 80.36947925676958, - "y": -11773.245493502729, - "rotation": 0.14256499580589221, - "action": "CARVE_LEFT" - }, - { - "x": 80.76704168213162, - "y": -11779.488169069517, - "rotation": 0.09718643525403964, - "action": "CARVE_LEFT" - }, - { - "x": 80.97917787326149, - "y": -11785.908921395814, - "rotation": 0.05180787470218707, - "action": "CARVE_LEFT" - }, - { - "x": 81.00553156629141, - "y": -11792.508674250636, - "rotation": 0.0064293141503345, - "action": "CARVE_LEFT" - }, - { - "x": 80.84572159627254, - "y": -11798.991387456703, - "rotation": 6.244236060778068, - "action": "CARVE_LEFT" - }, - { - "x": 80.49941352189194, - "y": -11805.30732848227, - "rotation": 6.198857500226215, - "action": "NOTHING" - }, - { - "x": 80.130185217785, - "y": -11811.608693166538, - "rotation": 6.202348158730204, - "action": "NOTHING" - }, - { - "x": 79.77654548529323, - "y": -11817.931171181523, - "rotation": 6.205838817234192, - "action": "NOTHING" - }, - { - "x": 79.43852469451268, - "y": -11824.274823955417, - "rotation": 6.209329475738181, - "action": "NOTHING" - }, - { - "x": 79.11615345857793, - "y": -11830.639713074828, - "rotation": 6.212820134242169, - "action": "NOTHING" - }, - { - "x": 78.80946263301635, - "y": -11837.025900284323, - "rotation": 6.216310792746158, - "action": "NOTHING" - }, - { - "x": 78.51848331510418, - "y": -11843.433447485959, - "rotation": 6.219801451250146, - "action": "NOTHING" - }, - { - "x": 78.24324684322404, - "y": -11849.862416738824, - "rotation": 6.2232921097541345, - "action": "NOTHING" - }, - { - "x": 77.98378479622417, - "y": -11856.312870258575, - "rotation": 6.226782768258123, - "action": "NOTHING" - }, - { - "x": 77.74012899277915, - "y": -11862.784870416977, - "rotation": 6.230273426762111, - "action": "NOTHING" - }, - { - "x": 77.51231149075235, - "y": -11869.278479741452, - "rotation": 6.2337640852661, - "action": "NOTHING" - }, - { - "x": 77.30036458655987, - "y": -11875.793760914607, - "rotation": 6.237254743770088, - "action": "NOTHING" - }, - { - "x": 77.10432081453605, - "y": -11882.330776773792, - "rotation": 6.240745402274077, - "action": "NOTHING" - }, - { - "x": 76.92421294630071, - "y": -11888.889590310639, - "rotation": 6.244236060778065, - "action": "NOTHING" - }, - { - "x": 76.7600739901278, - "y": -11895.47026467061, - "rotation": 6.247726719282054, - "action": "NOTHING" - }, - { - "x": 76.61193719031567, - "y": -11902.072863152542, - "rotation": 6.251217377786042, - "action": "NOTHING" - }, - { - "x": 76.47983602655904, - "y": -11908.697449208197, - "rotation": 6.2547080362900305, - "action": "NOTHING" - }, - { - "x": 76.36380421332237, - "y": -11915.344086441813, - "rotation": 6.258198694794019, - "action": "NOTHING" - }, - { - "x": 76.26387569921484, - "y": -11922.012838609657, - "rotation": 6.261689353298007, - "action": "NOTHING" - }, - { - "x": 76.18008466636698, - "y": -11928.703769619571, - "rotation": 6.265180011801996, - "action": "NOTHING" - }, - { - "x": 76.11246552980874, - "y": -11935.41694353053, - "rotation": 6.268670670305984, - "action": "NOTHING" - }, - { - "x": 76.0610529368492, - "y": -11942.152424552198, - "rotation": 6.272161328809973, - "action": "NOTHING" - }, - { - "x": 76.02588176645773, - "y": -11948.910277044477, - "rotation": 6.275651987313961, - "action": "NOTHING" - }, - { - "x": 76.00698712864684, - "y": -11955.690565517074, - "rotation": 6.27914264581795, - "action": "NOTHING" - }, - { - "x": 76.00440436385645, - "y": -11962.493354629052, - "rotation": 6.282633304321938, - "action": "NOTHING" - }, - { - "x": 76.01816888358354, - "y": -11969.293140616182, - "rotation": 0.002938655646340216, - "action": "NOTHING" - }, - { - "x": 76.01558053291627, - "y": -11976.110642466438, - "rotation": 6.282633304321938, - "action": "NOTHING" - }, - { - "x": 76.0293747302772, - "y": -11982.925089448843, - "rotation": 0.002938655646340216, - "action": "NOTHING" - }, - { - "x": 76.02678081605421, - "y": -11989.757245245275, - "rotation": 6.282633304321938, - "action": "NOTHING" - }, - { - "x": 76.04060457245714, - "y": -11996.586294637618, - "rotation": 0.002938655646340216, - "action": "NOTHING" - }, - { - "x": 76.03800511691041, - "y": -12003.433045823056, - "rotation": 6.282633304321938, - "action": "NOTHING" - }, - { - "x": 76.05185831423742, - "y": -12010.276639274107, - "rotation": 0.002938655646340216, - "action": "NOTHING" - }, - { - "x": 76.04925333951009, - "y": -12017.137927525377, - "rotation": 6.282633304321938, - "action": "NOTHING" - }, - { - "x": 76.06313586011524, - "y": -12023.996006917076, - "rotation": 0.002938655646340216, - "action": "NOTHING" - }, - { - "x": 76.06052538826194, - "y": -12030.871774144063, - "rotation": 6.282633304321938, - "action": "CARVE_RIGHT" - }, - { - "x": 76.25148026633981, - "y": -12037.579092746731, - "rotation": 0.04482655769420418, - "action": "CARVE_RIGHT" - }, - { - "x": 76.63603875476049, - "y": -12044.112474536281, - "rotation": 0.09020511824605676, - "action": "CARVE_RIGHT" - }, - { - "x": 77.21444815780944, - "y": -12050.471073209019, - "rotation": 0.13558367879790933, - "action": "CARVE_RIGHT" - }, - { - "x": 77.98690391513584, - "y": -12056.654091718698, - "rotation": 0.1809622393497619, - "action": "CARVE_RIGHT" - }, - { - "x": 78.95354974008107, - "y": -12062.66078214597, - "rotation": 0.2263407999016145, - "action": "CARVE_RIGHT" - }, - { - "x": 80.11447775766146, - "y": -12068.490445568152, - "rotation": 0.27171936045346706, - "action": "CARVE_RIGHT" - }, - { - "x": 81.46972864220587, - "y": -12074.142431929336, - "rotation": 0.31709792100531964, - "action": "NOTHING" - }, - { - "x": 82.95963202183778, - "y": -12079.672733737481, - "rotation": 0.313607262501331, - "action": "NOTHING" - }, - { - "x": 84.4335987689216, - "y": -12085.220826049328, - "rotation": 0.3101166039973423, - "action": "NOTHING" - }, - { - "x": 85.89162287739475, - "y": -12090.786755023984, - "rotation": 0.30662594549335365, - "action": "NOTHING" - }, - { - "x": 87.3336980319666, - "y": -12096.37056702569, - "rotation": 0.303135286989365, - "action": "NOTHING" - }, - { - "x": 88.75981760893137, - "y": -12101.972308623217, - "rotation": 0.2996446284853763, - "action": "NOTHING" - }, - { - "x": 90.1699746769791, - "y": -12107.592026589287, - "rotation": 0.29615396998138765, - "action": "NOTHING" - }, - { - "x": 91.5641619980045, - "y": -12113.22976789998, - "rotation": 0.292663311477399, - "action": "NOTHING" - }, - { - "x": 92.9423720279139, - "y": -12118.885579734151, - "rotation": 0.2891726529734103, - "action": "NOTHING" - }, - { - "x": 94.30459691743019, - "y": -12124.559509472845, - "rotation": 0.28568199446942166, - "action": "NOTHING" - }, - { - "x": 95.65082851289563, - "y": -12130.251604698715, - "rotation": 0.282191335965433, - "action": "NOTHING" - }, - { - "x": 96.98105835707285, - "y": -12135.961913195439, - "rotation": 0.27870067746144433, - "action": "NOTHING" - }, - { - "x": 98.29527768994379, - "y": -12141.690482947142, - "rotation": 0.27521001895745567, - "action": "NOTHING" - }, - { - "x": 99.59347744950657, - "y": -12147.43736213782, - "rotation": 0.271719360453467, - "action": "NOTHING" - }, - { - "x": 100.87564827257054, - "y": -12153.202599150758, - "rotation": 0.26822870194947834, - "action": "NOTHING" - }, - { - "x": 102.14178049554928, - "y": -12158.98624256796, - "rotation": 0.2647380434454897, - "action": "NOTHING" - }, - { - "x": 103.3918641552516, - "y": -12164.788341169573, - "rotation": 0.261247384941501, - "action": "CARVE_LEFT" - }, - { - "x": 104.32198118558719, - "y": -12170.890200048205, - "rotation": 0.21586882438964844, - "action": "CARVE_LEFT" - }, - { - "x": 105.05700694506446, - "y": -12177.176793548811, - "rotation": 0.17049026383779586, - "action": "CARVE_LEFT" - }, - { - "x": 105.59675781658676, - "y": -12183.648890164777, - "rotation": 0.1251117032859433, - "action": "CARVE_LEFT" - }, - { - "x": 105.94099970825243, - "y": -12190.307303928463, - "rotation": 0.07973314273409071, - "action": "CARVE_LEFT" - }, - { - "x": 106.0894481878477, - "y": -12197.152894289065, - "rotation": 0.03435458218223814, - "action": "CARVE_LEFT" - }, - { - "x": 106.04177062772762, - "y": -12204.097977591542, - "rotation": 6.272161328809972, - "action": "CARVE_LEFT" - }, - { - "x": 105.79764119755188, - "y": -12210.866728509553, - "rotation": 6.226782768258119, - "action": "CARVE_LEFT" - }, - { - "x": 105.35678613691137, - "y": -12217.45827575958, - "rotation": 6.181404207706267, - "action": "CARVE_LEFT" - }, - { - "x": 104.71898361649255, - "y": -12223.871797378059, - "rotation": 6.136025647154415, - "action": "CARVE_LEFT" - }, - { - "x": 103.884063599589, - "y": -12230.106520590673, - "rotation": 6.090647086602562, - "action": "CARVE_LEFT" - }, - { - "x": 102.85190770395901, - "y": -12236.161721681978, - "rotation": 6.04526852605071, - "action": "CARVE_LEFT" - }, - { - "x": 101.62244906402877, - "y": -12242.036725865355, - "rotation": 5.999889965498857, - "action": "CARVE_LEFT" - }, - { - "x": 100.1956721934399, - "y": -12247.73090715328, - "rotation": 5.954511404947005, - "action": "CARVE_LEFT" - }, - { - "x": 98.571612847941, - "y": -12253.243688227922, - "rotation": 5.9091328443951525, - "action": "CARVE_LEFT" - }, - { - "x": 96.75035788862182, - "y": -12258.574540312058, - "rotation": 5.8637542838433, - "action": "CARVE_LEFT" - }, - { - "x": 94.73204514548978, - "y": -12263.722983040318, - "rotation": 5.818375723291448, - "action": "CARVE_LEFT" - }, - { - "x": 92.51686328138761, - "y": -12268.688584330741, - "rotation": 5.772997162739595, - "action": "CARVE_LEFT" - }, - { - "x": 90.1050516562515, - "y": -12273.470960256662, - "rotation": 5.727618602187743, - "action": "CARVE_LEFT" - }, - { - "x": 87.49690019170887, - "y": -12278.069774918908, - "rotation": 5.6822400416358905, - "action": "CARVE_LEFT" - }, - { - "x": 84.69274923601498, - "y": -12282.484740318316, - "rotation": 5.636861481084038, - "action": "CARVE_LEFT" - }, - { - "x": 81.69298942932747, - "y": -12286.715616228576, - "rotation": 5.591482920532186, - "action": "CARVE_LEFT" - }, - { - "x": 78.49806156931825, - "y": -12290.762210069377, - "rotation": 5.546104359980333, - "action": "CARVE_LEFT" - }, - { - "x": 75.10845647712163, - "y": -12294.624376779884, - "rotation": 5.500725799428481, - "action": "CARVE_LEFT" - }, - { - "x": 71.5247148636181, - "y": -12298.302018692522, - "rotation": 5.455347238876628, - "action": "NOTHING" - }, - { - "x": 67.56184418262697, - "y": -12301.624602616865, - "rotation": 5.458837897380617, - "action": "NOTHING" - }, - { - "x": 63.617987819574005, - "y": -12304.96083452749, - "rotation": 5.462328555884605, - "action": "NOTHING" - }, - { - "x": 59.693096102525566, - "y": -12308.310723014261, - "rotation": 5.465819214388594, - "action": "NOTHING" - }, - { - "x": 55.787119813627626, - "y": -12311.674276978321, - "rotation": 5.469309872892582, - "action": "NOTHING" - }, - { - "x": 51.90001018793615, - "y": -12315.051505631227, - "rotation": 5.472800531396571, - "action": "NOTHING" - }, - { - "x": 48.03171891225031, - "y": -12318.442418494087, - "rotation": 5.476291189900559, - "action": "NOTHING" - }, - { - "x": 44.182198123948616, - "y": -12321.847025396703, - "rotation": 5.4797818484045475, - "action": "NOTHING" - }, - { - "x": 40.35140040982778, - "y": -12325.265336476708, - "rotation": 5.483272506908536, - "action": "NOTHING" - }, - { - "x": 36.53927880494456, - "y": -12328.697362178717, - "rotation": 5.486763165412524, - "action": "NOTHING" - }, - { - "x": 32.745786791460326, - "y": -12332.143113253465, - "rotation": 5.490253823916513, - "action": "NOTHING" - }, - { - "x": 28.970878297488532, - "y": -12335.602600756965, - "rotation": 5.493744482420501, - "action": "NOTHING" - }, - { - "x": 25.214507695944963, - "y": -12339.07583604965, - "rotation": 5.49723514092449, - "action": "NOTHING" - }, - { - "x": 21.476629803400815, - "y": -12342.562830795528, - "rotation": 5.500725799428478, - "action": "NOTHING" - }, - { - "x": 17.75719987893859, - "y": -12346.063596961345, - "rotation": 5.504216457932467, - "action": "NOTHING" - }, - { - "x": 14.056173623010768, - "y": -12349.57814681573, - "rotation": 5.507707116436455, - "action": "NOTHING" - }, - { - "x": 10.373507176301313, - "y": -12353.106492928362, - "rotation": 5.5111977749404435, - "action": "NOTHING" - }, - { - "x": 6.709157118589928, - "y": -12356.648648169132, - "rotation": 5.514688433444432, - "action": "NOTHING" - }, - { - "x": 3.063080467619116, - "y": -12360.204625707302, - "rotation": 5.51817909194842, - "action": "NOTHING" - }, - { - "x": -0.5647653220359934, - "y": -12363.774439010673, - "rotation": 5.521669750452409, - "action": "NOTHING" - }, - { - "x": -4.174422360095042, - "y": -12367.358101844755, - "rotation": 5.525160408956397, - "action": "CARVE_RIGHT" - }, - { - "x": -7.227275464045231, - "y": -12371.454244621613, - "rotation": 5.57053896950825, - "action": "CARVE_RIGHT" - }, - { - "x": -10.084716305161676, - "y": -12375.728858248576, - "rotation": 5.615917530060102, - "action": "CARVE_RIGHT" - }, - { - "x": -12.747118754863909, - "y": -12380.182208147933, - "rotation": 5.6612960906119545, - "action": "CARVE_RIGHT" - }, - { - "x": -15.214804727061338, - "y": -12384.814606627577, - "rotation": 5.706674651163807, - "action": "CARVE_RIGHT" - }, - { - "x": -17.48804431634699, - "y": -12389.626412755497, - "rotation": 5.752053211715659, - "action": "CARVE_RIGHT" - }, - { - "x": -19.567055935846312, - "y": -12394.61803223458, - "rotation": 5.797431772267512, - "action": "CARVE_RIGHT" - }, - { - "x": -21.452006454721882, - "y": -12399.789917277736, - "rotation": 5.842810332819364, - "action": "CARVE_RIGHT" - }, - { - "x": -23.143011335334794, - "y": -12405.142566483315, - "rotation": 5.8881888933712165, - "action": "CARVE_RIGHT" - }, - { - "x": -24.640134770063597, - "y": -12410.676524710863, - "rotation": 5.933567453923069, - "action": "CARVE_RIGHT" - }, - { - "x": -25.94338981778156, - "y": -12416.392382957167, - "rotation": 5.978946014474921, - "action": "CARVE_RIGHT" - }, - { - "x": -27.05273853999315, - "y": -12422.290778232624, - "rotation": 6.024324575026774, - "action": "CARVE_RIGHT" - }, - { - "x": -27.96809213663045, - "y": -12428.372393437916, - "rotation": 6.069703135578626, - "action": "CARVE_RIGHT" - }, - { - "x": -28.689311081510397, - "y": -12434.637957240991, - "rotation": 6.115081696130479, - "action": "NOTHING" - }, - { - "x": -29.474583668618365, - "y": -12440.849144684766, - "rotation": 6.118572354634467, - "action": "NOTHING" - }, - { - "x": -30.243754860160752, - "y": -12447.080210198354, - "rotation": 6.1220630131384555, - "action": "NOTHING" - }, - { - "x": -30.996804783715874, - "y": -12453.331208910073, - "rotation": 6.125553671642444, - "action": "NOTHING" - }, - { - "x": -31.733713294636157, - "y": -12459.602196126845, - "rotation": 6.129044330146432, - "action": "NOTHING" - }, - { - "x": -32.45445997676854, - "y": -12465.893227333678, - "rotation": 6.132534988650421, - "action": "NOTHING" - }, - { - "x": -33.15902414317306, - "y": -12472.204358193143, - "rotation": 6.136025647154409, - "action": "NOTHING" - }, - { - "x": -33.847384836839694, - "y": -12478.535644544863, - "rotation": 6.139516305658398, - "action": "NOTHING" - }, - { - "x": -34.519520831403355, - "y": -12484.887142404992, - "rotation": 6.143006964162386, - "action": "NOTHING" - }, - { - "x": -35.17541063185715, - "y": -12491.258907965705, - "rotation": 6.146497622666375, - "action": "NOTHING" - }, - { - "x": -35.815032475263855, - "y": -12497.650997594677, - "rotation": 6.149988281170363, - "action": "NOTHING" - }, - { - "x": -36.43836433146563, - "y": -12504.063467834581, - "rotation": 6.1534789396743514, - "action": "NOTHING" - }, - { - "x": -37.04538390379192, - "y": -12510.49637540257, - "rotation": 6.15696959817834, - "action": "NOTHING" - }, - { - "x": -37.63606862976567, - "y": -12516.949777189771, - "rotation": 6.160460256682328, - "action": "NOTHING" - }, - { - "x": -38.21039568180769, - "y": -12523.423730260774, - "rotation": 6.163950915186317, - "action": "NOTHING" - }, - { - "x": -38.76834196793936, - "y": -12529.918291853128, - "rotation": 6.167441573690305, - "action": "NOTHING" - }, - { - "x": -39.30988413248349, - "y": -12536.433519376835, - "rotation": 6.170932232194294, - "action": "NOTHING" - }, - { - "x": -39.83499855676354, - "y": -12542.96947041385, - "rotation": 6.174422890698282, - "action": "NOTHING" - }, - { - "x": -40.343661359800976, - "y": -12549.526202717567, - "rotation": 6.1779135492022705, - "action": "NOTHING" - }, - { - "x": -40.835848399011006, - "y": -12556.103774212334, - "rotation": 6.181404207706259, - "action": "NOTHING" - }, - { - "x": -41.311535270896506, - "y": -12562.702242992937, - "rotation": 6.184894866210247, - "action": "NOTHING" - }, - { - "x": -41.77069731174023, - "y": -12569.321667324113, - "rotation": 6.188385524714236, - "action": "NOTHING" - }, - { - "x": -42.21330959829532, - "y": -12575.962105640047, - "rotation": 6.191876183218224, - "action": "NOTHING" - }, - { - "x": -42.639346948474085, - "y": -12582.623616543877, - "rotation": 6.195366841722213, - "action": "NOTHING" - }, - { - "x": -43.048783922035035, - "y": -12589.306258807199, - "rotation": 6.198857500226201, - "action": "NOTHING" - }, - { - "x": -43.44159482126824, - "y": -12596.010091369575, - "rotation": 6.20234815873019, - "action": "NOTHING" - }, - { - "x": -43.81775369167896, - "y": -12602.73517333804, - "rotation": 6.205838817234178, - "action": "NOTHING" - }, - { - "x": -44.177234322669584, - "y": -12609.48156398661, - "rotation": 6.2093294757381665, - "action": "NOTHING" - }, - { - "x": -44.52001024821985, - "y": -12616.249322755795, - "rotation": 6.212820134242155, - "action": "NOTHING" - }, - { - "x": -44.84605474756537, - "y": -12623.038509252108, - "rotation": 6.216310792746143, - "action": "NOTHING" - }, - { - "x": -45.15534084587449, - "y": -12629.849183247581, - "rotation": 6.219801451250132, - "action": "NOTHING" - }, - { - "x": -45.44784131492344, - "y": -12636.681404679277, - "rotation": 6.22329210975412, - "action": "NOTHING" - }, - { - "x": -45.72352867376978, - "y": -12643.535233648805, - "rotation": 6.226782768258109, - "action": "NOTHING" - }, - { - "x": -45.982375189424204, - "y": -12650.410730421838, - "rotation": 6.230273426762097, - "action": "NOTHING" - }, - { - "x": -46.224352877520666, - "y": -12657.307955427634, - "rotation": 6.233764085266086, - "action": "NOTHING" - }, - { - "x": -46.44943350298478, - "y": -12664.22696925855, - "rotation": 6.237254743770074, - "action": "NOTHING" - } - ] -} diff --git a/src/public/ghosts/zermatt.json b/src/public/ghosts/zermatt.json deleted file mode 100644 index cb5977c..0000000 --- a/src/public/ghosts/zermatt.json +++ /dev/null @@ -1,17979 +0,0 @@ -{ - "date": "2024-04-09T19:42:43.081Z", - "eventId": "event1712691521553", - "trackName": "zermatt", - "trackVersion": 4, - "trackStyle": "DH", - "skier": "Emilie Hugas", - "totalTime": 50388.59999990463, - "timedSectors": [ - { "sectorNumber": 1, "time": 21326.099999904633 }, - { "sectorNumber": 2, "time": 35917.89999985695 }, - { "sectorNumber": 3, "time": 50386.89999985695 } - ], - "positions": [ - { "x": 0, "y": 0, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.021000000000000005, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.06296220000000001, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.12584886804000003, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.20962234007752806, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.31424501986538855, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.4396793788296309, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.5858879559477376, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.7528333576270316, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -0.9404782575833031, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.148785396719653, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.3777175830055577, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.6272376913561477, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -1.8973086635117067, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -2.187893507917386, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -2.4989552996031343, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -2.8304571800638487, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -3.1823623571397337, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -3.5546341048968824, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -3.947235763508068, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -4.360130739133753, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -4.7932825038033124, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -5.246654595296467, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -5.720210617024933, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -6.213914237914288, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -6.727729192286042, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -7.261619279739928, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -7.8155483650363955, "rotation": 0, "action": "NOTHING" }, - { "x": 0, "y": -8.38948037797933, "rotation": 0, "action": "CARVE_RIGHT" }, - { - "x": 0.0015406601815372736, - "y": -8.98119665829702, - "rotation": 0.004197601386399319, - "action": "CARVE_RIGHT" - }, - { - "x": 0.004774529495535806, - "y": -9.590463381325984, - "rotation": 0.008535705999870545, - "action": "CARVE_RIGHT" - }, - { - "x": 0.009858119728354126, - "y": -10.217041350408877, - "rotation": 0.013013636764376075, - "action": "CARVE_RIGHT" - }, - { - "x": 0.016951801144416734, - "y": -10.860686105804866, - "rotation": 0.017630704150724853, - "action": "CARVE_RIGHT" - }, - { - "x": 0.026219696552116065, - "y": -11.521148035203128, - "rotation": 0.02238620626640867, - "action": "CARVE_RIGHT" - }, - { - "x": 0.03782957384371176, - "y": -12.198172485791007, - "rotation": 0.027279428946485638, - "action": "CARVE_RIGHT" - }, - { - "x": 0.05195273706040446, - "y": -12.891499877827977, - "rotation": 0.032309645845500015, - "action": "CARVE_RIGHT" - }, - { - "x": 0.0687639160341896, - "y": -13.600865819676121, - "rotation": 0.03747611853042759, - "action": "CARVE_RIGHT" - }, - { - "x": 0.08844115465850291, - "y": -14.326001224237466, - "rotation": 0.042778096574635646, - "action": "CARVE_RIGHT" - }, - { - "x": 0.11116569784005316, - "y": -15.066632426748136, - "rotation": 0.04821481765284648, - "action": "CARVE_RIGHT" - }, - { - "x": 0.13712187718459953, - "y": -15.822481303878973, - "rotation": 0.05378550763709346, - "action": "CARVE_RIGHT" - }, - { - "x": 0.16649699546977015, - "y": -16.59326539409188, - "rotation": 0.05948938069365837, - "action": "CARVE_RIGHT" - }, - { - "x": 0.19948120995833538, - "y": -17.37869801920092, - "rotation": 0.06532563938097885, - "action": "CARVE_RIGHT" - }, - { - "x": 0.23626741460564366, - "y": -18.178488407086878, - "rotation": 0.07129347474851455, - "action": "CARVE_RIGHT" - }, - { - "x": 0.27705112121520004, - "y": -18.9923418155137, - "rotation": 0.0773920664365607, - "action": "CARVE_RIGHT" - }, - { - "x": 0.32203033959661653, - "y": -19.819959656995085, - "rotation": 0.08362058277699756, - "action": "CARVE_RIGHT" - }, - { - "x": 0.37140545678039066, - "y": -20.661039624659157, - "rotation": 0.0899781808949642, - "action": "CARVE_RIGHT" - }, - { - "x": 0.425379115344173, - "y": -21.515275819059053, - "rotation": 0.0964640068114451, - "action": "CARVE_RIGHT" - }, - { - "x": 0.48415609090536554, - "y": -22.382358875877006, - "rotation": 0.10307719554675773, - "action": "CARVE_RIGHT" - }, - { - "x": 0.5479431688350533, - "y": -23.261976094469432, - "rotation": 0.10981687122492967, - "action": "CARVE_RIGHT" - }, - { - "x": 0.6169490202484071, - "y": -24.153811567200275, - "rotation": 0.116682147178953, - "action": "CARVE_RIGHT" - }, - { - "x": 0.6913840773268105, - "y": -25.057546309509885, - "rotation": 0.12367212605690459, - "action": "CARVE_RIGHT" - }, - { - "x": 0.7714604080270545, - "y": -25.972858390666495, - "rotation": 0.13078589992891992, - "action": "CARVE_RIGHT" - }, - { - "x": 0.8573915902330156, - "y": -26.89942306514737, - "rotation": 0.1380225503950089, - "action": "NOTHING" - }, - { - "x": 0.9520645340435412, - "y": -27.83528392195901, - "rotation": 0.13453189189102024, - "action": "NOTHING" - }, - { - "x": 1.045849240625019, - "y": -28.789372990623892, - "rotation": 0.13104123338703158, - "action": "NOTHING" - }, - { - "x": 1.138663507232218, - "y": -29.76178172107572, - "rotation": 0.12755057488304292, - "action": "NOTHING" - }, - { - "x": 1.2304250183440275, - "y": -30.752601640065002, - "rotation": 0.12405991637905425, - "action": "NOTHING" - }, - { - "x": 1.3210513459325872, - "y": -31.76192435095955, - "rotation": 0.12056925787506559, - "action": "NOTHING" - }, - { - "x": 1.4104599497318142, - "y": -32.789841533545435, - "rotation": 0.11707859937107692, - "action": "NOTHING" - }, - { - "x": 1.4985681775053268, - "y": -33.83644494382843, - "rotation": 0.11358794086708826, - "action": "NOTHING" - }, - { - "x": 1.5852932653137684, - "y": -34.90182641383591, - "rotation": 0.1100972823630996, - "action": "NOTHING" - }, - { - "x": 1.6705523377815314, - "y": -35.98607785141921, - "rotation": 0.10660662385911093, - "action": "NOTHING" - }, - { - "x": 1.754262408362883, - "y": -37.089291240056454, - "rotation": 0.10311596535512227, - "action": "NOTHING" - }, - { - "x": 1.8363403796074937, - "y": -38.211558638655866, - "rotation": 0.0996253068511336, - "action": "NOTHING" - }, - { - "x": 1.91670304342537, - "y": -39.352972181359505, - "rotation": 0.09613464834714494, - "action": "NOTHING" - }, - { - "x": 1.9952670813511937, - "y": -40.513624077347515, - "rotation": 0.09264398984315628, - "action": "NOTHING" - }, - { - "x": 2.071949064808066, - "y": -41.69360661064278, - "rotation": 0.08915333133916761, - "action": "NOTHING" - }, - { - "x": 2.146665455370663, - "y": -42.89301213991608, - "rotation": 0.08566267283517895, - "action": "NOTHING" - }, - { - "x": 2.2193326050277964, - "y": -44.11193309829169, - "rotation": 0.08217201433119029, - "action": "CARVE_RIGHT" - }, - { - "x": 2.2931698327509418, - "y": -45.346531160197735, - "rotation": 0.09157901248541692, - "action": "CARVE_RIGHT" - }, - { - "x": 2.3757292264165217, - "y": -46.58965608165125, - "rotation": 0.10110859299233702, - "action": "CARVE_RIGHT" - }, - { - "x": 2.4672961050373967, - "y": -47.840884768585326, - "rotation": 0.11075960342251062, - "action": "CARVE_RIGHT" - }, - { - "x": 2.568155576290832, - "y": -49.09979300079114, - "rotation": 0.12053088154772269, - "action": "CARVE_RIGHT" - }, - { - "x": 2.678592379396278, - "y": -50.36595559544787, - "rotation": 0.13042125547226105, - "action": "CARVE_RIGHT" - }, - { - "x": 2.7988907283740723, - "y": -51.63894657039491, - "rotation": 0.14042954376490313, - "action": "CARVE_RIGHT" - }, - { - "x": 2.9293341557500896, - "y": -52.918339307084175, - "rotation": 0.15055455559159778, - "action": "CARVE_RIGHT" - }, - { - "x": 3.070205356770991, - "y": -54.20370671315081, - "rotation": 0.1607950908488273, - "action": "CARVE_RIGHT" - }, - { - "x": 3.2217860341942997, - "y": -55.49462138454071, - "rotation": 0.171149940297636, - "action": "CARVE_RIGHT" - }, - { - "x": 3.3843567437171043, - "y": -56.79065576713398, - "rotation": 0.18161788569831072, - "action": "CARVE_RIGHT" - }, - { - "x": 3.5581967401067383, - "y": -58.09138231780358, - "rotation": 0.19219769994569894, - "action": "CARVE_RIGHT" - }, - { - "x": 3.743583824096284, - "y": -59.39637366484908, - "rotation": 0.20288814720515017, - "action": "NOTHING" - }, - { - "x": 3.9481746729232268, - "y": -60.699260037197035, - "rotation": 0.1993974887011615, - "action": "NOTHING" - }, - { - "x": 4.151297960558494, - "y": -62.019200000887416, - "rotation": 0.19590683019717284, - "action": "NOTHING" - }, - { - "x": 4.352880788632064, - "y": -63.35627947054856, - "rotation": 0.19241617169318417, - "action": "NOTHING" - }, - { - "x": 4.5528501218718125, - "y": -64.71058445442095, - "rotation": 0.1889255131891955, - "action": "NOTHING" - }, - { - "x": 4.751132788429342, - "y": -66.08220105411522, - "rotation": 0.18543485468520685, - "action": "NOTHING" - }, - { - "x": 4.9476554802051, - "y": -67.47121546437064, - "rotation": 0.18194419618121818, - "action": "NOTHING" - }, - { - "x": 5.142344753172752, - "y": -68.87771397281426, - "rotation": 0.17845353767722952, - "action": "NOTHING" - }, - { - "x": 5.3351270277028435, - "y": -70.30178295972055, - "rotation": 0.17496287917324085, - "action": "NOTHING" - }, - { - "x": 5.525928588885723, - "y": -71.74350889777166, - "rotation": 0.1714722206692522, - "action": "NOTHING" - }, - { - "x": 5.714675586853754, - "y": -73.20297835181816, - "rotation": 0.16798156216526353, - "action": "NOTHING" - }, - { - "x": 5.901294037102797, - "y": -74.68027797864046, - "rotation": 0.16449090366127486, - "action": "NOTHING" - }, - { - "x": 6.085709820812977, - "y": -76.17549452671068, - "rotation": 0.1610002451572862, - "action": "CARVE_RIGHT" - }, - { - "x": 6.265850955733487, - "y": -77.689655023735, - "rotation": 0.1731847649497564, - "action": "CARVE_RIGHT" - }, - { - "x": 6.460478061910806, - "y": -79.20519719020994, - "rotation": 0.1854788883268414, - "action": "CARVE_RIGHT" - }, - { - "x": 6.6699072084562046, - "y": -80.72163593235433, - "rotation": 0.1978812159100253, - "action": "CARVE_RIGHT" - }, - { - "x": 6.894451324116006, - "y": -82.23848798275168, - "rotation": 0.21039034025970682, - "action": "CARVE_RIGHT" - }, - { - "x": 7.134420031039184, - "y": -83.75527207513736, - "rotation": 0.2230048460273254, - "action": "CARVE_RIGHT" - }, - { - "x": 7.39011948017848, - "y": -85.27150911773943, - "rotation": 0.23572331010798703, - "action": "CARVE_RIGHT" - }, - { - "x": 7.66185218838936, - "y": -86.78672236511133, - "rotation": 0.24854430179357367, - "action": "CARVE_RIGHT" - }, - { - "x": 7.949916877290242, - "y": -88.30043758839557, - "rotation": 0.2614663829263205, - "action": "CARVE_RIGHT" - }, - { - "x": 8.254608313946541, - "y": -89.8121832439583, - "rotation": 0.2744881080528453, - "action": "CARVE_RIGHT" - }, - { - "x": 8.576217153440105, - "y": -91.32149064033567, - "rotation": 0.28760802457861345, - "action": "CARVE_RIGHT" - }, - { - "x": 8.915029783384744, - "y": -92.82789410343344, - "rotation": 0.3008246729228239, - "action": "NOTHING" - }, - { - "x": 9.289930652174013, - "y": -94.31463125364971, - "rotation": 0.2973340144188352, - "action": "NOTHING" - }, - { - "x": 9.663212346493657, - "y": -95.81663828153685, - "rotation": 0.29384335591484656, - "action": "NOTHING" - }, - { - "x": 10.0348131351082, - "y": -97.33399422515723, - "rotation": 0.2903526974108579, - "action": "NOTHING" - }, - { - "x": 10.404671121482085, - "y": -98.86677823624566, - "rotation": 0.28686203890686923, - "action": "NOTHING" - }, - { - "x": 10.77272424417156, - "y": -100.41506957991757, - "rotation": 0.28337138040288057, - "action": "NOTHING" - }, - { - "x": 11.138910277215693, - "y": -101.9789476343776, - "rotation": 0.2798807218988919, - "action": "NOTHING" - }, - { - "x": 11.503166830526515, - "y": -103.55849189062904, - "rotation": 0.27639006339490324, - "action": "NOTHING" - }, - { - "x": 11.865431350278289, - "y": -105.15378195218392, - "rotation": 0.2728994048909146, - "action": "NOTHING" - }, - { - "x": 12.225641119295908, - "y": -106.76489753477371, - "rotation": 0.2694087463869259, - "action": "NOTHING" - }, - { - "x": 12.583733257442425, - "y": -108.39191846606079, - "rotation": 0.26591808788293725, - "action": "NOTHING" - }, - { - "x": 12.939644722005728, - "y": -110.03492468535055, - "rotation": 0.2624274293789486, - "action": "NOTHING" - }, - { - "x": 13.293312308084332, - "y": -111.69399624330416, - "rotation": 0.2589367708749599, - "action": "NOTHING" - }, - { - "x": 13.644672648972326, - "y": -113.369213301652, - "rotation": 0.25544611237097126, - "action": "NOTHING" - }, - { - "x": 13.993662216543454, - "y": -115.06065613290781, - "rotation": 0.2519554538669826, - "action": "NOTHING" - }, - { - "x": 14.340217321634325, - "y": -116.76840512008346, - "rotation": 0.24846479536299393, - "action": "NOTHING" - }, - { - "x": 14.684274114426792, - "y": -118.49254075640442, - "rotation": 0.24497413685900526, - "action": "NOTHING" - }, - { - "x": 15.025768584829452, - "y": -120.23314364502589, - "rotation": 0.2414834783550166, - "action": "NOTHING" - }, - { - "x": 15.36463656285831, - "y": -121.99029449874953, - "rotation": 0.23799281985102794, - "action": "NOTHING" - }, - { - "x": 15.70081371901658, - "y": -123.76407413974103, - "rotation": 0.23450216134703927, - "action": "NOTHING" - }, - { - "x": 16.034235564673644, - "y": -125.55456349924808, - "rotation": 0.2310115028430506, - "action": "NOTHING" - }, - { - "x": 16.36483745244316, - "y": -127.36184361731924, - "rotation": 0.22752084433906195, - "action": "NOTHING" - }, - { - "x": 16.692554576560333, - "y": -129.18599564252335, - "rotation": 0.22403018583507328, - "action": "NOTHING" - }, - { - "x": 17.017321973258323, - "y": -131.02710083166963, - "rotation": 0.22053952733108462, - "action": "CARVE_RIGHT" - }, - { - "x": 17.33231581753918, - "y": -132.89054251977132, - "rotation": 0.2362042550754707, - "action": "CARVE_RIGHT" - }, - { - "x": 17.670364243414856, - "y": -134.74568964885438, - "rotation": 0.2519661601244569, - "action": "CARVE_RIGHT" - }, - { - "x": 18.031811676816744, - "y": -136.59198781455194, - "rotation": 0.26782352639484575, - "action": "CARVE_RIGHT" - }, - { - "x": 18.416995399285216, - "y": -138.42888839836195, - "rotation": 0.2837746315584034, - "action": "CARVE_RIGHT" - }, - { - "x": 18.82624537522752, - "y": -140.25584875219323, - "rotation": 0.2998177472215061, - "action": "CARVE_RIGHT" - }, - { - "x": 19.259884082476503, - "y": -142.0723323798897, - "rotation": 0.31595113910505657, - "action": "CARVE_RIGHT" - }, - { - "x": 19.718226346211374, - "y": -143.87780911567341, - "rotation": 0.33217306722465156, - "action": "CARVE_RIGHT" - }, - { - "x": 20.20157917630009, - "y": -145.67175529944893, - "rotation": 0.34848178607098346, - "action": "CARVE_RIGHT" - }, - { - "x": 20.71024160812152, - "y": -147.45365394891272, - "rotation": 0.36487554479045686, - "action": "CARVE_RIGHT" - }, - { - "x": 21.244504546923906, - "y": -149.22299492841267, - "rotation": 0.38135258736600314, - "action": "NOTHING" - }, - { - "x": 21.835780982991725, - "y": -150.9514187387945, - "rotation": 0.3778619288620145, - "action": "NOTHING" - }, - { - "x": 22.42465788757997, - "y": -152.69396273878664, - "rotation": 0.3743712703580258, - "action": "NOTHING" - }, - { - "x": 23.011084586964515, - "y": -154.45069909804852, - "rotation": 0.37088061185403715, - "action": "NOTHING" - }, - { - "x": 23.595010214144125, - "y": -156.22170011975066, - "rotation": 0.3673899533500485, - "action": "NOTHING" - }, - { - "x": 24.17638370929721, - "y": -158.0070382402336, - "rotation": 0.3638992948460598, - "action": "NOTHING" - }, - { - "x": 24.7551538202376, - "y": -159.80678602866755, - "rotation": 0.36040863634207115, - "action": "NOTHING" - }, - { - "x": 25.331269102869285, - "y": -161.62101618671272, - "rotation": 0.3569179778380825, - "action": "NOTHING" - }, - { - "x": 25.90467792164016, - "y": -163.44980154818077, - "rotation": 0.3534273193340938, - "action": "NOTHING" - }, - { - "x": 26.47532844999473, - "y": -165.29321507869668, - "rotation": 0.34993666083010516, - "action": "NOTHING" - }, - { - "x": 27.043168670825832, - "y": -167.15132987536163, - "rotation": 0.3464460023261165, - "action": "NOTHING" - }, - { - "x": 27.608146376925333, - "y": -169.02421916641663, - "rotation": 0.34295534382212783, - "action": "NOTHING" - }, - { - "x": 28.170209171433832, - "y": -170.91195631090687, - "rotation": 0.33946468531813917, - "action": "NOTHING" - }, - { - "x": 28.729304468289357, - "y": -172.81461479834695, - "rotation": 0.3359740268141505, - "action": "NOTHING" - }, - { - "x": 29.285379492675055, - "y": -174.73226824838682, - "rotation": 0.33248336831016184, - "action": "NOTHING" - }, - { - "x": 29.838381281465896, - "y": -176.66499041047848, - "rotation": 0.3289927098061732, - "action": "NOTHING" - }, - { - "x": 30.388256683674367, - "y": -178.61285516354357, - "rotation": 0.3255020513021845, - "action": "NOTHING" - }, - { - "x": 30.93495236089518, - "y": -180.57593651564162, - "rotation": 0.32201139279819585, - "action": "NOTHING" - }, - { - "x": 31.478414787748985, - "y": -182.5543086036391, - "rotation": 0.3185207342942072, - "action": "NOTHING" - }, - { - "x": 32.01859025232509, - "y": -184.5480456928793, - "rotation": 0.3150300757902185, - "action": "NOTHING" - }, - { - "x": 32.5554248566232, - "y": -186.55722217685297, - "rotation": 0.31153941728622986, - "action": "NOTHING" - }, - { - "x": 33.08886451699416, - "y": -188.58191257686963, - "rotation": 0.3080487587822412, - "action": "NOTHING" - }, - { - "x": 33.618854964579725, - "y": -190.62219154172976, - "rotation": 0.30455810027825253, - "action": "NOTHING" - }, - { - "x": 34.14534174575136, - "y": -192.6781338473977, - "rotation": 0.30106744177426387, - "action": "NOTHING" - }, - { - "x": 34.66827022254802, - "y": -194.7498143966754, - "rotation": 0.2975767832702752, - "action": "NOTHING" - }, - { - "x": 35.18758557311296, - "y": -196.83730821887673, - "rotation": 0.29408612476628654, - "action": "NOTHING" - }, - { - "x": 35.703232792129654, - "y": -198.9406904695028, - "rotation": 0.2905954662622979, - "action": "NOTHING" - }, - { - "x": 36.215156691256595, - "y": -201.06003642991794, - "rotation": 0.2871048077583092, - "action": "NOTHING" - }, - { - "x": 36.72330189956126, - "y": -203.19542150702628, - "rotation": 0.28361414925432055, - "action": "NOTHING" - }, - { - "x": 37.227612863953006, - "y": -205.34692123294934, - "rotation": 0.2801234907503319, - "action": "NOTHING" - }, - { - "x": 37.72803384961508, - "y": -207.51461126470429, - "rotation": 0.2766328322463432, - "action": "NOTHING" - }, - { - "x": 38.22450894043559, - "y": -209.69856738388285, - "rotation": 0.27314217374235455, - "action": "NOTHING" - }, - { - "x": 38.716982039437575, - "y": -211.89886549633107, - "rotation": 0.2696515152383659, - "action": "NOTHING" - }, - { - "x": 39.20539686920807, - "y": -214.1155816318298, - "rotation": 0.2661608567343772, - "action": "NOTHING" - }, - { - "x": 39.68969697232624, - "y": -216.34879194377592, - "rotation": 0.26267019823038856, - "action": "NOTHING" - }, - { - "x": 40.16982571179053, - "y": -218.59857270886437, - "rotation": 0.2591795397263999, - "action": "NOTHING" - }, - { - "x": 40.64572627144491, - "y": -220.86500032677077, - "rotation": 0.25568888122241124, - "action": "NOTHING" - }, - { - "x": 41.1173416564041, - "y": -223.148151319835, - "rotation": 0.25219822271842257, - "action": "NOTHING" - }, - { - "x": 41.58461469347791, - "y": -225.44810233274535, - "rotation": 0.2487075642144339, - "action": "NOTHING" - }, - { - "x": 42.047488031594575, - "y": -227.76493013222344, - "rotation": 0.24521690571044524, - "action": "NOTHING" - }, - { - "x": 42.50590414222319, - "y": -230.09871160670997, - "rotation": 0.24172624720645658, - "action": "NOTHING" - }, - { - "x": 42.95980531979515, - "y": -232.4495237660511, - "rotation": 0.23823558870246792, - "action": "NOTHING" - }, - { - "x": 43.40913368212473, - "y": -234.81744374118563, - "rotation": 0.23474493019847925, - "action": "NOTHING" - }, - { - "x": 43.853831170828634, - "y": -237.2025487838328, - "rotation": 0.2312542716944906, - "action": "NOTHING" - }, - { - "x": 44.29383955174464, - "y": -239.6049162661811, - "rotation": 0.22776361319050192, - "action": "NOTHING" - }, - { - "x": 44.729100415349336, - "y": -242.02462368057738, - "rotation": 0.22427295468651326, - "action": "NOTHING" - }, - { - "x": 45.15955517717489, - "y": -244.46174863921712, - "rotation": 0.2207822961825246, - "action": "NOTHING" - }, - { - "x": 45.58514507822488, - "y": -246.91636887383513, - "rotation": 0.21729163767853593, - "action": "CARVE_RIGHT" - }, - { - "x": 46.00666875953572, - "y": -249.38674298051006, - "rotation": 0.23812623769851657, - "action": "CARVE_RIGHT" - }, - { - "x": 46.46710190896666, - "y": -251.83277736540347, - "rotation": 0.25904852132581146, - "action": "CARVE_RIGHT" - }, - { - "x": 46.96684738845819, - "y": -254.25379711747357, - "rotation": 0.28005628499552837, - "action": "CARVE_RIGHT" - }, - { - "x": 47.506294032081236, - "y": -256.64913974458415, - "rotation": 0.3011473207511432, - "action": "CARVE_RIGHT" - }, - { - "x": 48.08581646004889, - "y": -259.0181553763157, - "rotation": 0.32231941646829415, - "action": "CARVE_RIGHT" - }, - { - "x": 48.70577489885484, - "y": -261.36020696110114, - "rotation": 0.34357035607858033, - "action": "CARVE_RIGHT" - }, - { - "x": 49.36651500759523, - "y": -263.6746704576311, - "rotation": 0.3648979197933433, - "action": "CARVE_RIGHT" - }, - { - "x": 50.068367710527944, - "y": -265.96093502047506, - "rotation": 0.3862998843274095, - "action": "CARVE_RIGHT" - }, - { - "x": 50.81164903592068, - "y": -268.2184031798686, - "rotation": 0.40777402312277206, - "action": "CARVE_RIGHT" - }, - { - "x": 51.596659961236696, - "y": -270.4464910156178, - "rotation": 0.4293181065721895, - "action": "CARVE_RIGHT" - }, - { - "x": 52.42368626470414, - "y": -272.64462832507644, - "rotation": 0.4509299022426806, - "action": "NOTHING" - }, - { - "x": 53.33846990599181, - "y": -274.7711919938682, - "rotation": 0.4474392437386919, - "action": "NOTHING" - }, - { - "x": 54.249081518664376, - "y": -276.91133104271955, - "rotation": 0.44394858523470326, - "action": "NOTHING" - }, - { - "x": 55.15548332133932, - "y": -279.0651096387558, - "rotation": 0.4404579267307146, - "action": "NOTHING" - }, - { - "x": 56.0576373067242, - "y": -281.2325921057461, - "rotation": 0.43696726822672594, - "action": "NOTHING" - }, - { - "x": 56.95550524214919, - "y": -283.4138429237051, - "rotation": 0.43347660972273727, - "action": "NOTHING" - }, - { - "x": 57.84904867009829, - "y": -285.60892672849536, - "rotation": 0.4299859512187486, - "action": "NOTHING" - }, - { - "x": 58.73822890873956, - "y": -287.8179083114308, - "rotation": 0.42649529271475994, - "action": "NOTHING" - }, - { - "x": 59.62300705245396, - "y": -290.040852618881, - "rotation": 0.4230046342107713, - "action": "NOTHING" - }, - { - "x": 60.50334397236317, - "y": -292.2778247518762, - "rotation": 0.4195139757067826, - "action": "NOTHING" - }, - { - "x": 61.37920031685616, - "y": -294.5288899657137, - "rotation": 0.41602331720279395, - "action": "NOTHING" - }, - { - "x": 62.25053651211462, - "y": -296.79411366956464, - "rotation": 0.4125326586988053, - "action": "NOTHING" - }, - { - "x": 63.11731276263718, - "y": -299.07356142608216, - "rotation": 0.4090420001948166, - "action": "NOTHING" - }, - { - "x": 63.979489051762485, - "y": -301.3672989510103, - "rotation": 0.40555134169082796, - "action": "NOTHING" - }, - { - "x": 64.83702514219117, - "y": -303.6753921127936, - "rotation": 0.4020606831868393, - "action": "NOTHING" - }, - { - "x": 65.68988057650651, - "y": -305.99790693218785, - "rotation": 0.39857002468285063, - "action": "NOTHING" - }, - { - "x": 66.53801467769411, - "y": -308.3349095818718, - "rotation": 0.39507936617886197, - "action": "NOTHING" - }, - { - "x": 67.38138654966028, - "y": -310.6864663860596, - "rotation": 0.3915887076748733, - "action": "NOTHING" - }, - { - "x": 68.21995507774932, - "y": -313.05264382011404, - "rotation": 0.38809804917088464, - "action": "NOTHING" - }, - { - "x": 69.05367892925966, - "y": -315.43350851016123, - "rotation": 0.384607390666896, - "action": "NOTHING" - }, - { - "x": 69.88251655395885, - "y": -317.82912723270545, - "rotation": 0.3811167321629073, - "action": "NOTHING" - }, - { - "x": 70.70642618459736, - "y": -320.2395669142454, - "rotation": 0.37762607365891865, - "action": "NOTHING" - }, - { - "x": 71.52536583742126, - "y": -322.66489463089124, - "rotation": 0.37413541515493, - "action": "NOTHING" - }, - { - "x": 72.33929331268381, - "y": -325.1051776079824, - "rotation": 0.3706447566509413, - "action": "NOTHING" - }, - { - "x": 73.1481661951558, - "y": -327.5604832197063, - "rotation": 0.36715409814695266, - "action": "NOTHING" - }, - { - "x": 73.95194185463484, - "y": -330.0308789887183, - "rotation": 0.363663439642964, - "action": "NOTHING" - }, - { - "x": 74.75057744645352, - "y": -332.5164325857619, - "rotation": 0.36017278113897533, - "action": "NOTHING" - }, - { - "x": 75.54402991198637, - "y": -335.01721182929043, - "rotation": 0.35668212263498666, - "action": "NOTHING" - }, - { - "x": 76.33225597915572, - "y": -337.53328468508926, - "rotation": 0.353191464130998, - "action": "NOTHING" - }, - { - "x": 77.11521216293644, - "y": -340.06471926589904, - "rotation": 0.34970080562700934, - "action": "NOTHING" - }, - { - "x": 77.89285476585961, - "y": -342.6115838310398, - "rotation": 0.3462101471230207, - "action": "NOTHING" - }, - { - "x": 78.66513987851492, - "y": -345.1739467860359, - "rotation": 0.342719488619032, - "action": "NOTHING" - }, - { - "x": 79.4320233800521, - "y": -347.75187668224186, - "rotation": 0.33922883011504334, - "action": "NOTHING" - }, - { - "x": 80.19346093868116, - "y": -350.34544221646905, - "rotation": 0.3357381716110547, - "action": "NOTHING" - }, - { - "x": 80.94940801217147, - "y": -352.9547122306133, - "rotation": 0.332247513107066, - "action": "NOTHING" - }, - { - "x": 81.6998198483499, - "y": -355.5797557112835, - "rotation": 0.32875685460307735, - "action": "NOTHING" - }, - { - "x": 82.4446514855976, - "y": -358.2206417894305, - "rotation": 0.3252661960990887, - "action": "NOTHING" - }, - { "x": 83.18385775334589, "y": -360.8774397399777, "rotation": 0.3217755375951, "action": "NOTHING" }, - { - "x": 83.9173932725709, - "y": -363.550218981452, - "rotation": 0.31828487909111136, - "action": "NOTHING" - }, - { - "x": 84.64521245628723, - "y": -366.23904907561564, - "rotation": 0.3147942205871227, - "action": "NOTHING" - }, - { - "x": 85.36726951004033, - "y": -368.94399972709897, - "rotation": 0.31130356208313403, - "action": "NOTHING" - }, - { - "x": 86.08351843239801, - "y": -371.66514078303413, - "rotation": 0.30781290357914537, - "action": "NOTHING" - }, - { - "x": 86.79391301544065, - "y": -374.40254223268954, - "rotation": 0.3043222450751567, - "action": "NOTHING" - }, - { - "x": 87.49840684525046, - "y": -377.1562742071052, - "rotation": 0.30083158657116804, - "action": "NOTHING" - }, - { - "x": 88.1969533023995, - "y": -379.9264069787288, - "rotation": 0.2973409280671794, - "action": "NOTHING" - }, - { - "x": 88.88950556243684, - "y": -382.713010961053, - "rotation": 0.2938502695631907, - "action": "NOTHING" - }, - { - "x": 89.57601659637432, - "y": -385.51615670825305, - "rotation": 0.29035961105920205, - "action": "NOTHING" - }, - { - "x": 90.25643917117151, - "y": -388.33591491482576, - "rotation": 0.2868689525552134, - "action": "NOTHING" - }, - { - "x": 90.93072585021945, - "y": -391.1723564152289, - "rotation": 0.2833782940512247, - "action": "CARVE_RIGHT" - }, - { - "x": 91.59368776853655, - "y": -394.0292275231617, - "rotation": 0.30868961816583546, - "action": "CARVE_RIGHT" - }, - { - "x": 92.31314786613082, - "y": -396.843371961654, - "rotation": 0.33407366825385554, - "action": "CARVE_RIGHT" - }, - { - "x": 93.08947916689587, - "y": -399.6140867854898, - "rotation": 0.35952783141252426, - "action": "CARVE_RIGHT" - }, - { - "x": 93.92303327787967, - "y": -402.3406886210788, - "rotation": 0.38504949258680554, - "action": "CARVE_RIGHT" - }, - { - "x": 94.81414022961287, - "y": -405.02251384975216, - "rotation": 0.4106360348289565, - "action": "CARVE_RIGHT" - }, - { - "x": 95.76310832544164, - "y": -407.65891878267905, - "rotation": 0.43628483955781355, - "action": "CARVE_RIGHT" - }, - { - "x": 96.77022399990082, - "y": -410.24927982736705, - "rotation": 0.4619932868177715, - "action": "CARVE_RIGHT" - }, - { - "x": 97.83575168616038, - "y": -412.79299364571267, - "rotation": 0.48775875553743125, - "action": "NOTHING" - }, - { - "x": 99.01391926929074, - "y": -415.2405825113422, - "rotation": 0.4842680970334426, - "action": "NOTHING" - }, - { - "x": 100.18630612627949, - "y": -417.7017271076873, - "rotation": 0.4807774385294539, - "action": "NOTHING" - }, - { - "x": 101.35288335027622, - "y": -420.1764861012451, - "rotation": 0.47728678002546526, - "action": "NOTHING" - }, - { - "x": 102.51362178603846, - "y": -422.66491833108375, - "rotation": 0.4737961215214766, - "action": "NOTHING" - }, - { - "x": 103.66849203051646, - "y": -425.1670828084045, - "rotation": 0.47030546301748793, - "action": "NOTHING" - }, - { - "x": 104.81746443343647, - "y": -427.6830387161044, - "rotation": 0.46681480451349927, - "action": "NOTHING" - }, - { - "x": 105.96050909788286, - "y": -430.21284540834085, - "rotation": 0.4633241460095106, - "action": "NOTHING" - }, - { - "x": 107.09759588087888, - "y": -432.75656241009597, - "rotation": 0.45983348750552194, - "action": "NOTHING" - }, - { - "x": 108.22869439396617, - "y": -435.3142494167432, - "rotation": 0.4563428290015333, - "action": "NOTHING" - }, - { - "x": 109.35377400378289, - "y": -437.8859662936142, - "rotation": 0.4528521704975446, - "action": "NOTHING" - }, - { - "x": 110.47280383264071, - "y": -440.47177307556683, - "rotation": 0.44936151199355595, - "action": "NOTHING" - }, - { - "x": 111.5857527591004, - "y": -443.0717299665543, - "rotation": 0.4458708534895673, - "action": "NOTHING" - }, - { - "x": 112.69258941854618, - "y": -445.68589733919526, - "rotation": 0.4423801949855786, - "action": "NOTHING" - }, - { - "x": 113.79328220375879, - "y": -448.31433573434487, - "rotation": 0.43888953648158996, - "action": "NOTHING" - }, - { - "x": 114.8877992654873, - "y": -450.9571058606668, - "rotation": 0.4353988779776013, - "action": "NOTHING" - }, - { - "x": 115.9761085130196, - "y": -453.6142685942064, - "rotation": 0.43190821947361263, - "action": "NOTHING" - }, - { - "x": 117.05817761475166, - "y": -456.28588497796477, - "rotation": 0.42841756096962397, - "action": "NOTHING" - }, - { - "x": 118.13397399875554, - "y": -458.97201622147367, - "rotation": 0.4249269024656353, - "action": "NOTHING" - }, - { - "x": 119.20346485334609, - "y": -461.6727237003717, - "rotation": 0.42143624396164664, - "action": "NOTHING" - }, - { - "x": 120.26661712764641, - "y": -464.3880689559814, - "rotation": 0.417945585457658, - "action": "NOTHING" - }, - { - "x": 121.32339753215206, - "y": -467.118113694887, - "rotation": 0.4144549269536693, - "action": "NOTHING" - }, - { - "x": 122.37377253929398, - "y": -469.86291978851364, - "rotation": 0.41096426844968065, - "action": "NOTHING" - }, - { - "x": 123.41770838400022, - "y": -472.6225492727073, - "rotation": 0.407473609945692, - "action": "NOTHING" - }, - { - "x": 124.45517106425633, - "y": -475.3970643473158, - "rotation": 0.4039829514417033, - "action": "NOTHING" - }, - { - "x": 125.4861263416646, - "y": -478.1865273757704, - "rotation": 0.40049229293771466, - "action": "NOTHING" - }, - { - "x": 126.51053974200198, - "y": -480.99100088466935, - "rotation": 0.397001634433726, - "action": "NOTHING" - }, - { - "x": 127.52837655577679, - "y": -483.81054756336107, - "rotation": 0.3935109759297373, - "action": "NOTHING" - }, - { - "x": 128.53960183878417, - "y": -486.64523026352947, - "rotation": 0.39002031742574866, - "action": "NOTHING" - }, - { - "x": 129.54418041266032, - "y": -489.4951119987796, - "rotation": 0.38652965892176, - "action": "NOTHING" - }, - { - "x": 130.54207686543552, - "y": -492.3602559442243, - "rotation": 0.38303900041777134, - "action": "NOTHING" - }, - { - "x": 131.53325555208582, - "y": -495.24072543607235, - "rotation": 0.37954834191378267, - "action": "NOTHING" - }, - { - "x": 132.51768059508365, - "y": -498.13658397121657, - "rotation": 0.376057683409794, - "action": "NOTHING" - }, - { - "x": 133.49531588494702, - "y": -501.047895206824, - "rotation": 0.37256702490580534, - "action": "NOTHING" - }, - { - "x": 134.46612508078772, - "y": -503.97472295992634, - "rotation": 0.3690763664018167, - "action": "NOTHING" - }, - { - "x": 135.4300716108581, - "y": -506.9171312070114, - "rotation": 0.365585707897828, - "action": "NOTHING" - }, - { - "x": 136.38711867309672, - "y": -509.87518408361575, - "rotation": 0.36209504939383935, - "action": "NOTHING" - }, - { - "x": 137.3372292356728, - "y": -512.8489458839183, - "rotation": 0.3586043908898507, - "action": "NOTHING" - }, - { - "x": 138.28036603752935, - "y": -515.8384810603344, - "rotation": 0.355113732385862, - "action": "NOTHING" - }, - { - "x": 139.2164915889253, - "y": -518.8438542231115, - "rotation": 0.35162307388187336, - "action": "NOTHING" - }, - { - "x": 140.14556817197615, - "y": -521.8651301399253, - "rotation": 0.3481324153778847, - "action": "CARVE_LEFT" - }, - { - "x": 140.91533970435037, - "y": -525.0429493156844, - "rotation": 0.3197438191879814, - "action": "CARVE_LEFT" - }, - { - "x": 141.61830240643758, - "y": -528.2920312437786, - "rotation": 0.2912891169696153, - "action": "CARVE_LEFT" - }, - { - "x": 142.2540180510838, - "y": -531.613146095912, - "rotation": 0.2627656454760874, - "action": "CARVE_LEFT" - }, - { - "x": 142.82202144747157, - "y": -535.0070893092217, - "rotation": 0.23417073953043585, - "action": "CARVE_LEFT" - }, - { - "x": 143.3218202567624, - "y": -538.4746817921005, - "rotation": 0.20550173176831538, - "action": "CARVE_LEFT" - }, - { - "x": 143.75289479776018, - "y": -542.0167701392298, - "rotation": 0.17675595238112551, - "action": "CARVE_LEFT" - }, - { - "x": 144.11469784254604, - "y": -545.6342268558708, - "rotation": 0.14793072885936245, - "action": "CARVE_LEFT" - }, - { - "x": 144.40665440203128, - "y": -549.3279505914663, - "rotation": 0.1190233857361685, - "action": "CARVE_LEFT" - }, - { - "x": 144.62816150137087, - "y": -553.0988663826126, - "rotation": 0.09003124433105417, - "action": "CARVE_LEFT" - }, - { - "x": 144.77858794517672, - "y": -556.9479259054577, - "rotation": 0.060951622493767316, - "action": "CARVE_LEFT" - }, - { - "x": 144.857274072466, - "y": -560.8761077375917, - "rotation": 0.03178183434828399, - "action": "CARVE_LEFT" - }, - { - "x": 144.863531501276, - "y": -564.8844176294955, - "rotation": 0.0025191900368958207, - "action": "CARVE_LEFT" - }, - { - "x": 144.79665478101657, - "y": -568.8493143499214, - "rotation": 6.256346302643955, - "action": "CARVE_LEFT" - }, - { - "x": 144.65596394796037, - "y": -572.7581638497793, - "rotation": 6.2268951077381764, - "action": "CARVE_LEFT" - }, - { - "x": 144.44080735509706, - "y": -576.609945677624, - "rotation": 6.197353959572138, - "action": "CARVE_LEFT" - }, - { - "x": 144.15056194101166, - "y": -580.4036654390825, - "rotation": 6.167725908529528, - "action": "CARVE_LEFT" - }, - { - "x": 143.78463348666793, - "y": -584.1383550761774, - "rotation": 6.138014008000515, - "action": "CARVE_LEFT" - }, - { - "x": 143.3424568600288, - "y": -587.8130731353488, - "rotation": 6.108221314077782, - "action": "CARVE_LEFT" - }, - { - "x": 142.82349624845014, - "y": -591.4269050241136, - "rotation": 6.078350885252844, - "action": "CARVE_LEFT" - }, - { - "x": 142.22724537879049, - "y": -594.9789632563034, - "rotation": 6.048405782112676, - "action": "CARVE_LEFT" - }, - { - "x": 141.55322772518272, - "y": -598.4683876858278, - "rotation": 6.0183890670366855, - "action": "CARVE_LEFT" - }, - { - "x": 140.80099670442024, - "y": -601.8943457289151, - "rotation": 5.988303803894055, - "action": "CARVE_LEFT" - }, - { - "x": 139.97013585891418, - "y": -605.2560325747862, - "rotation": 5.958153057741477, - "action": "CARVE_LEFT" - }, - { - "x": 139.06025902718375, - "y": -608.5526713847225, - "rotation": 5.927939894521327, - "action": "CARVE_LEFT" - }, - { - "x": 138.07101050184673, - "y": -611.783513479494, - "rotation": 5.897667380760285, - "action": "CARVE_LEFT" - }, - { - "x": 137.00206517508204, - "y": -614.9478385151164, - "rotation": 5.867338583268449, - "action": "NOTHING" - }, - { - "x": 135.8220470471451, - "y": -618.017328209345, - "rotation": 5.870829241772437, - "action": "NOTHING" - }, - { - "x": 134.64975720259807, - "y": -621.1020158153501, - "rotation": 5.874319900276426, - "action": "NOTHING" - }, - { - "x": 133.48522527140048, - "y": -624.2019609591771, - "rotation": 5.877810558780414, - "action": "NOTHING" - }, - { - "x": 132.32848113129705, - "y": -627.3172234383586, - "rotation": 5.881301217284403, - "action": "NOTHING" - }, - { - "x": 131.17955490723287, - "y": -630.4478632214772, - "rotation": 5.884791875788391, - "action": "NOTHING" - }, - { - "x": 130.03847697076978, - "y": -633.593940447729, - "rotation": 5.8882825342923795, - "action": "NOTHING" - }, - { - "x": 128.90527793950423, - "y": -636.7555154264887, - "rotation": 5.891773192796368, - "action": "NOTHING" - }, - { - "x": 127.77998867648633, - "y": -639.9326486368755, - "rotation": 5.895263851300356, - "action": "NOTHING" - }, - { - "x": 126.66264028964021, - "y": -643.1254007273194, - "rotation": 5.898754509804345, - "action": "NOTHING" - }, - { - "x": 125.55326413118567, - "y": -646.33383251513, - "rotation": 5.902245168308333, - "action": "NOTHING" - }, - { - "x": 124.45189179706117, - "y": -649.5580049860644, - "rotation": 5.905735826812322, - "action": "NOTHING" - }, - { - "x": 123.35855512634797, - "y": -652.7979792938977, - "rotation": 5.90922648531631, - "action": "NOTHING" - }, - { - "x": 122.27328620069575, - "y": -656.0538167599938, - "rotation": 5.912717143820299, - "action": "NOTHING" - }, - { - "x": 121.19611734374935, - "y": -659.3255788728769, - "rotation": 5.916207802324287, - "action": "NOTHING" - }, - { - "x": 120.12708112057683, - "y": -662.6133272878049, - "rotation": 5.919698460828275, - "action": "NOTHING" - }, - { - "x": 119.06621033709885, - "y": -665.9171238263427, - "rotation": 5.923189119332264, - "action": "NOTHING" - }, - { - "x": 118.01353803951928, - "y": -669.2370304759378, - "rotation": 5.926679777836252, - "action": "NOTHING" - }, - { - "x": 116.96909751375706, - "y": -672.5731093894952, - "rotation": 5.930170436340241, - "action": "NOTHING" - }, - { - "x": 115.93292228487944, - "y": -675.9254228849552, - "rotation": 5.933661094844229, - "action": "NOTHING" - }, - { - "x": 114.90504611653628, - "y": -679.2940334448705, - "rotation": 5.937151753348218, - "action": "NOTHING" - }, - { - "x": 113.88550301039585, - "y": -682.6790037159855, - "rotation": 5.940642411852206, - "action": "NOTHING" - }, - { - "x": 112.87432720558166, - "y": -686.0803965088159, - "rotation": 5.9441330703561945, - "action": "NOTHING" - }, - { - "x": 111.87155317811076, - "y": -689.4982747972294, - "rotation": 5.947623728860183, - "action": "NOTHING" - }, - { - "x": 110.87721564033309, - "y": -692.9327017180278, - "rotation": 5.951114387364171, - "action": "NOTHING" - }, - { - "x": 109.89134954037226, - "y": -696.3837405705293, - "rotation": 5.95460504586816, - "action": "NOTHING" - }, - { - "x": 108.91399006156745, - "y": -699.8514548161523, - "rotation": 5.958095704372148, - "action": "NOTHING" - }, - { - "x": 107.94517262191661, - "y": -703.3359080780004, - "rotation": 5.961586362876137, - "action": "NOTHING" - }, - { - "x": 106.98493287352093, - "y": -706.8371641404478, - "rotation": 5.965077021380125, - "action": "NOTHING" - }, - { - "x": 106.03330670203046, - "y": -710.355286948726, - "rotation": 5.968567679884114, - "action": "NOTHING" - }, - { - "x": 105.09033022609104, - "y": -713.8903406085111, - "rotation": 5.972058338388102, - "action": "NOTHING" - }, - { - "x": 104.15603979679247, - "y": -717.4423893855129, - "rotation": 5.9755489968920905, - "action": "NOTHING" - }, - { - "x": 103.23047199711785, - "y": -721.011497705064, - "rotation": 5.979039655396079, - "action": "NOTHING" - }, - { - "x": 102.31366364139421, - "y": -724.5977301517103, - "rotation": 5.982530313900067, - "action": "NOTHING" - }, - { - "x": 101.40565177474436, - "y": -728.2011514688025, - "rotation": 5.986020972404056, - "action": "NOTHING" - }, - { - "x": 100.5064736725399, - "y": -731.8218265580888, - "rotation": 5.989511630908044, - "action": "NOTHING" - }, - { - "x": 99.61616683985552, - "y": -735.4598204793075, - "rotation": 5.993002289412033, - "action": "NOTHING" - }, - { - "x": 98.73476901092452, - "y": -739.1151984497819, - "rotation": 5.996492947916021, - "action": "NOTHING" - }, - { - "x": 97.86231814859549, - "y": -742.7880258440154, - "rotation": 5.99998360642001, - "action": "NOTHING" - }, - { - "x": 96.99885244379026, - "y": -746.4783681932875, - "rotation": 6.003474264923998, - "action": "NOTHING" - }, - { "x": 96.144410314963, "y": -750.186291185251, "rotation": 6.0069649234279865, "action": "NOTHING" }, - { - "x": 95.29903040756061, - "y": -753.9118606635303, - "rotation": 6.010455581931975, - "action": "CARVE_LEFT" - }, - { - "x": 94.44467133758376, - "y": -757.6372141686109, - "rotation": 5.977482745128356, - "action": "CARVE_LEFT" - }, - { - "x": 93.49639445540741, - "y": -761.2832486200044, - "rotation": 5.944450681006459, - "action": "CARVE_LEFT" - }, - { - "x": 92.45383557313684, - "y": -764.8491706979327, - "rotation": 5.911362725977282, - "action": "CARVE_LEFT" - }, - { - "x": 91.31666711103027, - "y": -768.3342210974419, - "rotation": 5.8782222159111726, - "action": "CARVE_LEFT" - }, - { - "x": 90.08459821975504, - "y": -771.7376746859755, - "rotation": 5.845032485812625, - "action": "CARVE_LEFT" - }, - { - "x": 88.75737488773089, - "y": -775.0588406470436, - "rotation": 5.811796869495752, - "action": "CARVE_LEFT" - }, - { - "x": 87.33478003355997, - "y": -778.297062609982, - "rotation": 5.778518699260453, - "action": "CARVE_LEFT" - }, - { - "x": 85.8166335835491, - "y": -781.4517187658064, - "rotation": 5.745201305569316, - "action": "CARVE_LEFT" - }, - { - "x": 84.2027925343358, - "y": -784.5222219691626, - "rotation": 5.711848016725278, - "action": "CARVE_LEFT" - }, - { - "x": 82.493151000635, - "y": -787.5080198263897, - "rotation": 5.678462158550078, - "action": "CARVE_LEFT" - }, - { - "x": 80.68764024812975, - "y": -790.4085947697102, - "rotation": 5.645047054063534, - "action": "CARVE_LEFT" - }, - { - "x": 78.78622871153445, - "y": -793.2234641175704, - "rotation": 5.6116060231636675, - "action": "CARVE_LEFT" - }, - { - "x": 76.78892199786497, - "y": -795.9521801211594, - "rotation": 5.5781423823077105, - "action": "CARVE_LEFT" - }, - { - "x": 74.69576287495626, - "y": -798.5943299971395, - "rotation": 5.544659444194023, - "action": "CARVE_LEFT" - }, - { - "x": 72.50683124527272, - "y": -801.1495359466271, - "rotation": 5.511160517444951, - "action": "NOTHING" - }, - { - "x": 70.08437246002485, - "y": -803.4909909137807, - "rotation": 5.51465117594894, - "action": "NOTHING" - }, - { - "x": 67.67159083764614, - "y": -805.843926288844, - "rotation": 5.518141834452928, - "action": "NOTHING" - }, - { - "x": 65.26847641471572, - "y": -808.2083749769646, - "rotation": 5.5216324929569165, - "action": "NOTHING" - }, - { "x": 62.8750195706782, "y": -810.584370124923, "rotation": 5.525123151460905, "action": "NOTHING" }, - { - "x": 60.49121102704476, - "y": -812.9719451205297, - "rotation": 5.528613809964893, - "action": "NOTHING" - }, - { - "x": 58.11704184659615, - "y": -815.371133592023, - "rotation": 5.532104468468882, - "action": "NOTHING" - }, - { - "x": 55.75250343258733, - "y": -817.7819694074695, - "rotation": 5.53559512697287, - "action": "NOTHING" - }, - { - "x": 53.39758752795395, - "y": -820.2044866741642, - "rotation": 5.539085785476859, - "action": "NOTHING" - }, - { - "x": 51.05228621452054, - "y": -822.6387197380329, - "rotation": 5.542576443980847, - "action": "NOTHING" - }, - { - "x": 48.716591912210475, - "y": -825.0847031830368, - "rotation": 5.546067102484836, - "action": "NOTHING" - }, - { - "x": 46.390497378257656, - "y": -827.5424718305767, - "rotation": 5.549557760988824, - "action": "NOTHING" - }, - { "x": 44.07399570641997, "y": -830.0120607389, "rotation": 5.5530484194928125, "action": "NOTHING" }, - { - "x": 41.76708032619446, - "y": -832.4935052025086, - "rotation": 5.556539077996801, - "action": "NOTHING" - }, - { - "x": 39.46974500203424, - "y": -834.9868407515676, - "rotation": 5.560029736500789, - "action": "NOTHING" - }, - { - "x": 37.181983832567134, - "y": -837.4921031513165, - "rotation": 5.563520395004778, - "action": "NOTHING" - }, - { - "x": 34.90379124981608, - "y": -840.0093284014811, - "rotation": 5.567011053508766, - "action": "NOTHING" - }, - { - "x": 32.63516201842119, - "y": -842.5385527356863, - "rotation": 5.570501712012755, - "action": "NOTHING" - }, - { - "x": 30.376091234863598, - "y": -845.079812620871, - "rotation": 5.573992370516743, - "action": "NOTHING" - }, - { - "x": 28.126574326690974, - "y": -847.6331447567046, - "rotation": 5.577483029020732, - "action": "NOTHING" - }, - { - "x": 25.886607051744786, - "y": -850.1985860750035, - "rotation": 5.58097368752472, - "action": "NOTHING" - }, - { - "x": 23.656185497389252, - "y": -852.7761737391505, - "rotation": 5.5844643460287084, - "action": "NOTHING" - }, - { - "x": 21.435306079742002, - "y": -855.3659451435144, - "rotation": 5.587955004532697, - "action": "NOTHING" - }, - { - "x": 19.22396554290644, - "y": -857.9679379128715, - "rotation": 5.591445663036685, - "action": "NOTHING" - }, - { - "x": 17.02216095820582, - "y": -860.5821899018287, - "rotation": 5.594936321540674, - "action": "NOTHING" - }, - { - "x": 14.829889723418983, - "y": -863.2087391942466, - "rotation": 5.598426980044662, - "action": "NOTHING" - }, - { - "x": 12.647149562017821, - "y": -865.847624102666, - "rotation": 5.601917638548651, - "action": "NOTHING" - }, - { - "x": 10.47393852240641, - "y": -868.4988831677338, - "rotation": 5.605408297052639, - "action": "NOTHING" - }, - { - "x": 8.31025497716183, - "y": -871.162555157631, - "rotation": 5.6088989555566275, - "action": "NOTHING" - }, - { - "x": 6.1560976222766595, - "y": -873.8386790675029, - "rotation": 5.612389614060616, - "action": "NOTHING" - }, - { - "x": 4.011465476403163, - "y": -876.5272941188887, - "rotation": 5.615880272564604, - "action": "NOTHING" - }, - { - "x": 1.876357880099134, - "y": -879.228439759154, - "rotation": 5.619370931068593, - "action": "CARVE_RIGHT" - }, - { - "x": 0.052455571605928064, - "y": -882.2212007383187, - "rotation": 5.653585413806538, - "action": "CARVE_RIGHT" - }, - { - "x": -1.6736985344703454, - "y": -885.3083831272896, - "rotation": 5.687825218938794, - "action": "CARVE_RIGHT" - }, - { - "x": -3.302012147510595, - "y": -888.490523470637, - "rotation": 5.7220936487771095, - "action": "CARVE_RIGHT" - }, - { - "x": -4.832354338969329, - "y": -891.7681937036166, - "rotation": 5.756394002487931, - "action": "CARVE_RIGHT" - }, - { - "x": -6.2645555059906535, - "y": -895.1420012306218, - "rotation": 5.790729576420651, - "action": "CARVE_RIGHT" - }, - { - "x": -7.598407320210766, - "y": -898.6125890172362, - "rotation": 5.8251036644349865, - "action": "CARVE_RIGHT" - }, - { - "x": -8.83366266176769, - "y": -902.1806356958757, - "rotation": 5.8595195582275315, - "action": "NOTHING" - }, - { - "x": -10.196854034689814, - "y": -905.6371245161107, - "rotation": 5.86301021673152, - "action": "NOTHING" - }, - { - "x": -11.550707529235552, - "y": -909.1091951940172, - "rotation": 5.866500875235508, - "action": "NOTHING" - }, - { - "x": -12.89519956510098, - "y": -912.5969037456632, - "rotation": 5.869991533739497, - "action": "NOTHING" - }, - { - "x": -14.230306298536496, - "y": -916.1003063695199, - "rotation": 5.873482192243485, - "action": "NOTHING" - }, - { - "x": -15.556003622968433, - "y": -919.6194594459962, - "rotation": 5.876972850747474, - "action": "NOTHING" - }, - { - "x": -16.872267169619278, - "y": -923.1544195369752, - "rotation": 5.880463509251462, - "action": "NOTHING" - }, - { - "x": -18.179072308126504, - "y": -926.7052433853517, - "rotation": 5.8839541677554505, - "action": "NOTHING" - }, - { - "x": -19.476394147160036, - "y": -930.2719879145704, - "rotation": 5.887444826259439, - "action": "NOTHING" - }, - { - "x": -20.764207535038345, - "y": -933.8547102281658, - "rotation": 5.890935484763427, - "action": "NOTHING" - }, - { - "x": -22.04248706034314, - "y": -937.4534676093022, - "rotation": 5.894426143267416, - "action": "NOTHING" - }, - { - "x": -23.311207052532737, - "y": -941.0683175203155, - "rotation": 5.897916801771404, - "action": "NOTHING" - }, - { - "x": -24.570341582554015, - "y": -944.6993176022565, - "rotation": 5.901407460275393, - "action": "NOTHING" - }, - { - "x": -25.81986446345304, - "y": -948.3465256744341, - "rotation": 5.904898118779381, - "action": "NOTHING" - }, - { - "x": -27.059749250984318, - "y": -952.0099997339602, - "rotation": 5.90838877728337, - "action": "NOTHING" - }, - { - "x": -28.28996924421869, - "y": -955.6897979552956, - "rotation": 5.911879435787358, - "action": "NOTHING" - }, - { - "x": -29.510497486149866, - "y": -959.3859786897973, - "rotation": 5.9153700942913465, - "action": "NOTHING" - }, - { - "x": -30.721306764299626, - "y": -963.0986004652663, - "rotation": 5.918860752795335, - "action": "NOTHING" - }, - { - "x": -31.922369611321646, - "y": -966.8277219854964, - "rotation": 5.922351411299323, - "action": "NOTHING" - }, - { - "x": -33.113658305604005, - "y": -970.5734021298249, - "rotation": 5.925842069803312, - "action": "NOTHING" - }, - { - "x": -34.29514487187032, - "y": -974.3356999526833, - "rotation": 5.9293327283073, - "action": "NOTHING" - }, - { - "x": -35.46680108177957, - "y": -978.1146746831497, - "rotation": 5.932823386811289, - "action": "NOTHING" - }, - { - "x": -36.62859845452457, - "y": -981.9103857245021, - "rotation": 5.936314045315277, - "action": "NOTHING" - }, - { - "x": -37.780508257429084, - "y": -985.7228926537728, - "rotation": 5.939804703819266, - "action": "NOTHING" - }, - { - "x": -38.92250150654367, - "y": -989.5522552213033, - "rotation": 5.943295362323254, - "action": "NOTHING" - }, - { - "x": -40.05454896724012, - "y": -993.3985333503015, - "rotation": 5.9467860208272425, - "action": "NOTHING" - }, - { - "x": -41.17662115480465, - "y": -997.2617871363982, - "rotation": 5.950276679331231, - "action": "NOTHING" - }, - { - "x": -42.28868833502968, - "y": -1001.1420768472062, - "rotation": 5.953767337835219, - "action": "NOTHING" - }, - { - "x": -43.390720524804394, - "y": -1005.0394629218796, - "rotation": 5.957257996339208, - "action": "NOTHING" - }, - { - "x": -44.48268749270388, - "y": -1008.9540059706743, - "rotation": 5.960748654843196, - "action": "NOTHING" - }, - { - "x": -45.564558759577054, - "y": -1012.8857667745095, - "rotation": 5.964239313347185, - "action": "NOTHING" - }, - { - "x": -46.63630359913319, - "y": -1016.8348062845304, - "rotation": 5.967729971851173, - "action": "NOTHING" - }, - { - "x": -47.697891038527196, - "y": -1020.8011856216716, - "rotation": 5.971220630355162, - "action": "NOTHING" - }, - { - "x": -48.74928985894354, - "y": -1024.784966076222, - "rotation": 5.97471128885915, - "action": "CARVE_RIGHT" - }, - { - "x": -49.58563363388564, - "y": -1028.9756091564172, - "rotation": 6.010967779154576, - "action": "CARVE_RIGHT" - }, - { - "x": -50.311609752192226, - "y": -1033.2766536372983, - "rotation": 6.047280860284211, - "action": "CARVE_RIGHT" - }, - { - "x": -50.926722433655414, - "y": -1037.6890300709906, - "rotation": 6.08365398099693, - "action": "CARVE_RIGHT" - }, - { - "x": -51.43043244372225, - "y": -1042.2137092452028, - "rotation": 6.120090589704398, - "action": "CARVE_RIGHT" - }, - { - "x": -51.822156909852836, - "y": -1046.8517023993677, - "rotation": 6.156594134818853, - "action": "CARVE_RIGHT" - }, - { - "x": -52.101269121550615, - "y": -1051.6040614558215, - "rotation": 6.193168065090286, - "action": "CARVE_RIGHT" - }, - { - "x": -52.26709831403277, - "y": -1056.4718792660597, - "rotation": 6.22981582994304, - "action": "CARVE_RIGHT" - }, - { - "x": -52.31892943550211, - "y": -1061.4562898721053, - "rotation": 6.266540879811877, - "action": "CARVE_RIGHT" - }, - { - "x": -52.25600962333401, - "y": -1066.441405310136, - "rotation": 0.020161359297945936, - "action": "CARVE_RIGHT" - }, - { - "x": -52.077606214385234, - "y": -1071.3300507502734, - "rotation": 0.05704739355639698, - "action": "CARVE_RIGHT" - }, - { - "x": -51.78303186621009, - "y": -1076.1210767850257, - "rotation": 0.09400992432751584, - "action": "CARVE_RIGHT" - }, - { - "x": -51.37164480477792, - "y": -1080.8133761507154, - "rotation": 0.13104519980345988, - "action": "CARVE_RIGHT" - }, - { - "x": -50.84284905342104, - "y": -1085.4058839897198, - "rotation": 0.16814946781682497, - "action": "CARVE_RIGHT" - }, - { - "x": -50.196094642977286, - "y": -1089.8975780952078, - "rotation": 0.20531897620817136, - "action": "CARVE_RIGHT" - }, - { - "x": -49.43087780309922, - "y": -1094.287479138344, - "rotation": 0.24254997319288704, - "action": "CARVE_RIGHT" - }, - { - "x": -48.54674113470929, - "y": -1098.5746508779343, - "rotation": 0.27983870772735436, - "action": "CARVE_RIGHT" - }, - { - "x": -47.543273763587756, - "y": -1102.7582003524979, - "rotation": 0.31718142987438486, - "action": "CARVE_RIGHT" - }, - { - "x": -46.420111475087715, - "y": -1106.8372780547543, - "rotation": 0.3545743911678882, - "action": "CARVE_RIGHT" - }, - { - "x": -45.17693682997901, - "y": -1110.8110780885238, - "rotation": 0.39201384497674086, - "action": "CARVE_RIGHT" - }, - { - "x": -43.813479261430054, - "y": -1114.6788383080439, - "rotation": 0.4294960468678206, - "action": "CARVE_RIGHT" - }, - { - "x": -42.32951515314415, - "y": -1118.4398404397123, - "rotation": 0.46701725496817237, - "action": "CARVE_RIGHT" - }, - { - "x": -40.724867898674205, - "y": -1122.0934101862756, - "rotation": 0.5045737303262718, - "action": "NOTHING" - }, - { - "x": -38.952521071975795, - "y": -1125.5967527262976, - "rotation": 0.5010830718222832, - "action": "NOTHING" - }, - { - "x": -37.19078019767857, - "y": -1129.1150033441204, - "rotation": 0.4975924133182945, - "action": "NOTHING" - }, - { - "x": -35.4396569545541, - "y": -1132.6482103621352, - "rotation": 0.49410175481430585, - "action": "NOTHING" - }, - { - "x": -33.699163314211056, - "y": -1136.196422306363, - "rotation": 0.4906110963103172, - "action": "NOTHING" - }, - { - "x": -31.969311540406324, - "y": -1139.7596879059386, - "rotation": 0.4871204378063285, - "action": "NOTHING" - }, - { - "x": -30.250114188357713, - "y": -1143.3380560925948, - "rotation": 0.48362977930233986, - "action": "NOTHING" - }, - { - "x": -28.541584104058156, - "y": -1146.9315760001489, - "rotation": 0.4801391207983512, - "action": "NOTHING" - }, - { - "x": -26.843734423591425, - "y": -1150.5402969639904, - "rotation": 0.47664846229436253, - "action": "NOTHING" - }, - { - "x": -25.156578572449398, - "y": -1154.1642685205684, - "rotation": 0.47315780379037387, - "action": "NOTHING" - }, - { - "x": -23.480130264850825, - "y": -1157.8035404068823, - "rotation": 0.4696671452863852, - "action": "NOTHING" - }, - { - "x": -21.814403503061612, - "y": -1161.4581625599724, - "rotation": 0.46617648678239654, - "action": "NOTHING" - }, - { - "x": -20.159412576716615, - "y": -1165.1281851164113, - "rotation": 0.4626858282784079, - "action": "NOTHING" - }, - { - "x": -18.51517206214295, - "y": -1168.8136584117979, - "rotation": 0.4591951697744192, - "action": "NOTHING" - }, - { - "x": -16.881696821684788, - "y": -1172.5146329802515, - "rotation": 0.45570451127043055, - "action": "NOTHING" - }, - { - "x": -15.259002003029694, - "y": -1176.2311595539074, - "rotation": 0.4522138527664419, - "action": "NOTHING" - }, - { - "x": -13.647103038536413, - "y": -1179.9632890624139, - "rotation": 0.4487231942624532, - "action": "NOTHING" - }, - { - "x": -12.046015644564179, - "y": -1183.7110726324293, - "rotation": 0.44523253575846455, - "action": "NOTHING" - }, - { - "x": -10.455755820803518, - "y": -1187.4745615871223, - "rotation": 0.4417418772544759, - "action": "NOTHING" - }, - { - "x": -8.876339849608533, - "y": -1191.253807445671, - "rotation": 0.4382512187504872, - "action": "NOTHING" - }, - { - "x": -7.307784295330674, - "y": -1195.0488619227656, - "rotation": 0.43476056024649856, - "action": "NOTHING" - }, - { - "x": -5.750106003653996, - "y": -1198.8597769281096, - "rotation": 0.4312699017425099, - "action": "NOTHING" - }, - { - "x": -4.203322100931889, - "y": -1202.6866045659244, - "rotation": 0.42777924323852123, - "action": "NOTHING" - }, - { - "x": -2.6674499935252904, - "y": -1206.529397134454, - "rotation": 0.42428858473453257, - "action": "NOTHING" - }, - { - "x": -1.1425073671423698, - "y": -1210.3882071254711, - "rotation": 0.4207979262305439, - "action": "NOTHING" - }, - { - "x": 0.3714878138203195, - "y": -1214.2630872237842, - "rotation": 0.41730726772655524, - "action": "NOTHING" - }, - { - "x": 1.8745173069352203, - "y": -1218.1540903067457, - "rotation": 0.4138166092225666, - "action": "NOTHING" - }, - { - "x": 3.366562592399687, - "y": -1222.0612694437618, - "rotation": 0.4103259507185779, - "action": "NOTHING" - }, - { - "x": 4.847604873690441, - "y": -1225.9846778958029, - "rotation": 0.40683529221458925, - "action": "NOTHING" - }, - { - "x": 6.3176250782165715, - "y": -1229.9243691149152, - "rotation": 0.4033446337106006, - "action": "NOTHING" - }, - { - "x": 7.776603857971075, - "y": -1233.8803967437339, - "rotation": 0.3998539752066119, - "action": "NOTHING" - }, - { - "x": 9.224521590180956, - "y": -1237.852814614997, - "rotation": 0.39636331670262326, - "action": "NOTHING" - }, - { - "x": 10.661358377955864, - "y": -1241.8416767510607, - "rotation": 0.3928726581986346, - "action": "NOTHING" - }, - { - "x": 12.087094050935297, - "y": -1245.8470373634154, - "rotation": 0.38938199969464593, - "action": "NOTHING" - }, - { - "x": 13.501708165934364, - "y": -1249.8689508522034, - "rotation": 0.38589134119065727, - "action": "NOTHING" - }, - { - "x": 14.905180007588097, - "y": -1253.9074718057373, - "rotation": 0.3824006826866686, - "action": "CARVE_RIGHT" - }, - { - "x": 16.296455397068968, - "y": -1257.9623516592096, - "rotation": 0.42079792623054385, - "action": "CARVE_RIGHT" - }, - { - "x": 17.81597379620919, - "y": -1261.9030314219542, - "rotation": 0.4591951697744191, - "action": "CARVE_RIGHT" - }, - { - "x": 19.46379053186209, - "y": -1265.7289383538834, - "rotation": 0.49759241331829435, - "action": "CARVE_RIGHT" - }, - { - "x": 21.239924068882978, - "y": -1269.4395347851103, - "rotation": 0.5359896568621696, - "action": "CARVE_RIGHT" - }, - { - "x": 23.144356098744566, - "y": -1273.0343180322072, - "rotation": 0.5743869004060449, - "action": "CARVE_RIGHT" - }, - { - "x": 25.177031627952868, - "y": -1276.512820314653, - "rotation": 0.6127841439499202, - "action": "CARVE_RIGHT" - }, - { - "x": 27.337859066263906, - "y": -1279.8746086714664, - "rotation": 0.6511813874937955, - "action": "CARVE_RIGHT" - }, - { - "x": 29.62671031470171, - "y": -1283.1192848780279, - "rotation": 0.6895786310376708, - "action": "NOTHING" - }, - { - "x": 32.15802962460131, - "y": -1286.1416261304735, - "rotation": 0.6860879725336821, - "action": "NOTHING" - }, - { - "x": 34.67750982881917, - "y": -1289.1771447841584, - "rotation": 0.6825973140296935, - "action": "NOTHING" - }, - { - "x": 37.185160221814854, - "y": -1292.2258749122889, - "rotation": 0.6791066555257048, - "action": "NOTHING" - }, - { - "x": 39.680989755072225, - "y": -1295.2878508288186, - "rotation": 0.6756159970217162, - "action": "CARVE_LEFT" - }, - { - "x": 41.80040742370453, - "y": -1298.7004659898787, - "rotation": 0.6372187534778408, - "action": "CARVE_LEFT" - }, - { - "x": 43.79308473335131, - "y": -1302.2330526112337, - "rotation": 0.5988215099339655, - "action": "CARVE_LEFT" - }, - { - "x": 45.6590735985534, - "y": -1305.8860712425005, - "rotation": 0.5604242663900902, - "action": "CARVE_LEFT" - }, - { - "x": 47.39838938377927, - "y": -1309.6600153604422, - "rotation": 0.5220270228462149, - "action": "CARVE_LEFT" - }, - { - "x": 49.01101099092859, - "y": -1313.5554112895945, - "rotation": 0.4836297793023397, - "action": "CARVE_LEFT" - }, - { - "x": 50.496880946639216, - "y": -1317.5728181230697, - "rotation": 0.44523253575846444, - "action": "CARVE_LEFT" - }, - { - "x": 51.85590548939802, - "y": -1321.712827643542, - "rotation": 0.4068352922145892, - "action": "CARVE_LEFT" - }, - { - "x": 53.08795465645596, - "y": -1325.976064244408, - "rotation": 0.36843804867071395, - "action": "CARVE_LEFT" - }, - { - "x": 54.19286237054785, - "y": -1330.3631848511284, - "rotation": 0.3300408051268387, - "action": "CARVE_LEFT" - }, - { - "x": 55.17042652641718, - "y": -1334.8748788427442, - "rotation": 0.29164356158296345, - "action": "CARVE_LEFT" - }, - { - "x": 56.020409077146546, - "y": -1339.5118679735722, - "rotation": 0.2532463180390882, - "action": "NOTHING" - }, - { - "x": 56.95317271360957, - "y": -1344.0801057457095, - "rotation": 0.24975565953509954, - "action": "NOTHING" - }, - { - "x": 57.87424251527514, - "y": -1348.6671013880618, - "rotation": 0.24626500103111088, - "action": "NOTHING" - }, - { - "x": 58.78358582385422, - "y": -1353.2729175320105, - "rotation": 0.2427743425271222, - "action": "NOTHING" - }, - { - "x": 59.681169738241266, - "y": -1357.8976169754612, - "rotation": 0.23928368402313355, - "action": "NOTHING" - }, - { - "x": 60.56696111509102, - "y": -1362.5412626824145, - "rotation": 0.23579302551914488, - "action": "NOTHING" - }, - { - "x": 61.440926569393945, - "y": -1367.2039177825377, - "rotation": 0.23230236701515622, - "action": "NOTHING" - }, - { - "x": 62.30303247505042, - "y": -1371.8856455707382, - "rotation": 0.22881170851116756, - "action": "NOTHING" - }, - { - "x": 63.15324496544361, - "y": -1376.586509506737, - "rotation": 0.2253210500071789, - "action": "NOTHING" - }, - { - "x": 63.99152993401109, - "y": -1381.306573214644, - "rotation": 0.22183039150319023, - "action": "NOTHING" - }, - { - "x": 64.81785303481517, - "y": -1386.0459004825336, - "rotation": 0.21833973299920156, - "action": "CARVE_LEFT" - }, - { - "x": 65.43164756101751, - "y": -1390.9899998195167, - "rotation": 0.17994248945532632, - "action": "CARVE_LEFT" - }, - { - "x": 65.91521001368692, - "y": -1396.0631697195404, - "rotation": 0.14154524591145107, - "action": "CARVE_LEFT" - }, - { - "x": 66.26816896076772, - "y": -1401.2662521609507, - "rotation": 0.10314800236757582, - "action": "CARVE_LEFT" - }, - { - "x": 66.49011743258275, - "y": -1406.600121130791, - "rotation": 0.06475075882370057, - "action": "CARVE_LEFT" - }, - { - "x": 66.58061300706363, - "y": -1412.0656825474987, - "rotation": 0.026353515279825317, - "action": "CARVE_LEFT" - }, - { - "x": 66.53918029471473, - "y": -1417.5868226909606, - "rotation": 6.271141578915536, - "action": "CARVE_LEFT" - }, - { - "x": 66.3653535531008, - "y": -1422.9949943173897, - "rotation": 6.2327443353716605, - "action": "CARVE_LEFT" - }, - { - "x": 66.05870487988905, - "y": -1428.289270574204, - "rotation": 6.194347091827785, - "action": "CARVE_LEFT" - }, - { - "x": 65.61884412204218, - "y": -1433.4687605170373, - "rotation": 6.1559498482839095, - "action": "CARVE_LEFT" - }, - { - "x": 65.04541878521583, - "y": -1438.532609024128, - "rotation": 6.117552604740034, - "action": "CARVE_LEFT" - }, - { - "x": 64.33811394335989, - "y": -1443.4799967109013, - "rotation": 6.079155361196158, - "action": "CARVE_LEFT" - }, - { - "x": 63.49665214852313, - "y": -1448.3101398447407, - "rotation": 6.040758117652283, - "action": "CARVE_LEFT" - }, - { - "x": 62.52079334086098, - "y": -1453.0222902599526, - "rotation": 6.002360874108407, - "action": "CARVE_LEFT" - }, - { - "x": 61.410334758845686, - "y": -1457.6157352729203, - "rotation": 5.963963630564532, - "action": "CARVE_LEFT" - }, - { - "x": 60.165110849678655, - "y": -1462.0897975974494, - "rotation": 5.925566387020656, - "action": "CARVE_LEFT" - }, - { - "x": 58.78499317990448, - "y": -1466.4438352603008, - "rotation": 5.887169143476781, - "action": "CARVE_LEFT" - }, - { - "x": 57.26989034622617, - "y": -1470.6772415169153, - "rotation": 5.848771899932905, - "action": "CARVE_LEFT" - }, - { - "x": 55.619747886521154, - "y": -1474.7894447673266, - "rotation": 5.81037465638903, - "action": "CARVE_LEFT" - }, - { - "x": 53.83454819105773, - "y": -1478.779908472262, - "rotation": 5.771977412845154, - "action": "CARVE_LEFT" - }, - { - "x": 51.914310413911345, - "y": -1482.6481310694319, - "rotation": 5.733580169301279, - "action": "CARVE_LEFT" - }, - { - "x": 49.85909038458046, - "y": -1486.3936458900077, - "rotation": 5.695182925757403, - "action": "CARVE_LEFT" - }, - { - "x": 47.66898051980144, - "y": -1490.0160210752858, - "rotation": 5.656785682213528, - "action": "CARVE_LEFT" - }, - { - "x": 45.34410973556207, - "y": -1493.5148594935395, - "rotation": 5.618388438669652, - "action": "NOTHING" - }, - { - "x": 42.773580437821956, - "y": -1496.7882226186384, - "rotation": 5.6218790971736405, - "action": "NOTHING" - }, - { - "x": 40.21570164743718, - "y": -1500.0753285612327, - "rotation": 5.625369755677629, - "action": "NOTHING" - }, - { - "x": 37.67046375438961, - "y": -1503.3762114369313, - "rotation": 5.628860414181617, - "action": "NOTHING" - }, - { - "x": 35.13785749300637, - "y": -1506.6909056027569, - "rotation": 5.632351072685606, - "action": "NOTHING" - }, - { - "x": 32.61787394115458, - "y": -1510.0194456565391, - "rotation": 5.635841731189594, - "action": "NOTHING" - }, - { - "x": 30.110504519437765, - "y": -1513.36186643631, - "rotation": 5.639332389693583, - "action": "NOTHING" - }, - { - "x": 27.615740990394173, - "y": -1516.7182030197002, - "rotation": 5.642823048197571, - "action": "NOTHING" - }, - { - "x": 25.133575457696768, - "y": -1520.0884907233371, - "rotation": 5.64631370670156, - "action": "CARVE_RIGHT" - }, - { - "x": 23.033536113958544, - "y": -1523.8146944990992, - "rotation": 5.684710950245435, - "action": "CARVE_RIGHT" - }, - { - "x": 21.06732938533301, - "y": -1527.6674224511062, - "rotation": 5.723108193789311, - "action": "CARVE_RIGHT" - }, - { - "x": 19.23491486886604, - "y": -1531.64714581339, - "rotation": 5.761505437333186, - "action": "CARVE_RIGHT" - }, - { - "x": 17.536288691560713, - "y": -1535.7543687284572, - "rotation": 5.799902680877062, - "action": "CARVE_RIGHT" - }, - { - "x": 15.971483422908872, - "y": -1539.9896281679487, - "rotation": 5.838299924420937, - "action": "CARVE_RIGHT" - }, - { - "x": 14.540567987619173, - "y": -1544.353493853476, - "rotation": 5.876697167964813, - "action": "CARVE_RIGHT" - }, - { - "x": 13.243647578541266, - "y": -1548.8465681776388, - "rotation": 5.915094411508688, - "action": "CARVE_RIGHT" - }, - { - "x": 12.080863569785656, - "y": -1553.4694861252187, - "rotation": 5.953491655052564, - "action": "CARVE_RIGHT" - }, - { - "x": 11.05239343003882, - "y": -1558.222915194552, - "rotation": 5.991888898596439, - "action": "CARVE_RIGHT" - }, - { - "x": 10.158450636073145, - "y": -1563.107555319079, - "rotation": 6.030286142140315, - "action": "CARVE_RIGHT" - }, - { - "x": 9.399284586451323, - "y": -1568.124138789072, - "rotation": 6.06868338568419, - "action": "CARVE_RIGHT" - }, - { - "x": 8.775180515424704, - "y": -1573.2734301735381, - "rotation": 6.107080629228066, - "action": "CARVE_RIGHT" - }, - { - "x": 8.286459407025259, - "y": -1578.556226242299, - "rotation": 6.1454778727719415, - "action": "CARVE_RIGHT" - }, - { - "x": 7.933477909350672, - "y": -1583.9733558882479, - "rotation": 6.183875116315817, - "action": "CARVE_RIGHT" - }, - { - "x": 7.716628249042218, - "y": -1589.525680049779, - "rotation": 6.2222723598596925, - "action": "CARVE_RIGHT" - }, - { - "x": 7.636338145954927, - "y": -1595.2140916333967, - "rotation": 6.260669603403568, - "action": "CARVE_RIGHT" - }, - { - "x": 7.69306655489834, - "y": -1600.934034322245, - "rotation": 0.015881539767857333, - "action": "CARVE_RIGHT" - }, - { - "x": 7.887257290588308, - "y": -1606.5358809808522, - "rotation": 0.05427878331173259, - "action": "CARVE_RIGHT" - }, - { - "x": 8.219316385697079, - "y": -1612.0187257886835, - "rotation": 0.09267602685560784, - "action": "CARVE_RIGHT" - }, - { - "x": 8.68961218152221, - "y": -1617.3816987783807, - "rotation": 0.1310732703994831, - "action": "CARVE_RIGHT" - }, - { - "x": 9.29847541845149, - "y": -1622.6239657502824, - "rotation": 0.16947051394335835, - "action": "CARVE_RIGHT" - }, - { - "x": 10.046199326224317, - "y": -1627.7447281871341, - "rotation": 0.2078677574872336, - "action": "CARVE_RIGHT" - }, - { - "x": 10.933039713989944, - "y": -1632.7432231689909, - "rotation": 0.24626500103110885, - "action": "CARVE_RIGHT" - }, - { - "x": 11.959215060163064, - "y": -1637.6187232883099, - "rotation": 0.2846622445749841, - "action": "CARVE_RIGHT" - }, - { - "x": 13.12490660207715, - "y": -1642.3705365652338, - "rotation": 0.3230594881188594, - "action": "CARVE_RIGHT" - }, - { - "x": 14.430258425436001, - "y": -1646.998006363064, - "rotation": 0.3614567316627346, - "action": "NOTHING" - }, - { - "x": 15.868047803569413, - "y": -1651.5085581094736, - "rotation": 0.35796607315874596, - "action": "NOTHING" - }, - { - "x": 17.29321710920814, - "y": -1656.0365408122059, - "rotation": 0.3544754146547573, - "action": "NOTHING" - }, - { - "x": 18.705747528753108, - "y": -1660.5820082156592, - "rotation": 0.35098475615076863, - "action": "NOTHING" - }, - { - "x": 20.105619971448082, - "y": -1665.1450142554754, - "rotation": 0.34749409764677996, - "action": "NOTHING" - }, - { - "x": 21.492815070035196, - "y": -1669.72561305805, - "rotation": 0.3440034391427913, - "action": "NOTHING" - }, - { - "x": 22.867313181409003, - "y": -1674.323858940044, - "rotation": 0.34051278063880264, - "action": "NOTHING" - }, - { - "x": 24.22909438726908, - "y": -1678.9398064078973, - "rotation": 0.337022122134814, - "action": "NOTHING" - }, - { - "x": 25.57813849477117, - "y": -1683.5735101573428, - "rotation": 0.3335314636308253, - "action": "NOTHING" - }, - { - "x": 26.914425037176887, - "y": -1688.2250250729207, - "rotation": 0.33004080512683664, - "action": "NOTHING" - }, - { - "x": 28.237933274501945, - "y": -1692.8944062274968, - "rotation": 0.326550146622848, - "action": "NOTHING" - }, - { - "x": 29.548642194162962, - "y": -1697.5817088817782, - "rotation": 0.3230594881188593, - "action": "NOTHING" - }, - { - "x": 30.846530511622817, - "y": -1702.2869884838328, - "rotation": 0.31956882961487065, - "action": "NOTHING" - }, - { - "x": 32.13157667103456, - "y": -1707.0103006686095, - "rotation": 0.316078171110882, - "action": "NOTHING" - }, - { - "x": 33.40375884588389, - "y": -1711.751701257458, - "rotation": 0.3125875126068933, - "action": "NOTHING" - }, - { - "x": 34.66305493963021, - "y": -1716.511246257652, - "rotation": 0.30909685410290466, - "action": "NOTHING" - }, - { - "x": 35.9094425863462, - "y": -1721.2889918619112, - "rotation": 0.305606195598916, - "action": "NOTHING" - }, - { - "x": 37.14289915135607, - "y": -1726.0849944479266, - "rotation": 0.30211553709492733, - "action": "NOTHING" - }, - { - "x": 38.363401731872244, - "y": -1730.8993105778854, - "rotation": 0.29862487859093867, - "action": "NOTHING" - }, - { - "x": 39.570927157630756, - "y": -1735.7319969979974, - "rotation": 0.29513422008695, - "action": "NOTHING" - }, - { - "x": 40.76545199152515, - "y": -1740.5831106380228, - "rotation": 0.29164356158296134, - "action": "NOTHING" - }, - { - "x": 41.946952530238974, - "y": -1745.4527086108008, - "rotation": 0.2881529030789727, - "action": "NOTHING" - }, - { - "x": 43.11540480487689, - "y": -1750.340848211779, - "rotation": 0.284662244574984, - "action": "NOTHING" - }, - { - "x": 44.27078458159435, - "y": -1755.2475869185457, - "rotation": 0.28117158607099535, - "action": "NOTHING" - }, - { - "x": 45.41306736222586, - "y": -1760.1729823903597, - "rotation": 0.2776809275670067, - "action": "NOTHING" - }, - { - "x": 46.54222838491188, - "y": -1765.1170924676853, - "rotation": 0.274190269063018, - "action": "NOTHING" - }, - { - "x": 47.658242624724274, - "y": -1770.0799751717257, - "rotation": 0.27069961055902936, - "action": "NOTHING" - }, - { - "x": 48.76108479429039, - "y": -1775.061688703958, - "rotation": 0.2672089520550407, - "action": "NOTHING" - }, - { - "x": 49.85072934441575, - "y": -1780.06229144567, - "rotation": 0.26371829355105203, - "action": "NOTHING" - }, - { - "x": 50.92715046470532, - "y": -1785.081841957498, - "rotation": 0.26022763504706337, - "action": "NOTHING" - }, - { - "x": 51.99032208418345, - "y": -1790.1203989789642, - "rotation": 0.2567369765430747, - "action": "NOTHING" - }, - { - "x": 53.04021787191233, - "y": -1795.1780214280172, - "rotation": 0.25324631803908604, - "action": "NOTHING" - }, - { - "x": 54.07681123760919, - "y": -1800.2547684005726, - "rotation": 0.24975565953509737, - "action": "NOTHING" - }, - { - "x": 55.10007533226201, - "y": -1805.3506991700544, - "rotation": 0.2462650010311087, - "action": "CARVE_LEFT" - }, - { - "x": 55.87827635093948, - "y": -1810.6801830923127, - "rotation": 0.20786775748723346, - "action": "CARVE_LEFT" - }, - { - "x": 56.51347761064391, - "y": -1816.1492184721671, - "rotation": 0.16947051394335821, - "action": "CARVE_LEFT" - }, - { - "x": 57.005380207625045, - "y": -1821.7585825459907, - "rotation": 0.13107327039948297, - "action": "CARVE_LEFT" - }, - { - "x": 57.353649512709914, - "y": -1827.509084728399, - "rotation": 0.09267602685560772, - "action": "CARVE_LEFT" - }, - { - "x": 57.557915256974326, - "y": -1833.4015665345464, - "rotation": 0.05427878331173246, - "action": "CARVE_LEFT" - }, - { - "x": 57.617771617221706, - "y": -1839.4369015025973, - "rotation": 0.01588153976785721, - "action": "CARVE_LEFT" - }, - { - "x": 57.532785689046214, - "y": -1845.4580039758666, - "rotation": 6.260669603403568, - "action": "CARVE_LEFT" - }, - { - "x": 57.30254806151177, - "y": -1851.3531201611295, - "rotation": 6.2222723598596925, - "action": "CARVE_LEFT" - }, - { - "x": 56.9266870148077, - "y": -1857.1213772291953, - "rotation": 6.183875116315817, - "action": "CARVE_LEFT" - }, - { - "x": 56.40486842979566, - "y": -1862.7619381178708, - "rotation": 6.1454778727719415, - "action": "CARVE_LEFT" - }, - { - "x": 55.73679569776009, - "y": -1868.274001446682, - "rotation": 6.107080629228066, - "action": "CARVE_LEFT" - }, - { - "x": 54.92220963036167, - "y": -1873.6568014317882, - "rotation": 6.06868338568419, - "action": "CARVE_LEFT" - }, - { - "x": 53.960888369793516, - "y": -1878.9096078010875, - "rotation": 6.030286142140315, - "action": "CARVE_LEFT" - }, - { - "x": 52.85264729913946, - "y": -1884.0317257095107, - "rotation": 5.991888898596439, - "action": "CARVE_LEFT" - }, - { - "x": 51.597338952934194, - "y": -1889.0224956545064, - "rotation": 5.953491655052564, - "action": "CARVE_LEFT" - }, - { - "x": 50.19485292792464, - "y": -1893.8812933917152, - "rotation": 5.915094411508688, - "action": "CARVE_LEFT" - }, - { - "x": 48.64511579403229, - "y": -1898.6075298508329, - "rotation": 5.876697167964813, - "action": "CARVE_LEFT" - }, - { - "x": 46.948091005515934, - "y": -1903.2006510516626, - "rotation": 5.838299924420937, - "action": "CARVE_LEFT" - }, - { - "x": 45.103778812334454, - "y": -1907.6601380203551, - "rotation": 5.799902680877062, - "action": "CARVE_LEFT" - }, - { - "x": 43.112216171709186, - "y": -1911.9855067058365, - "rotation": 5.761505437333186, - "action": "CARVE_LEFT" - }, - { - "x": 40.97347665988547, - "y": -1916.1763078964239, - "rotation": 5.723108193789311, - "action": "CARVE_LEFT" - }, - { - "x": 38.68767038409286, - "y": -1920.232127136628, - "rotation": 5.684710950245435, - "action": "CARVE_LEFT" - }, - { - "x": 36.254943894703715, - "y": -1924.1525846441418, - "rotation": 5.64631370670156, - "action": "CARVE_LEFT" - }, - { - "x": 33.67548009758958, - "y": -1927.937335227017, - "rotation": 5.607916463157684, - "action": "CARVE_LEFT" - }, - { - "x": 30.949498166675074, - "y": -1931.5860682010239, - "rotation": 5.569519219613809, - "action": "CARVE_LEFT" - }, - { - "x": 28.07725345668876, - "y": -1935.098507307199, - "rotation": 5.531121976069933, - "action": "NOTHING" - }, - { - "x": 24.90074335740656, - "y": -1938.3291020567024, - "rotation": 5.5346126345739215, - "action": "NOTHING" - }, - { - "x": 21.739081593195028, - "y": -1941.57337499777, - "rotation": 5.53810329307791, - "action": "NOTHING" - }, - { - "x": 18.592243967852806, - "y": -1944.831350519659, - "rotation": 5.541593951581898, - "action": "NOTHING" - }, - { - "x": 15.460206664833114, - "y": -1948.1030532789302, - "rotation": 5.545084610085887, - "action": "NOTHING" - }, - { - "x": 12.342946246358578, - "y": -1951.3885081987814, - "rotation": 5.548575268589875, - "action": "NOTHING" - }, - { - "x": 9.240439652538026, - "y": -1954.68774046838, - "rotation": 5.552065927093864, - "action": "NOTHING" - }, - { - "x": 6.152664200485237, - "y": -1958.0007755421984, - "rotation": 5.555556585597852, - "action": "NOTHING" - }, - { - "x": 3.0795975834396394, - "y": -1961.3276391393506, - "rotation": 5.559047244101841, - "action": "NOTHING" - }, - { - "x": 0.021217869888950247, - "y": -1964.6683572429306, - "rotation": 5.562537902605829, - "action": "NOTHING" - }, - { - "x": -3.022496497306245, - "y": -1968.0229560993516, - "rotation": 5.5660285611098175, - "action": "NOTHING" - }, - { - "x": -6.051566701785978, - "y": -1971.3914622176878, - "rotation": 5.569519219613806, - "action": "NOTHING" - }, - { - "x": -9.06601355456245, - "y": -1974.7739023690165, - "rotation": 5.573009878117794, - "action": "NOTHING" - }, - { - "x": -12.06585749488965, - "y": -1978.1703035857622, - "rotation": 5.576500536621783, - "action": "NOTHING" - }, - { - "x": -15.051118591131072, - "y": -1981.5806931610437, - "rotation": 5.579991195125771, - "action": "NOTHING" - }, - { - "x": -18.021816541625476, - "y": -1985.0050986480196, - "rotation": 5.58348185362976, - "action": "NOTHING" - }, - { - "x": -20.977970675550782, - "y": -1988.4435478592384, - "rotation": 5.586972512133748, - "action": "NOTHING" - }, - { - "x": -23.919599953786, - "y": -1991.8960688659877, - "rotation": 5.590463170637737, - "action": "NOTHING" - }, - { - "x": -26.846722969771303, - "y": -1995.3626899976468, - "rotation": 5.593953829141725, - "action": "NOTHING" - }, - { - "x": -29.75935795036615, - "y": -1998.8434398410395, - "rotation": 5.5974444876457135, - "action": "NOTHING" - }, - { - "x": -32.65752275670555, - "y": -2002.338347239789, - "rotation": 5.600935146149702, - "action": "CARVE_RIGHT" - }, - { - "x": -35.119300035150545, - "y": -2006.2378883769188, - "rotation": 5.639332389693577, - "action": "CARVE_RIGHT" - }, - { - "x": -37.43467105876712, - "y": -2010.2740743788145, - "rotation": 5.677729633237453, - "action": "CARVE_RIGHT" - }, - { - "x": -39.60376377930087, - "y": -2014.4472981546392, - "rotation": 5.7161268767813285, - "action": "CARVE_RIGHT" - }, - { - "x": -41.62666939599493, - "y": -2018.757985723161, - "rotation": 5.754524120325204, - "action": "CARVE_RIGHT" - }, - { - "x": -43.503442443575985, - "y": -2023.2065961329427, - "rotation": 5.7929213638690795, - "action": "CARVE_RIGHT" - }, - { - "x": -45.23410088004255, - "y": -2027.7936213827084, - "rotation": 5.831318607412955, - "action": "CARVE_RIGHT" - }, - { - "x": -46.81862617425601, - "y": -2032.519586341893, - "rotation": 5.869715850956831, - "action": "CARVE_RIGHT" - }, - { - "x": -48.25696339333487, - "y": -2037.3850486713693, - "rotation": 5.908113094500706, - "action": "CARVE_RIGHT" - }, - { - "x": -49.549021289852575, - "y": -2042.3905987443538, - "rotation": 5.946510338044582, - "action": "CARVE_RIGHT" - }, - { - "x": -50.69467238883937, - "y": -2047.536859567492, - "rotation": 5.984907581588457, - "action": "CARVE_RIGHT" - }, - { - "x": -51.69375307458864, - "y": -2052.824486702121, - "rotation": 6.023304825132333, - "action": "CARVE_RIGHT" - }, - { - "x": -52.54606367726808, - "y": -2058.254168185709, - "rotation": 6.061702068676208, - "action": "NOTHING" - }, - { - "x": -53.47918313285845, - "y": -2063.6159183668815, - "rotation": 6.065192727180197, - "action": "NOTHING" - }, - { - "x": -54.39838223600023, - "y": -2068.997483734412, - "rotation": 6.068683385684185, - "action": "NOTHING" - }, - { - "x": -55.30363270377869, - "y": -2074.398924676104, - "rotation": 6.0721740441881735, - "action": "NOTHING" - }, - { - "x": -56.194905998256274, - "y": -2079.8203017543315, - "rotation": 6.075664702692162, - "action": "NOTHING" - }, - { - "x": -57.072173327079156, - "y": -2085.2616757055916, - "rotation": 6.07915536119615, - "action": "CARVE_RIGHT" - }, - { - "x": -57.713826925639516, - "y": -2090.928039586759, - "rotation": 6.117552604740026, - "action": "CARVE_RIGHT" - }, - { - "x": -58.207308457739316, - "y": -2096.7389299353235, - "rotation": 6.1559498482839015, - "action": "CARVE_RIGHT" - }, - { - "x": -58.5522970905167, - "y": -2102.695143957886, - "rotation": 6.194347091827777, - "action": "CARVE_RIGHT" - }, - { - "x": -58.74843631309305, - "y": -2108.7975109959975, - "rotation": 6.2327443353716525, - "action": "CARVE_RIGHT" - }, - { - "x": -58.79533402214484, - "y": -2115.0468924485463, - "rotation": 6.271141578915528, - "action": "CARVE_RIGHT" - }, - { - "x": -58.692574098153, - "y": -2121.2531702579927, - "rotation": 0.02635351527981733, - "action": "CARVE_RIGHT" - }, - { - "x": -58.43976807844795, - "y": -2127.328608276857, - "rotation": 0.06475075882369258, - "action": "CARVE_RIGHT" - }, - { - "x": -58.03656513606211, - "y": -2133.2723537668176, - "rotation": 0.10314800236756783, - "action": "CARVE_RIGHT" - }, - { - "x": -57.482651989408524, - "y": -2139.0835897040124, - "rotation": 0.14154524591144307, - "action": "CARVE_RIGHT" - }, - { - "x": -56.777752812162625, - "y": -2144.7615346938846, - "rotation": 0.17994248945531832, - "action": "CARVE_RIGHT" - }, - { - "x": -55.921629143346806, - "y": -2150.3054428862197, - "rotation": 0.21833973299919357, - "action": "CARVE_RIGHT" - }, - { - "x": -54.914079797617326, - "y": -2155.714603890375, - "rotation": 0.2567369765430688, - "action": "CARVE_RIGHT" - }, - { - "x": -53.754940775753134, - "y": -2160.9883426906977, - "rotation": 0.29513422008694407, - "action": "CARVE_RIGHT" - }, - { - "x": -52.444085175346125, - "y": -2166.1260195621308, - "rotation": 0.3335314636308193, - "action": "CARVE_RIGHT" - }, - { - "x": -50.98142310169247, - "y": -2171.1270299860116, - "rotation": 0.37192870717469456, - "action": "CARVE_RIGHT" - }, - { - "x": -49.36690157888452, - "y": -2175.9908045660577, - "rotation": 0.4103259507185698, - "action": "CARVE_RIGHT" - }, - { - "x": -47.60050446110289, - "y": -2180.71680894454, - "rotation": 0.44872319426244506, - "action": "CARVE_RIGHT" - }, - { - "x": -45.682252344108214, - "y": -2185.304543718645, - "rotation": 0.4871204378063203, - "action": "CARVE_RIGHT" - }, - { - "x": -43.61220247693232, - "y": -2189.753544357025, - "rotation": 0.5255176813501956, - "action": "CARVE_RIGHT" - }, - { - "x": -41.390448673768155, - "y": -2194.063381116534, - "rotation": 0.5639149248940709, - "action": "CARVE_RIGHT" - }, - { - "x": -39.017121226058215, - "y": -2198.2336589591514, - "rotation": 0.6023121684379462, - "action": "CARVE_RIGHT" - }, - { - "x": -36.492386814780964, - "y": -2202.2640174690932, - "rotation": 0.6407094119818215, - "action": "CARVE_RIGHT" - }, - { - "x": -33.81644842293485, - "y": -2206.1541307701063, - "rotation": 0.6791066555256968, - "action": "CARVE_RIGHT" - }, - { - "x": -30.989545248219443, - "y": -2209.9037074429502, - "rotation": 0.7175038990695721, - "action": "NOTHING" - }, - { - "x": -27.86382585232826, - "y": -2213.376596032338, - "rotation": 0.7140132405655835, - "action": "NOTHING" - }, - { - "x": -24.75336775410641, - "y": -2216.8636557339, - "rotation": 0.7105225820615948, - "action": "NOTHING" - }, - { - "x": -21.65814849657984, - "y": -2220.364912348303, - "rotation": 0.7070319235576061, - "action": "NOTHING" - }, - { - "x": -18.57814599882176, - "y": -2223.880391940535, - "rotation": 0.7035412650536175, - "action": "NOTHING" - }, - { - "x": -15.513338555074819, - "y": -2227.4101208392462, - "rotation": 0.7000506065496288, - "action": "NOTHING" - }, - { - "x": -12.46370483387524, - "y": -2230.9541256360862, - "rotation": 0.6965599480456401, - "action": "NOTHING" - }, - { - "x": -9.429223877178895, - "y": -2234.512433185046, - "rotation": 0.6930692895416515, - "action": "NOTHING" - }, - { - "x": -6.4098750994893035, - "y": -2238.085070601801, - "rotation": 0.6895786310376628, - "action": "NOTHING" - }, - { - "x": -3.4056382869875623, - "y": -2241.672065263055, - "rotation": 0.6860879725336742, - "action": "NOTHING" - }, - { - "x": -0.41649359666421004, - "y": -2245.2734448058873, - "rotation": 0.6825973140296855, - "action": "NOTHING" - }, - { - "x": 2.5575784445469973, - "y": -2248.8892371270967, - "rotation": 0.6791066555256968, - "action": "NOTHING" - }, - { - "x": 5.516596940633392, - "y": -2252.5194703825537, - "rotation": 0.6756159970217082, - "action": "NOTHING" - }, - { - "x": 8.460580627365784, - "y": -2256.1641729865496, - "rotation": 0.6721253385177195, - "action": "NOTHING" - }, - { - "x": 11.389547873158946, - "y": -2259.8233736111474, - "rotation": 0.6686346800137308, - "action": "NOTHING" - }, - { - "x": 14.303516679930185, - "y": -2263.497101185537, - "rotation": 0.6651440215097422, - "action": "NOTHING" - }, - { - "x": 17.202504683956025, - "y": -2267.1853848953874, - "rotation": 0.6616533630057535, - "action": "NOTHING" - }, - { - "x": 20.086529156726993, - "y": -2270.8882541822054, - "rotation": 0.6581627045017648, - "action": "NOTHING" - }, - { - "x": 22.95560700580049, - "y": -2274.605738742692, - "rotation": 0.6546720459977762, - "action": "NOTHING" - }, - { - "x": 25.80975477565181, - "y": -2278.3378685281027, - "rotation": 0.6511813874937875, - "action": "NOTHING" - }, - { - "x": 28.648988648523243, - "y": -2282.0846737436063, - "rotation": 0.6476907289897988, - "action": "NOTHING" - }, - { - "x": 31.47332444527131, - "y": -2285.8461848476495, - "rotation": 0.6442000704858102, - "action": "NOTHING" - }, - { - "x": 34.28277762621212, - "y": -2289.622432551319, - "rotation": 0.6407094119818215, - "action": "NOTHING" - }, - { - "x": 37.077363291964886, - "y": -2293.4134478177066, - "rotation": 0.6372187534778329, - "action": "NOTHING" - }, - { - "x": 39.85709618429348, - "y": -2297.219261861277, - "rotation": 0.6337280949738442, - "action": "NOTHING" - }, - { - "x": 42.621990686946255, - "y": -2301.039906147235, - "rotation": 0.6302374364698555, - "action": "NOTHING" - }, - { - "x": 45.37206082649388, - "y": -2304.8754123908943, - "rotation": 0.6267467779658669, - "action": "NOTHING" - }, - { - "x": 48.10732027316541, - "y": -2308.7258125570506, - "rotation": 0.6232561194618782, - "action": "NOTHING" - }, - { - "x": 50.82778234168248, - "y": -2312.591138859352, - "rotation": 0.6197654609578895, - "action": "NOTHING" - }, - { - "x": 53.53345999209159, - "y": -2316.4714237596745, - "rotation": 0.6162748024539009, - "action": "CARVE_LEFT" - }, - { - "x": 55.81723572682345, - "y": -2320.7434389524688, - "rotation": 0.5778775589100256, - "action": "CARVE_LEFT" - }, - { - "x": 57.94979668726354, - "y": -2325.1570595843777, - "rotation": 0.5394803153661503, - "action": "CARVE_LEFT" - }, - { - "x": 59.93122551255541, - "y": -2329.7127196058427, - "rotation": 0.501083071822275, - "action": "CARVE_LEFT" - }, - { - "x": 61.761568192600166, - "y": -2334.4108859829457, - "rotation": 0.4626858282783997, - "action": "CARVE_LEFT" - }, - { - "x": 63.44083415581759, - "y": -2339.252058617804, - "rotation": 0.42428858473452447, - "action": "CARVE_LEFT" - }, - { - "x": 64.96899635670994, - "y": -2344.236770269142, - "rotation": 0.3858913411906492, - "action": "CARVE_LEFT" - }, - { - "x": 66.34599136322903, - "y": -2349.365586473046, - "rotation": 0.34749409764677397, - "action": "CARVE_LEFT" - }, - { - "x": 67.571719443947, - "y": -2354.6391054638925, - "rotation": 0.3090968541028987, - "action": "CARVE_LEFT" - }, - { - "x": 68.64604465503106, - "y": -2360.0579580954613, - "rotation": 0.2706996105590235, - "action": "CARVE_LEFT" - }, - { - "x": 69.56879492702285, - "y": -2365.622807762221, - "rotation": 0.23230236701514823, - "action": "CARVE_LEFT" - }, - { - "x": 70.33976215142262, - "y": -2371.334350320795, - "rotation": 0.19390512347127298, - "action": "CARVE_LEFT" - }, - { - "x": 70.95870226707885, - "y": -2377.193314011605, - "rotation": 0.15550787992739773, - "action": "CARVE_LEFT" - }, - { - "x": 71.42533534638356, - "y": -2383.2004593806905, - "rotation": 0.11711063638352248, - "action": "CARVE_LEFT" - }, - { - "x": 71.73934568127387, - "y": -2389.3565792017057, - "rotation": 0.07871339283964723, - "action": "CARVE_LEFT" - }, - { - "x": 71.90038186904006, - "y": -2395.66249839809, - "rotation": 0.04031614929577198, - "action": "CARVE_LEFT" - }, - { - "x": 71.90805689794077, - "y": -2402.119073965418, - "rotation": 0.001918905751896724, - "action": "CARVE_LEFT" - }, - { - "x": 71.76197024900401, - "y": -2408.455668318116, - "rotation": 6.246706969387608, - "action": "CARVE_LEFT" - }, - { - "x": 71.4617577843399, - "y": -2414.657203221808, - "rotation": 6.2083097258437325, - "action": "CARVE_LEFT" - }, - { - "x": 71.00709293906651, - "y": -2420.7228491989185, - "rotation": 6.169912482299857, - "action": "CARVE_LEFT" - }, - { - "x": 70.39768663113539, - "y": -2426.6518124269846, - "rotation": 6.1315152387559815, - "action": "CARVE_LEFT" - }, - { - "x": 69.63328717135987, - "y": -2432.4433346536402, - "rotation": 6.093117995212106, - "action": "CARVE_LEFT" - }, - { - "x": 68.71368017364588, - "y": -2438.096693111792, - "rotation": 6.05472075166823, - "action": "CARVE_LEFT" - }, - { - "x": 67.63868846542479, - "y": -2443.611200434985, - "rotation": 6.016323508124355, - "action": "CARVE_LEFT" - }, - { - "x": 66.40817199828778, - "y": -2448.9862045729597, - "rotation": 5.977926264580479, - "action": "CARVE_LEFT" - }, - { - "x": 65.02202775882138, - "y": -2454.2210887073934, - "rotation": 5.939529021036604, - "action": "CARVE_LEFT" - }, - { - "x": 63.48018967964374, - "y": -2459.3152711678376, - "rotation": 5.901131777492728, - "action": "CARVE_LEFT" - }, - { - "x": 61.78262855064117, - "y": -2464.2682053478375, - "rotation": 5.862734533948853, - "action": "CARVE_LEFT" - }, - { - "x": 59.92935193040449, - "y": -2469.079379621243, - "rotation": 5.824337290404977, - "action": "CARVE_LEFT" - }, - { - "x": 57.92040405786483, - "y": -2473.7483172587076, - "rotation": 5.785940046861102, - "action": "CARVE_LEFT" - }, - { - "x": 55.75586576412838, - "y": -2478.2745763443722, - "rotation": 5.747542803317226, - "action": "CARVE_LEFT" - }, - { - "x": 53.435854384509724, - "y": -2482.657749692738, - "rotation": 5.709145559773351, - "action": "CARVE_LEFT" - }, - { - "x": 50.96052367076327, - "y": -2486.897464765724, - "rotation": 5.670748316229475, - "action": "CARVE_LEFT" - }, - { - "x": 48.33006370351237, - "y": -2490.9933835899137, - "rotation": 5.6323510726856, - "action": "CARVE_LEFT" - }, - { - "x": 45.54470080487573, - "y": -2494.9452026739827, - "rotation": 5.593953829141724, - "action": "CARVE_LEFT" - }, - { - "x": 42.60469745129063, - "y": -2498.7526529263155, - "rotation": 5.555556585597849, - "action": "CARVE_LEFT" - }, - { - "x": 39.5103521865326, - "y": -2502.4154995728063, - "rotation": 5.517159342053973, - "action": "NOTHING" - }, - { - "x": 36.08835323033699, - "y": -2505.7740184594786, - "rotation": 5.5206500005579615, - "action": "NOTHING" - }, - { - "x": 32.68248694673464, - "y": -2509.1465786609165, - "rotation": 5.52414065906195, - "action": "NOTHING" - }, - { - "x": 29.29272395269761, - "y": -2512.5332012507006, - "rotation": 5.527631317565938, - "action": "NOTHING" - }, - { - "x": 25.919035257751055, - "y": -2515.933907578982, - "rotation": 5.531121976069927, - "action": "NOTHING" - }, - { - "x": 22.561392263058433, - "y": -2519.348719271793, - "rotation": 5.534612634573915, - "action": "NOTHING" - }, - { - "x": 19.219766760508733, - "y": -2522.777658230356, - "rotation": 5.538103293077904, - "action": "NOTHING" - }, - { - "x": 15.894130931805723, - "y": -2526.2207466303976, - "rotation": 5.541593951581892, - "action": "NOTHING" - }, - { - "x": 12.584457347559214, - "y": -2529.6780069214633, - "rotation": 5.545084610085881, - "action": "NOTHING" - }, - { - "x": 9.290718966378325, - "y": -2533.1494618262313, - "rotation": 5.548575268589869, - "action": "NOTHING" - }, - { - "x": 6.012889133966766, - "y": -2536.635134339832, - "rotation": 5.5520659270938575, - "action": "NOTHING" - }, - { - "x": 2.7509415822200993, - "y": -2540.135047729165, - "rotation": 5.555556585597846, - "action": "NOTHING" - }, - { - "x": -0.4951495716749834, - "y": -2543.64922553222, - "rotation": 5.559047244101834, - "action": "NOTHING" - }, - { - "x": -3.7254098261394017, - "y": -2547.1776915574005, - "rotation": 5.562537902605823, - "action": "NOTHING" - }, - { - "x": -6.939864296098442, - "y": -2550.7204698828446, - "rotation": 5.566028561109811, - "action": "NOTHING" - }, - { - "x": -10.13853771387652, - "y": -2554.2775848557526, - "rotation": 5.5695192196138, - "action": "NOTHING" - }, - { - "x": -13.321454430089979, - "y": -2557.8490610917124, - "rotation": 5.573009878117788, - "action": "NOTHING" - }, - { - "x": -16.488638414537903, - "y": -2561.434923474028, - "rotation": 5.576500536621777, - "action": "NOTHING" - }, - { - "x": -19.64011325709096, - "y": -2565.0351971530495, - "rotation": 5.579991195125765, - "action": "NOTHING" - }, - { - "x": -22.775902168578284, - "y": -2568.649907545504, - "rotation": 5.5834818536297535, - "action": "NOTHING" - }, - { - "x": -25.896027981672404, - "y": -2572.279080333829, - "rotation": 5.586972512133742, - "action": "NOTHING" - }, - { - "x": -29.000513151772182, - "y": -2575.9227414655065, - "rotation": 5.59046317063773, - "action": "NOTHING" - }, - { - "x": -32.08937975788385, - "y": -2579.5809171523997, - "rotation": 5.593953829141719, - "action": "NOTHING" - }, - { - "x": -35.16264950350003, - "y": -2583.253633870089, - "rotation": 5.597444487645707, - "action": "NOTHING" - }, - { - "x": -38.22034371747688, - "y": -2586.940918357212, - "rotation": 5.600935146149696, - "action": "NOTHING" - }, - { - "x": -41.26248335490926, - "y": -2590.6427976148047, - "rotation": 5.604425804653684, - "action": "NOTHING" - }, - { - "x": -44.28908899800395, - "y": -2594.359298905642, - "rotation": 5.607916463157673, - "action": "CARVE_RIGHT" - }, - { - "x": -46.85816502062372, - "y": -2598.499490342774, - "rotation": 5.646313706701548, - "action": "CARVE_RIGHT" - }, - { - "x": -49.272559604288446, - "y": -2602.78347018375, - "rotation": 5.684710950245424, - "action": "CARVE_RIGHT" - }, - { - "x": -51.53242346225501, - "y": -2607.211611195862, - "rotation": 5.723108193789299, - "action": "CARVE_RIGHT" - }, - { - "x": -53.63787049216467, - "y": -2611.7843193127665, - "rotation": 5.761505437333175, - "action": "CARVE_RIGHT" - }, - { - "x": -55.58897786418248, - "y": -2616.5020335545314, - "rotation": 5.79990268087705, - "action": "CARVE_RIGHT" - }, - { - "x": -57.38578610893869, - "y": -2621.365225947867, - "rotation": 5.838299924420926, - "action": "CARVE_RIGHT" - }, - { - "x": -59.028299205272546, - "y": -2626.374401446536, - "rotation": 5.876697167964801, - "action": "CARVE_RIGHT" - }, - { - "x": -60.51648466777898, - "y": -2631.5300978519413, - "rotation": 5.915094411508677, - "action": "CARVE_RIGHT" - }, - { - "x": -61.850273634158484, - "y": -2636.8328857338956, - "rotation": 5.953491655052552, - "action": "CARVE_RIGHT" - }, - { - "x": -63.0295609523707, - "y": -2642.2833683515682, - "rotation": 5.991888898596428, - "action": "CARVE_RIGHT" - }, - { - "x": -64.05420526759215, - "y": -2647.8821815746114, - "rotation": 6.030286142140303, - "action": "CARVE_RIGHT" - }, - { - "x": -64.92402910897844, - "y": -2653.6299938044626, - "rotation": 6.068683385684179, - "action": "CARVE_RIGHT" - }, - { - "x": -65.63881897623146, - "y": -2659.5275058958273, - "rotation": 6.107080629228054, - "action": "CARVE_RIGHT" - }, - { - "x": -66.19832542597194, - "y": -2665.5754510783368, - "rotation": 6.14547787277193, - "action": "CARVE_RIGHT" - }, - { - "x": -66.60226315791779, - "y": -2671.774594878384, - "rotation": 6.183875116315805, - "action": "CARVE_RIGHT" - }, - { - "x": -66.85031110086868, - "y": -2678.125735041136, - "rotation": 6.222272359859681, - "action": "CARVE_RIGHT" - }, - { - "x": -66.94211249849725, - "y": -2684.6297014527204, - "rotation": 6.2606696034035565, - "action": "CARVE_RIGHT" - }, - { - "x": -66.8772791680687, - "y": -2691.16686583448, - "rotation": 0.015881539767845787, - "action": "CARVE_RIGHT" - }, - { - "x": -66.65543787594825, - "y": -2697.5663518686147, - "rotation": 0.05427878331172104, - "action": "CARVE_RIGHT" - }, - { - "x": -66.27625298000943, - "y": -2703.827321583133, - "rotation": 0.0926760268555963, - "action": "CARVE_RIGHT" - }, - { - "x": -65.73942633942231, - "y": -2709.948972678414, - "rotation": 0.13107327039947156, - "action": "CARVE_RIGHT" - }, - { - "x": -65.04469722464485, - "y": -2715.930538442155, - "rotation": 0.1694705139433468, - "action": "CARVE_RIGHT" - }, - { - "x": -64.1918422276167, - "y": -2721.771287664514, - "rotation": 0.20786775748722205, - "action": "CARVE_RIGHT" - }, - { - "x": -63.18067517215513, - "y": -2727.4705245534406, - "rotation": 0.2462650010310973, - "action": "CARVE_RIGHT" - }, - { - "x": -62.01104702455254, - "y": -2733.0275886501972, - "rotation": 0.2846622445749726, - "action": "CARVE_RIGHT" - }, - { - "x": -60.68284580437531, - "y": -2738.4418547450696, - "rotation": 0.3230594881188478, - "action": "CARVE_RIGHT" - }, - { - "x": -59.195996495463326, - "y": -2743.712732793266, - "rotation": 0.3614567316627231, - "action": "CARVE_RIGHT" - }, - { - "x": -57.550460957129886, - "y": -2748.839667831005, - "rotation": 0.3998539752065983, - "action": "CARVE_RIGHT" - }, - { - "x": -55.74623783556154, - "y": -2753.822139891792, - "rotation": 0.43825121875047357, - "action": "CARVE_RIGHT" - }, - { - "x": -53.7833624754174, - "y": -2758.6596639228837, - "rotation": 0.4766484622943488, - "action": "CARVE_RIGHT" - }, - { - "x": -51.661906831627505, - "y": -2763.3517897019374, - "rotation": 0.5150457058382241, - "action": "CARVE_RIGHT" - }, - { - "x": -49.38197938138982, - "y": -2767.8981017538504, - "rotation": 0.5534429493820994, - "action": "CARVE_RIGHT" - }, - { - "x": -46.943725036365386, - "y": -2772.298219267785, - "rotation": 0.5918401929259747, - "action": "NOTHING" - }, - { - "x": -44.25006681702582, - "y": -2776.4630020902623, - "rotation": 0.588349534421986, - "action": "NOTHING" - }, - { - "x": -41.57190946172043, - "y": -2780.6433325379635, - "rotation": 0.5848588759179973, - "action": "NOTHING" - }, - { - "x": -38.909240912529064, - "y": -2784.8392439618624, - "rotation": 0.5813682174140087, - "action": "NOTHING" - }, - { - "x": -36.26204946388123, - "y": -2789.0507699590544, - "rotation": 0.57787755891002, - "action": "NOTHING" - }, - { - "x": -33.63032376172992, - "y": -2793.277944372135, - "rotation": 0.5743869004060314, - "action": "NOTHING" - }, - { - "x": -31.014052802727214, - "y": -2797.5208012885814, - "rotation": 0.5708962419020427, - "action": "NOTHING" - }, - { - "x": -28.413225933401797, - "y": -2801.7793750401343, - "rotation": 0.567405583398054, - "action": "NOTHING" - }, - { - "x": -25.827832849338233, - "y": -2806.053700202181, - "rotation": 0.5639149248940654, - "action": "NOTHING" - }, - { - "x": -23.257863594358074, - "y": -2810.3438115931413, - "rotation": 0.5604242663900767, - "action": "NOTHING" - }, - { - "x": -20.7033085597028, - "y": -2814.6497442738523, - "rotation": 0.556933607886088, - "action": "NOTHING" - }, - { - "x": -18.16415848321858, - "y": -2818.9715335469587, - "rotation": 0.5534429493820994, - "action": "NOTHING" - }, - { - "x": -15.64040444854279, - "y": -2823.3092149562995, - "rotation": 0.5499522908781107, - "action": "NOTHING" - }, - { - "x": -13.13203788429242, - "y": -2827.6628242863003, - "rotation": 0.546461632374122, - "action": "NOTHING" - }, - { - "x": -10.639050563254198, - "y": -2832.032397561364, - "rotation": 0.5429709738701334, - "action": "NOTHING" - }, - { - "x": -8.161434601576575, - "y": -2836.4179710452663, - "rotation": 0.5394803153661447, - "action": "NOTHING" - }, - { - "x": -5.699182457963467, - "y": -2840.8195812405484, - "rotation": 0.535989656862156, - "action": "NOTHING" - }, - { - "x": -3.252286932869801, - "y": -2845.2372648879145, - "rotation": 0.5324989983581674, - "action": "NOTHING" - }, - { - "x": -0.8207411676988494, - "y": -2849.671058965629, - "rotation": 0.5290083398541787, - "action": "NOTHING" - }, - { - "x": 1.5954613559986632, - "y": -2854.1210006889164, - "rotation": 0.5255176813501901, - "action": "NOTHING" - }, - { - "x": 3.996326817323666, - "y": -2858.5871275093605, - "rotation": 0.5220270228462014, - "action": "NOTHING" - }, - { - "x": 6.381861056826077, - "y": -2863.0694771143067, - "rotation": 0.5185363643422127, - "action": "NOTHING" - }, - { - "x": 8.752069577300365, - "y": -2867.568087426266, - "rotation": 0.5150457058382241, - "action": "NOTHING" - }, - { - "x": 11.106957544579346, - "y": -2872.08299660232, - "rotation": 0.5115550473342354, - "action": "NOTHING" - }, - { - "x": 13.446529788326222, - "y": -2876.6142430335235, - "rotation": 0.5080643888302467, - "action": "NOTHING" - }, - { - "x": 15.770790802824845, - "y": -2881.1618653443165, - "rotation": 0.5045737303262581, - "action": "NOTHING" - }, - { - "x": 18.07974474776824, - "y": -2885.7259023919305, - "rotation": 0.5010830718222694, - "action": "NOTHING" - }, - { - "x": 20.373395449045365, - "y": -2890.3063932657983, - "rotation": 0.49759241331828075, - "action": "NOTHING" - }, - { - "x": 22.651746399526143, - "y": -2894.9033772869666, - "rotation": 0.4941017548142921, - "action": "NOTHING" - }, - { - "x": 24.914800759844717, - "y": -2899.5168940075087, - "rotation": 0.4906110963103034, - "action": "NOTHING" - }, - { - "x": 27.162561359180987, - "y": -2904.146983209938, - "rotation": 0.48712043780631475, - "action": "NOTHING" - }, - { - "x": 29.395030696040415, - "y": -2908.7936849066245, - "rotation": 0.4836297793023261, - "action": "NOTHING" - }, - { - "x": 31.61221093903207, - "y": -2913.4570393392114, - "rotation": 0.4801391207983374, - "action": "NOTHING" - }, - { - "x": 33.81410392764498, - "y": -2918.1370869780335, - "rotation": 0.47664846229434876, - "action": "NOTHING" - }, - { - "x": 36.00071117302271, - "y": -2922.8338685215363, - "rotation": 0.4731578037903601, - "action": "NOTHING" - }, - { - "x": 38.17203385873627, - "y": -2927.5474248956975, - "rotation": 0.46966714528637143, - "action": "CARVE_LEFT" - }, - { - "x": 39.96710985162763, - "y": -2932.6117889107904, - "rotation": 0.4312699017424962, - "action": "CARVE_LEFT" - }, - { - "x": 41.60307962696991, - "y": -2937.8264135285926, - "rotation": 0.39287265819862094, - "action": "CARVE_LEFT" - }, - { - "x": 43.079914912032024, - "y": -2943.191832968836, - "rotation": 0.3544754146547457, - "action": "CARVE_LEFT" - }, - { - "x": 44.397551042040966, - "y": -2948.7086142331145, - "rotation": 0.31607817111087044, - "action": "CARVE_LEFT" - }, - { - "x": 45.55588704737628, - "y": -2954.377357025792, - "rotation": 0.2776809275669952, - "action": "CARVE_LEFT" - }, - { - "x": 46.55478574056852, - "y": -2960.198693675094, - "rotation": 0.23928368402311995, - "action": "CARVE_LEFT" - }, - { - "x": 47.394073803102195, - "y": -2966.1732890543717, - "rotation": 0.2008864404792447, - "action": "CARVE_LEFT" - }, - { - "x": 48.073541872023526, - "y": -2972.301840503549, - "rotation": 0.16248919693536945, - "action": "CARVE_LEFT" - }, - { - "x": 48.59294462635351, - "y": -2978.5850777507444, - "rotation": 0.1240919533914942, - "action": "CARVE_LEFT" - }, - { - "x": 48.952000873306645, - "y": -2985.023762834069, - "rotation": 0.08569470984761896, - "action": "CARVE_LEFT" - }, - { - "x": 49.15039363431582, - "y": -2991.6186900236044, - "rotation": 0.0472974663037437, - "action": "CARVE_LEFT" - }, - { - "x": 49.187770230863684, - "y": -2998.370685743551, - "rotation": 0.008900222759868445, - "action": "CARVE_LEFT" - }, - { - "x": 49.06375676579856, - "y": -3005.050151908053, - "rotation": 6.25368828639558, - "action": "CARVE_LEFT" - }, - { - "x": 48.7780099693649, - "y": -3011.5870275802968, - "rotation": 6.215291042851704, - "action": "CARVE_LEFT" - }, - { - "x": 48.33022408642249, - "y": -3017.9805034276715, - "rotation": 6.176893799307829, - "action": "CARVE_LEFT" - }, - { - "x": 47.72013078641446, - "y": -3024.229805717165, - "rotation": 6.138496555763953, - "action": "CARVE_LEFT" - }, - { - "x": 46.94749907353794, - "y": -3030.3341962304844, - "rotation": 6.1000993122200775, - "action": "CARVE_LEFT" - }, - { - "x": 46.01213519711683, - "y": -3036.2929721793635, - "rotation": 6.061702068676202, - "action": "CARVE_LEFT" - }, - { - "x": 44.913882562176205, - "y": -3042.1054661210655, - "rotation": 6.0233048251323265, - "action": "CARVE_LEFT" - }, - { - "x": 43.652621640218065, - "y": -3047.771045874071, - "rotation": 5.984907581588451, - "action": "CARVE_LEFT" - }, - { - "x": 42.22826988019785, - "y": -3053.2891144339555, - "rotation": 5.946510338044575, - "action": "CARVE_LEFT" - }, - { - "x": 40.64078161970135, - "y": -3058.6591098894564, - "rotation": 5.9081130945007, - "action": "CARVE_LEFT" - }, - { - "x": 38.89014799632161, - "y": -3063.8805053387287, - "rotation": 5.869715850956824, - "action": "CARVE_LEFT" - }, - { - "x": 36.97639685923529, - "y": -3068.952808805787, - "rotation": 5.831318607412949, - "action": "CARVE_LEFT" - }, - { - "x": 34.89959268097819, - "y": -3073.875563157135, - "rotation": 5.792921363869073, - "action": "CARVE_LEFT" - }, - { - "x": 32.659836469419396, - "y": -3078.6483460185837, - "rotation": 5.754524120325198, - "action": "CARVE_LEFT" - }, - { - "x": 30.257265679933667, - "y": -3083.270769692255, - "rotation": 5.716126876781322, - "action": "CARVE_LEFT" - }, - { - "x": 27.69205412777163, - "y": -3087.7424810737703, - "rotation": 5.677729633237447, - "action": "CARVE_LEFT" - }, - { - "x": 24.964411900627347, - "y": -3092.063161569627, - "rotation": 5.639332389693571, - "action": "CARVE_LEFT" - }, - { - "x": 22.074585271402853, - "y": -3096.2325270147594, - "rotation": 5.600935146149696, - "action": "CARVE_LEFT" - }, - { - "x": 19.022856611169182, - "y": -3100.250327590284, - "rotation": 5.56253790260582, - "action": "CARVE_LEFT" - }, - { - "x": 15.80954430232353, - "y": -3104.11634774143, - "rotation": 5.524140659061945, - "action": "NOTHING" - }, - { - "x": 12.256351691994091, - "y": -3107.666248540148, - "rotation": 5.527631317565933, - "action": "NOTHING" - }, - { - "x": 8.720281239610662, - "y": -3111.230637033574, - "rotation": 5.5311219760699215, - "action": "NOTHING" - }, - { - "x": 5.201301103556775, - "y": -3114.8095328644768, - "rotation": 5.53461263457391, - "action": "NOTHING" - }, - { - "x": 1.6993798412204417, - "y": -3118.402955956646, - "rotation": 5.538103293077898, - "action": "NOTHING" - }, - { - "x": -1.7855135919359002, - "y": -3122.0109265141928, - "rotation": 5.541593951581887, - "action": "NOTHING" - }, - { - "x": -5.253409843303377, - "y": -3125.6334650208464, - "rotation": 5.545084610085875, - "action": "NOTHING" - }, - { - "x": -8.704339164052627, - "y": -3129.270592239259, - "rotation": 5.548575268589864, - "action": "NOTHING" - }, - { - "x": -12.138331410057695, - "y": -3132.9223292103056, - "rotation": 5.552065927093852, - "action": "NOTHING" - }, - { - "x": -15.55541604281788, - "y": -3136.5886972523904, - "rotation": 5.555556585597841, - "action": "NOTHING" - }, - { - "x": -18.955622130377556, - "y": -3140.269717960751, - "rotation": 5.559047244101829, - "action": "NOTHING" - }, - { - "x": -22.33897834824396, - "y": -3143.965413206769, - "rotation": 5.5625379026058175, - "action": "NOTHING" - }, - { - "x": -25.70551298030293, - "y": -3147.6758051372753, - "rotation": 5.566028561109806, - "action": "NOTHING" - }, - { - "x": -29.05525391973266, - "y": -3151.400916173864, - "rotation": 5.569519219613794, - "action": "NOTHING" - }, - { - "x": -32.38822866991537, - "y": -3155.140769012204, - "rotation": 5.573009878117783, - "action": "NOTHING" - }, - { - "x": -35.70446434534704, - "y": -3158.8953866213533, - "rotation": 5.576500536621771, - "action": "NOTHING" - }, - { - "x": -39.00398767254505, - "y": -3162.664792243073, - "rotation": 5.57999119512576, - "action": "NOTHING" - }, - { - "x": -42.28682499095388, - "y": -3166.449009391147, - "rotation": 5.583481853629748, - "action": "NOTHING" - }, - { - "x": -45.55300225384877, - "y": -3170.248061850698, - "rotation": 5.586972512133737, - "action": "CARVE_RIGHT" - }, - { - "x": -48.33012442179349, - "y": -3174.499166832551, - "rotation": 5.625369755677612, - "action": "CARVE_RIGHT" - }, - { - "x": -50.94504340182828, - "y": -3178.9001984126576, - "rotation": 5.663766999221488, - "action": "CARVE_RIGHT" - }, - { - "x": -53.397956351593, - "y": -3183.45148784175, - "rotation": 5.702164242765363, - "action": "CARVE_RIGHT" - }, - { - "x": -55.689023494232686, - "y": -3188.15339964432, - "rotation": 5.740561486309239, - "action": "CARVE_RIGHT" - }, - { - "x": -57.81836820681439, - "y": -3193.0063315384155, - "rotation": 5.778958729853114, - "action": "CARVE_RIGHT" - }, - { - "x": -59.786077108545506, - "y": -3198.010714355619, - "rotation": 5.81735597339699, - "action": "CARVE_RIGHT" - }, - { - "x": -61.592200148793815, - "y": -3203.1670119612054, - "rotation": 5.855753216940865, - "action": "CARVE_RIGHT" - }, - { - "x": -63.2367506949098, - "y": -3208.475721174482, - "rotation": 5.894150460484741, - "action": "CARVE_RIGHT" - }, - { - "x": -64.71970561985158, - "y": -3213.9373716893056, - "rotation": 5.932547704028616, - "action": "CARVE_RIGHT" - }, - { - "x": -66.04100538961293, - "y": -3219.5525259947826, - "rotation": 5.970944947572492, - "action": "CARVE_RIGHT" - }, - { - "x": -67.20055415045482, - "y": -3225.3217792961436, - "rotation": 6.009342191116367, - "action": "CARVE_RIGHT" - }, - { - "x": -68.19821981594083, - "y": -3231.2457594358, - "rotation": 6.047739434660243, - "action": "CARVE_RIGHT" - }, - { - "x": -69.033834153777, - "y": -3237.325126814578, - "rotation": 6.086136678204118, - "action": "CARVE_RIGHT" - }, - { - "x": -69.70719287245635, - "y": -3243.560574313129, - "rotation": 6.124533921747994, - "action": "CARVE_RIGHT" - }, - { - "x": -70.21805570770866, - "y": -3249.95282721352, - "rotation": 6.1629311652918695, - "action": "CARVE_RIGHT" - }, - { - "x": -70.56614650875582, - "y": -3256.5026431209976, - "rotation": 6.201328408835745, - "action": "CARVE_RIGHT" - }, - { - "x": -70.75115332437329, - "y": -3263.210811885933, - "rotation": 6.2397256523796205, - "action": "CARVE_RIGHT" - }, - { - "x": -70.7727284887579, - "y": -3270.0781555259387, - "rotation": 6.278122895923496, - "action": "CARVE_RIGHT" - }, - { - "x": -70.63050709257158, - "y": -3276.8412468610145, - "rotation": 0.03333483228778533, - "action": "CARVE_RIGHT" - }, - { - "x": -70.32415815248942, - "y": -3283.4592986607618, - "rotation": 0.07173207583166058, - "action": "CARVE_RIGHT" - }, - { - "x": -69.85338816775644, - "y": -3289.931513357146, - "rotation": 0.11012931937553583, - "action": "CARVE_RIGHT" - }, - { - "x": -69.2179410302311, - "y": -3296.257128951377, - "rotation": 0.14852656291941108, - "action": "CARVE_RIGHT" - }, - { - "x": -68.4175979346314, - "y": -3302.435418929101, - "rotation": 0.18692380646328632, - "action": "CARVE_RIGHT" - }, - { - "x": -67.45217728898281, - "y": -3308.4656921757805, - "rotation": 0.22532105000716157, - "action": "CARVE_RIGHT" - }, - { - "x": -66.32153462526777, - "y": -3314.3472928922647, - "rotation": 0.2637182935510368, - "action": "CARVE_RIGHT" - }, - { - "x": -65.02556251027632, - "y": -3320.0796005105503, - "rotation": 0.30211553709491207, - "action": "CARVE_RIGHT" - }, - { - "x": -63.564190456657286, - "y": -3325.662029609729, - "rotation": 0.3405127806387873, - "action": "CARVE_RIGHT" - }, - { - "x": -61.93738483416984, - "y": -3331.094029832126, - "rotation": 0.37891002418266256, - "action": "CARVE_RIGHT" - }, - { - "x": -60.14514878113468, - "y": -3336.375085799624, - "rotation": 0.4173072677265378, - "action": "CARVE_RIGHT" - }, - { - "x": -58.187522116084686, - "y": -3341.5047170301755, - "rotation": 0.45570451127041306, - "action": "CARVE_RIGHT" - }, - { - "x": -56.06458124961448, - "y": -3346.482477854505, - "rotation": 0.4941017548142883, - "action": "CARVE_RIGHT" - }, - { - "x": -53.77643909642843, - "y": -3351.307957332993, - "rotation": 0.5324989983581636, - "action": "CARVE_RIGHT" - }, - { - "x": -51.323244987586826, - "y": -3355.980779172751, - "rotation": 0.5708962419020389, - "action": "CARVE_RIGHT" - }, - { - "x": -48.70518458294957, - "y": -3360.500601644881, - "rotation": 0.6092934854459142, - "action": "CARVE_RIGHT" - }, - { - "x": -45.922479783817195, - "y": -3364.8671175019185, - "rotation": 0.6476907289897895, - "action": "CARVE_RIGHT" - }, - { - "x": -42.97538864576858, - "y": -3369.080053895464, - "rotation": 0.6860879725336648, - "action": "NOTHING" - }, - { - "x": -39.7177944093019, - "y": -3373.004866662152, - "rotation": 0.6825973140296762, - "action": "NOTHING" - }, - { - "x": -36.47712635438496, - "y": -3376.9447788452426, - "rotation": 0.6791066555256875, - "action": "NOTHING" - }, - { - "x": -33.25335957409016, - "y": -3380.8998150807856, - "rotation": 0.6756159970216988, - "action": "NOTHING" - }, - { - "x": -30.046469544591606, - "y": -3384.8700002736987, - "rotation": 0.6721253385177102, - "action": "NOTHING" - }, - { - "x": -26.856432124269762, - "y": -3388.855359597091, - "rotation": 0.6686346800137215, - "action": "NOTHING" - }, - { - "x": -23.68322355281822, - "y": -3392.8559184915935, - "rotation": 0.6651440215097328, - "action": "NOTHING" - }, - { - "x": -20.526820450352364, - "y": -3396.871702664684, - "rotation": 0.6616533630057442, - "action": "NOTHING" - }, - { - "x": -17.387199816520045, - "y": -3400.902738090021, - "rotation": 0.6581627045017555, - "action": "NOTHING" - }, - { - "x": -14.264339029614215, - "y": -3404.949051006773, - "rotation": 0.6546720459977668, - "action": "NOTHING" - }, - { - "x": -11.158215845687518, - "y": -3409.0106679189525, - "rotation": 0.6511813874937782, - "action": "NOTHING" - }, - { - "x": -8.06880839766886, - "y": -3413.0876155947517, - "rotation": 0.6476907289897895, - "action": "NOTHING" - }, - { - "x": -4.996095194481915, - "y": -3417.1799210658774, - "rotation": 0.6442000704858009, - "action": "NOTHING" - }, - { - "x": -1.9400551201656016, - "y": -3421.2876116268903, - "rotation": 0.6407094119818122, - "action": "NOTHING" - }, - { - "x": 1.0993325670035068, - "y": -3425.4107148345443, - "rotation": 0.6372187534778235, - "action": "NOTHING" - }, - { - "x": 4.122088235386817, - "y": -3429.5492585071265, - "rotation": 0.6337280949738349, - "action": "NOTHING" - }, - { - "x": 7.12823188085742, - "y": -3433.7032707238013, - "rotation": 0.6302374364698462, - "action": "NOTHING" - }, - { - "x": 10.117783127671856, - "y": -3437.8727798239524, - "rotation": 0.6267467779658575, - "action": "NOTHING" - }, - { - "x": 13.09076122933994, - "y": -3442.0578144065303, - "rotation": 0.6232561194618689, - "action": "NOTHING" - }, - { - "x": 16.047185069492677, - "y": -3446.258403329398, - "rotation": 0.6197654609578802, - "action": "NOTHING" - }, - { - "x": 18.987073162748242, - "y": -3450.4745757086807, - "rotation": 0.6162748024538915, - "action": "NOTHING" - }, - { - "x": 21.91044365557604, - "y": -3454.706360918115, - "rotation": 0.6127841439499029, - "action": "NOTHING" - }, - { - "x": 24.817314327158847, - "y": -3458.9537885884015, - "rotation": 0.6092934854459142, - "action": "CARVE_LEFT" - }, - { - "x": 27.26869060922771, - "y": -3463.623147848247, - "rotation": 0.5708962419020389, - "action": "CARVE_LEFT" - }, - { - "x": 29.555420174787322, - "y": -3468.4456483105087, - "rotation": 0.5324989983581636, - "action": "CARVE_LEFT" - }, - { - "x": 31.67762677972655, - "y": -3473.421687476764, - "rotation": 0.49410175481428836, - "action": "CARVE_LEFT" - }, - { - "x": 33.6353974182077, - "y": -3478.5516959654633, - "rotation": 0.4557045112704131, - "action": "CARVE_LEFT" - }, - { - "x": 35.42878241069932, - "y": -3483.836137432077, - "rotation": 0.41730726772653787, - "action": "CARVE_LEFT" - }, - { - "x": 37.057795491811106, - "y": -3489.275508489424, - "rotation": 0.3789100241826626, - "action": "CARVE_LEFT" - }, - { - "x": 38.52241389793152, - "y": -3494.8703386281773, - "rotation": 0.34051278063878737, - "action": "CARVE_LEFT" - }, - { - "x": 39.82257845466839, - "y": -3500.6211901375527, - "rotation": 0.3021155370949121, - "action": "CARVE_LEFT" - }, - { - "x": 40.95819366409298, - "y": -3506.528658026174, - "rotation": 0.2637182935510369, - "action": "CARVE_LEFT" - }, - { - "x": 41.92912779178799, - "y": -3512.593369943116, - "rotation": 0.22532105000716163, - "action": "CARVE_LEFT" - }, - { - "x": 42.73521295369983, - "y": -3518.815986099129, - "rotation": 0.18692380646328638, - "action": "CARVE_LEFT" - }, - { - "x": 43.376245202795666, - "y": -3525.197199188037, - "rotation": 0.14852656291941113, - "action": "CARVE_LEFT" - }, - { - "x": 43.851984615525595, - "y": -3531.7377343083167, - "rotation": 0.11012931937553588, - "action": "CARVE_LEFT" - }, - { - "x": 44.16215537809043, - "y": -3538.438348884854, - "rotation": 0.07173207583166064, - "action": "CARVE_LEFT" - }, - { - "x": 44.306445872515454, - "y": -3545.2998325908725, - "rotation": 0.03333483228778538, - "action": "CARVE_LEFT" - }, - { - "x": 44.28450918655482, - "y": -3552.2822480260024, - "rotation": 6.278122895923496, - "action": "CARVE_LEFT" - }, - { - "x": 44.09599638676073, - "y": -3559.117540396981, - "rotation": 6.2397256523796205, - "action": "CARVE_LEFT" - }, - { - "x": 43.74059606242051, - "y": -3565.8048952218815, - "rotation": 6.201328408835745, - "action": "CARVE_LEFT" - }, - { - "x": 43.21803423551374, - "y": -3572.343533625727, - "rotation": 6.1629311652918695, - "action": "CARVE_LEFT" - }, - { - "x": 42.528074270872075, - "y": -3578.7327122556007, - "rotation": 6.124533921747994, - "action": "CARVE_LEFT" - }, - { - "x": 41.67051678654109, - "y": -3584.9717231959453, - "rotation": 6.086136678204118, - "action": "CARVE_LEFT" - }, - { - "x": 40.64519956434393, - "y": -3591.0598938840535, - "rotation": 6.047739434660243, - "action": "CARVE_LEFT" - }, - { - "x": 39.45199746064616, - "y": -3596.996587025747, - "rotation": 6.009342191116367, - "action": "CARVE_LEFT" - }, - { - "x": 38.09082231732148, - "y": -3602.781200511246, - "rotation": 5.970944947572492, - "action": "CARVE_LEFT" - }, - { - "x": 36.56162287291787, - "y": -3608.4131673312245, - "rotation": 5.932547704028616, - "action": "CARVE_LEFT" - }, - { - "x": 34.86438467402365, - "y": -3613.8919554930567, - "rotation": 5.894150460484741, - "action": "CARVE_LEFT" - }, - { - "x": 32.99912998683309, - "y": -3619.2170679372493, - "rotation": 5.855753216940865, - "action": "CARVE_LEFT" - }, - { - "x": 30.965917708911178, - "y": -3624.3880424540635, - "rotation": 5.81735597339699, - "action": "CARVE_LEFT" - }, - { - "x": 28.764843281156992, - "y": -3629.4044516003196, - "rotation": 5.778958729853114, - "action": "CARVE_LEFT" - }, - { - "x": 26.39603859996535, - "y": -3634.2659026163933, - "rotation": 5.740561486309239, - "action": "CARVE_LEFT" - }, - { - "x": 23.859671929586295, - "y": -3638.9720373433943, - "rotation": 5.702164242765363, - "action": "CARVE_LEFT" - }, - { - "x": 21.155947814681927, - "y": -3643.5225321405337, - "rotation": 5.663766999221488, - "action": "NOTHING" - }, - { - "x": 18.168710340252737, - "y": -3647.81058312413, - "rotation": 5.667257657725476, - "action": "NOTHING" - }, - { - "x": 15.198354027445612, - "y": -3652.1143799125844, - "rotation": 5.6707483162294645, - "action": "NOTHING" - }, - { - "x": 12.24485997705019, - "y": -3656.4339514661146, - "rotation": 5.674238974733453, - "action": "NOTHING" - }, - { - "x": 9.308209659176754, - "y": -3660.7693270032764, - "rotation": 5.677729633237441, - "action": "NOTHING" - }, - { - "x": 6.3883849123911105, - "y": -3665.1205360003105, - "rotation": 5.68122029174143, - "action": "NOTHING" - }, - { - "x": 3.485367942851385, - "y": -3669.4876081904945, - "rotation": 5.684710950245418, - "action": "NOTHING" - }, - { - "x": 0.5991413234467324, - "y": -3673.8705735634962, - "rotation": 5.688201608749407, - "action": "NOTHING" - }, - { - "x": -2.2703120070620426, - "y": -3678.2694623647258, - "rotation": 5.691692267253395, - "action": "NOTHING" - }, - { - "x": -5.123008744899958, - "y": -3682.6843050946936, - "rotation": 5.695182925757384, - "action": "NOTHING" - }, - { - "x": -7.958965222133429, - "y": -3687.1151325083647, - "rotation": 5.698673584261372, - "action": "NOTHING" - }, - { - "x": -10.77819740752394, - "y": -3691.5619756145197, - "rotation": 5.7021642427653605, - "action": "NOTHING" - }, - { - "x": -13.580720907379835, - "y": -3696.024865675113, - "rotation": 5.705654901269349, - "action": "NOTHING" - }, - { - "x": -16.366550966406198, - "y": -3700.503834204634, - "rotation": 5.709145559773337, - "action": "NOTHING" - }, - { - "x": -19.135702468552868, - "y": -3704.9989129694727, - "rotation": 5.712636218277326, - "action": "NOTHING" - }, - { - "x": -21.888189937860563, - "y": -3709.510133987281, - "rotation": 5.716126876781314, - "action": "NOTHING" - }, - { - "x": -24.624027539305132, - "y": -3714.0375295263393, - "rotation": 5.719617535285303, - "action": "NOTHING" - }, - { - "x": -27.343229079639926, - "y": -3718.5811321049255, - "rotation": 5.723108193789291, - "action": "NOTHING" - }, - { - "x": -30.045808008236303, - "y": -3723.1409744906814, - "rotation": 5.72659885229328, - "action": "NOTHING" - }, - { - "x": -32.731777417922274, - "y": -3727.7170896999855, - "rotation": 5.730089510797268, - "action": "NOTHING" - }, - { - "x": -35.401150045819286, - "y": -3732.309510997322, - "rotation": 5.7335801693012565, - "action": "NOTHING" - }, - { - "x": -38.05393827417714, - "y": -3736.9182718946563, - "rotation": 5.737070827805245, - "action": "NOTHING" - }, - { - "x": -40.69015413120706, - "y": -3741.543406150808, - "rotation": 5.740561486309233, - "action": "NOTHING" - }, - { - "x": -43.309809291912906, - "y": -3746.184947770829, - "rotation": 5.744052144813222, - "action": "NOTHING" - }, - { - "x": -45.91291507892057, - "y": -3750.8429310053775, - "rotation": 5.74754280331721, - "action": "NOTHING" - }, - { - "x": -48.4994824633055, - "y": -3755.517390350101, - "rotation": 5.751033461821199, - "action": "NOTHING" - }, - { - "x": -51.06952206541837, - "y": -3760.208360545014, - "rotation": 5.754524120325187, - "action": "NOTHING" - }, - { - "x": -53.623044155708996, - "y": -3764.9158765738807, - "rotation": 5.758014778829176, - "action": "NOTHING" - }, - { - "x": -56.16005865554832, - "y": -3769.6399736635985, - "rotation": 5.761505437333164, - "action": "CARVE_RIGHT" - }, - { - "x": -58.27564396701886, - "y": -3774.7553902197214, - "rotation": 5.7999026808770395, - "action": "CARVE_RIGHT" - }, - { - "x": -60.223589691538656, - "y": -3780.0276472108403, - "rotation": 5.838299924420915, - "action": "CARVE_RIGHT" - }, - { - "x": -62.00394730069333, - "y": -3785.457207397941, - "rotation": 5.876697167964791, - "action": "CARVE_RIGHT" - }, - { - "x": -63.61673167407337, - "y": -3791.044566504732, - "rotation": 5.915094411508666, - "action": "CARVE_RIGHT" - }, - { - "x": -65.06192118693005, - "y": -3796.7902531381324, - "rotation": 5.953491655052542, - "action": "CARVE_RIGHT" - }, - { - "x": -66.33945779763437, - "y": -3802.6948287089444, - "rotation": 5.991888898596417, - "action": "CARVE_RIGHT" - }, - { - "x": -67.44924713493943, - "y": -3808.7588873527015, - "rotation": 6.030286142140293, - "action": "CARVE_RIGHT" - }, - { - "x": -68.3911585850466, - "y": -3814.9830558506974, - "rotation": 6.068683385684168, - "action": "CARVE_RIGHT" - }, - { - "x": -69.165025378476, - "y": -3821.367993551192, - "rotation": 6.107080629228044, - "action": "CARVE_RIGHT" - }, - { - "x": -69.77064467674167, - "y": -3827.914392290794, - "rotation": 6.145477872771919, - "action": "CARVE_RIGHT" - }, - { - "x": -70.20777765883182, - "y": -3834.622976316025, - "rotation": 6.183875116315795, - "action": "CARVE_RIGHT" - }, - { - "x": -70.47614960749466, - "y": -3841.4945022050574, - "rotation": 6.22227235985967, - "action": "CARVE_RIGHT" - }, - { - "x": -70.57544999533019, - "y": -3848.5297587896284, - "rotation": 6.260669603403546, - "action": "CARVE_RIGHT" - }, - { - "x": -70.50533674380962, - "y": -3855.5992992173715, - "rotation": 0.01588153976783513, - "action": "CARVE_RIGHT" - }, - { - "x": -70.26548259908216, - "y": -3862.518404469335, - "rotation": 0.054278783311710384, - "action": "CARVE_RIGHT" - }, - { - "x": -69.85559777468171, - "y": -3869.286280773212, - "rotation": 0.09267602685558564, - "action": "CARVE_RIGHT" - }, - { - "x": -69.27542986161306, - "y": -3875.9021699112764, - "rotation": 0.1310732703994609, - "action": "CARVE_RIGHT" - }, - { - "x": -68.52476373864042, - "y": -3882.3653491356163, - "rotation": 0.16947051394333615, - "action": "CARVE_RIGHT" - }, - { - "x": -67.60342148277772, - "y": -3888.6751310835543, - "rotation": 0.2078677574872114, - "action": "CARVE_RIGHT" - }, - { - "x": -66.51126227998044, - "y": -3894.8308636932584, - "rotation": 0.24626500103108664, - "action": "CARVE_RIGHT" - }, - { - "x": -65.24818233603833, - "y": -3900.8319301195424, - "rotation": 0.2846622445749619, - "action": "CARVE_RIGHT" - }, - { - "x": -63.81411478766871, - "y": -3906.677748649854, - "rotation": 0.32305948811883717, - "action": "CARVE_RIGHT" - }, - { - "x": -62.20902961380996, - "y": -3912.3677726204533, - "rotation": 0.3614567316627124, - "action": "CARVE_RIGHT" - }, - { - "x": -60.4329335471146, - "y": -3917.901490332775, - "rotation": 0.39985397520658766, - "action": "CARVE_RIGHT" - }, - { - "x": -58.485869985641685, - "y": -3923.2784249699853, - "rotation": 0.4382512187504629, - "action": "CARVE_RIGHT" - }, - { - "x": -56.36791890474799, - "y": -3928.4981345137166, - "rotation": 0.47664846229433816, - "action": "CARVE_RIGHT" - }, - { - "x": -54.07919676917762, - "y": -3933.5602116609984, - "rotation": 0.5150457058382134, - "action": "CARVE_RIGHT" - }, - { - "x": -51.61985644534958, - "y": -3938.4642837413667, - "rotation": 0.5534429493820887, - "action": "CARVE_RIGHT" - }, - { - "x": -48.990087113842876, - "y": -3943.210012634164, - "rotation": 0.591840192925964, - "action": "CARVE_RIGHT" - }, - { - "x": -46.190114182078716, - "y": -3947.7970946860237, - "rotation": 0.6302374364698393, - "action": "CARVE_RIGHT" - }, - { - "x": -43.220199197199435, - "y": -3952.2252606285397, - "rotation": 0.6686346800137146, - "action": "CARVE_RIGHT" - }, - { - "x": -40.08063975914366, - "y": -3956.4942754961185, - "rotation": 0.7070319235575899, - "action": "CARVE_RIGHT" - }, - { - "x": -36.771769433917285, - "y": -3960.603938544019, - "rotation": 0.7454291671014652, - "action": "CARVE_RIGHT" - }, - { - "x": -33.29395766705992, - "y": -3964.554083166575, - "rotation": 0.7838264106453405, - "action": "NOTHING" - }, - { - "x": -29.448186071469767, - "y": -3968.161185310196, - "rotation": 0.7803357521413519, - "action": "NOTHING" - }, - { - "x": -25.62083977566041, - "y": -3971.783059859512, - "rotation": 0.7768450936373632, - "action": "NOTHING" - }, - { - "x": -21.81188079350107, - "y": -3975.4197224273494, - "rotation": 0.7733544351333745, - "action": "NOTHING" - }, - { - "x": -18.021271552901023, - "y": -3979.0711889184913, - "rotation": 0.7698637766293859, - "action": "NOTHING" - }, - { - "x": -14.248974894845317, - "y": -3982.7374755289497, - "rotation": 0.7663731181253972, - "action": "NOTHING" - }, - { - "x": -10.494954072432645, - "y": -3986.4185987452393, - "rotation": 0.7628824596214085, - "action": "NOTHING" - }, - { - "x": -6.759172749915329, - "y": -3990.114575343651, - "rotation": 0.7593918011174199, - "action": "NOTHING" - }, - { - "x": -3.0415950017414244, - "y": -3993.8254223895296, - "rotation": 0.7559011426134312, - "action": "NOTHING" - }, - { - "x": 0.657814688401055, - "y": -3997.551157236554, - "rotation": 0.7524104841094426, - "action": "NOTHING" - }, - { - "x": 4.339091428537804, - "y": -4001.291797526014, - "rotation": 0.7489198256054539, - "action": "NOTHING" - }, - { - "x": 8.00226991935978, - "y": -4005.047361186093, - "rotation": 0.7454291671014652, - "action": "NOTHING" - }, - { - "x": 11.647384455172661, - "y": -4008.8178664311536, - "rotation": 0.7419385085974766, - "action": "NOTHING" - }, - { - "x": 15.274468924844205, - "y": -4012.6033317610195, - "rotation": 0.7384478500934879, - "action": "NOTHING" - }, - { - "x": 18.883556812749507, - "y": -4016.4037759602643, - "rotation": 0.7349571915894992, - "action": "NOTHING" - }, - { - "x": 22.474681199714176, - "y": -4020.2192180974985, - "rotation": 0.7314665330855106, - "action": "NOTHING" - }, - { - "x": 26.047874763955424, - "y": -4024.0496775246597, - "rotation": 0.7279758745815219, - "action": "NOTHING" - }, - { - "x": 29.60316978202107, - "y": -4027.8951738763053, - "rotation": 0.7244852160775332, - "action": "NOTHING" - }, - { - "x": 33.140598129726484, - "y": -4031.755727068904, - "rotation": 0.7209945575735446, - "action": "NOTHING" - }, - { - "x": 36.66019128308943, - "y": -4035.631357300132, - "rotation": 0.7175038990695559, - "action": "NOTHING" - }, - { - "x": 40.16198031926288, - "y": -4039.5220850481687, - "rotation": 0.7140132405655673, - "action": "NOTHING" - }, - { - "x": 43.64599591746572, - "y": -4043.427931070995, - "rotation": 0.7105225820615786, - "action": "CARVE_LEFT" - }, - { - "x": 46.61152533852658, - "y": -4047.812334018086, - "rotation": 0.6721253385177033, - "action": "CARVE_LEFT" - }, - { - "x": 49.40724488629583, - "y": -4052.352961534449, - "rotation": 0.633728094973828, - "action": "CARVE_LEFT" - }, - { - "x": 52.03339217680568, - "y": -4057.050108750804, - "rotation": 0.5953308514299527, - "action": "CARVE_LEFT" - }, - { - "x": 54.490167786952625, - "y": -4061.9041041661044, - "rotation": 0.5569336078860774, - "action": "CARVE_LEFT" - }, - { - "x": 56.777735343159996, - "y": -4066.9153095671113, - "rotation": 0.5185363643422021, - "action": "CARVE_LEFT" - }, - { - "x": 58.89622160984128, - "y": -4072.0841199481506, - "rotation": 0.4801391207983268, - "action": "CARVE_LEFT" - }, - { - "x": 60.845716577664724, - "y": -4077.4109634310475, - "rotation": 0.4417418772544516, - "action": "CARVE_LEFT" - }, - { - "x": 62.626273551619676, - "y": -4082.8963011852456, - "rotation": 0.40334463371057633, - "action": "CARVE_LEFT" - }, - { - "x": 64.23790923888491, - "y": -4088.5406273481026, - "rotation": 0.3649473901667011, - "action": "CARVE_LEFT" - }, - { - "x": 65.6806038364996, - "y": -4094.344468945369, - "rotation": 0.32655014662282583, - "action": "CARVE_LEFT" - }, - { - "x": 66.9543011188372, - "y": -4100.308385811844, - "rotation": 0.2881529030789506, - "action": "CARVE_LEFT" - }, - { - "x": 68.0589085248827, - "y": -4106.432970512214, - "rotation": 0.24975565953507534, - "action": "CARVE_LEFT" - }, - { - "x": 68.99429724531376, - "y": -4112.7188482620595, - "rotation": 0.2113584159912001, - "action": "CARVE_LEFT" - }, - { - "x": 69.760302309386, - "y": -4119.166676849059, - "rotation": 0.17296117244732484, - "action": "CARVE_LEFT" - }, - { - "x": 70.356722671623, - "y": -4125.777146554351, - "rotation": 0.1345639289034496, - "action": "CARVE_LEFT" - }, - { - "x": 70.78332129831135, - "y": -4132.5509800740865, - "rotation": 0.09616668535957434, - "action": "CARVE_LEFT" - }, - { - "x": 71.03982525380118, - "y": -4139.488932441153, - "rotation": 0.05776944181569909, - "action": "CARVE_LEFT" - }, - { - "x": 71.12592578661273, - "y": -4146.591790947077, - "rotation": 0.019372198271823834, - "action": "CARVE_LEFT" - }, - { - "x": 71.04128440397517, - "y": -4153.703117525659, - "rotation": 6.264160261907535, - "action": "CARVE_LEFT" - }, - { - "x": 70.7855816009416, - "y": -4160.662644763905, - "rotation": 6.22576301836366, - "action": "CARVE_LEFT" - }, - { - "x": 70.35853531995207, - "y": -4167.469586300519, - "rotation": 6.187365774819784, - "action": "CARVE_LEFT" - }, - { - "x": 69.75990086096668, - "y": -4174.123191309857, - "rotation": 6.148968531275909, - "action": "CARVE_LEFT" - }, - { - "x": 68.98947079180087, - "y": -4180.622744417201, - "rotation": 6.110571287732033, - "action": "CARVE_LEFT" - }, - { - "x": 68.04707485866241, - "y": -4186.967565614223, - "rotation": 6.0721740441881575, - "action": "CARVE_LEFT" - }, - { - "x": 66.93257989688979, - "y": -4193.157010174643, - "rotation": 6.033776800644282, - "action": "CARVE_LEFT" - }, - { - "x": 65.6458897418914, - "y": -4199.19046857007, - "rotation": 5.9953795571004065, - "action": "CARVE_LEFT" - }, - { - "x": 64.18694514028526, - "y": -4205.067366386038, - "rotation": 5.956982313556531, - "action": "CARVE_LEFT" - }, - { - "x": 62.555723661238716, - "y": -4210.7871642382215, - "rotation": 5.918585070012655, - "action": "CARVE_LEFT" - }, - { - "x": 60.75223960800768, - "y": -4216.349357688849, - "rotation": 5.88018782646878, - "action": "CARVE_LEFT" - }, - { - "x": 58.77654392967511, - "y": -4221.753477163295, - "rotation": 5.841790582924904, - "action": "CARVE_LEFT" - }, - { - "x": 56.62872413308815, - "y": -4226.999087866869, - "rotation": 5.803393339381029, - "action": "CARVE_LEFT" - }, - { - "x": 54.308904194993595, - "y": -4232.085789701777, - "rotation": 5.764996095837153, - "action": "CARVE_LEFT" - }, - { - "x": 51.8172444743712, - "y": -4237.013217184284, - "rotation": 5.726598852293278, - "action": "CARVE_LEFT" - }, - { - "x": 49.153941624964446, - "y": -4241.781039362054, - "rotation": 5.688201608749402, - "action": "CARVE_LEFT" - }, - { - "x": 46.3192285080083, - "y": -4246.388959731674, - "rotation": 5.649804365205527, - "action": "CARVE_LEFT" - }, - { - "x": 43.31337410515357, - "y": -4250.836716156371, - "rotation": 5.611407121661651, - "action": "CARVE_LEFT" - }, - { - "x": 40.136683431587414, - "y": -4255.124080783906, - "rotation": 5.573009878117776, - "action": "NOTHING" - }, - { - "x": 36.62508521940427, - "y": -4259.0998864184085, - "rotation": 5.576500536621764, - "action": "NOTHING" - }, - { - "x": 33.13151426126993, - "y": -4263.090973828193, - "rotation": 5.579991195125753, - "action": "NOTHING" - }, - { - "x": 29.655940117053593, - "y": -4267.097364032847, - "rotation": 5.583481853629741, - "action": "NOTHING" - }, - { - "x": 26.198332743295886, - "y": -4271.119078330678, - "rotation": 5.5869725121337295, - "action": "NOTHING" - }, - { - "x": 22.75866249228266, - "y": -4275.156138298016, - "rotation": 5.590463170637718, - "action": "NOTHING" - }, - { - "x": 19.33690011112085, - "y": -4279.208565788515, - "rotation": 5.593953829141706, - "action": "NOTHING" - }, - { - "x": 15.933016740816381, - "y": -4283.2763829324595, - "rotation": 5.597444487645695, - "action": "NOTHING" - }, - { - "x": 12.5469839153541, - "y": -4287.359612136069, - "rotation": 5.600935146149683, - "action": "NOTHING" - }, - { - "x": 9.178773560779767, - "y": -4291.458276080808, - "rotation": 5.604425804653672, - "action": "NOTHING" - }, - { - "x": 5.828357994284062, - "y": -4295.572397722698, - "rotation": 5.60791646315766, - "action": "NOTHING" - }, - { - "x": 2.495709923288621, - "y": -4299.702000291624, - "rotation": 5.611407121661649, - "action": "NOTHING" - }, - { - "x": -0.8191975554658995, - "y": -4303.847107290652, - "rotation": 5.614897780165637, - "action": "NOTHING" - }, - { - "x": -4.116390956829747, - "y": -4308.007742495341, - "rotation": 5.6183884386696255, - "action": "NOTHING" - }, - { - "x": -7.395896408151977, - "y": -4312.183929953058, - "rotation": 5.621879097173614, - "action": "NOTHING" - }, - { - "x": -10.657739650186349, - "y": -4316.375693982302, - "rotation": 5.625369755677602, - "action": "NOTHING" - }, - { - "x": -13.901946037995216, - "y": -4320.583059172017, - "rotation": 5.628860414181591, - "action": "NOTHING" - }, - { - "x": -17.12854054185142, - "y": -4324.806050380913, - "rotation": 5.632351072685579, - "action": "NOTHING" - }, - { - "x": -20.337547748138178, - "y": -4329.044692736793, - "rotation": 5.635841731189568, - "action": "NOTHING" - }, - { - "x": -23.52899186024698, - "y": -4333.299011635874, - "rotation": 5.639332389693556, - "action": "NOTHING" - }, - { - "x": -26.702896699473495, - "y": -4337.569032742114, - "rotation": 5.6428230481975445, - "action": "NOTHING" - }, - { - "x": -29.859285705911518, - "y": -4341.854781986538, - "rotation": 5.646313706701533, - "action": "NOTHING" - }, - { - "x": -32.99818193934489, - "y": -4346.156285566566, - "rotation": 5.649804365205521, - "action": "NOTHING" - }, - { - "x": -36.119608080137475, - "y": -4350.473569945345, - "rotation": 5.65329502370951, - "action": "NOTHING" - }, - { - "x": -39.22358643012117, - "y": -4354.806661851081, - "rotation": 5.656785682213498, - "action": "NOTHING" - }, - { - "x": -42.310138913481936, - "y": -4359.155588276372, - "rotation": 5.660276340717487, - "action": "NOTHING" - }, - { - "x": -45.37928707764384, - "y": -4363.5203764775415, - "rotation": 5.663766999221475, - "action": "CARVE_RIGHT" - }, - { - "x": -47.97013376730922, - "y": -4368.3275968692005, - "rotation": 5.702164242765351, - "action": "CARVE_RIGHT" - }, - { - "x": -50.38978731500086, - "y": -4373.293404008713, - "rotation": 5.740561486309226, - "action": "CARVE_RIGHT" - }, - { - "x": -52.63840430128595, - "y": -4378.418166113162, - "rotation": 5.778958729853102, - "action": "CARVE_RIGHT" - }, - { - "x": -54.716104459624795, - "y": -4383.702284593566, - "rotation": 5.817355973396977, - "action": "CARVE_RIGHT" - }, - { - "x": -56.622970764604545, - "y": -4389.146193974839, - "rotation": 5.855753216940853, - "action": "CARVE_RIGHT" - }, - { - "x": -58.35904951997477, - "y": -4394.750361815939, - "rotation": 5.894150460484728, - "action": "CARVE_RIGHT" - }, - { - "x": -59.92435044648512, - "y": -4400.515288630195, - "rotation": 5.932547704028604, - "action": "CARVE_RIGHT" - }, - { - "x": -61.31884676952565, - "y": -4406.441507805807, - "rotation": 5.970944947572479, - "action": "CARVE_RIGHT" - }, - { - "x": -62.54247530657012, - "y": -4412.5295855265385, - "rotation": 6.009342191116355, - "action": "CARVE_RIGHT" - }, - { - "x": -63.595136554422766, - "y": -4418.780120692572, - "rotation": 6.0477394346602305, - "action": "CARVE_RIGHT" - }, - { - "x": -64.47669477626894, - "y": -4425.193744841558, - "rotation": 6.086136678204106, - "action": "CARVE_RIGHT" - }, - { - "x": -65.18697808853008, - "y": -4431.771122069832, - "rotation": 6.1245339217479815, - "action": "CARVE_RIGHT" - }, - { - "x": -65.72577854752332, - "y": -4438.512948953813, - "rotation": 6.162931165291857, - "action": "CARVE_RIGHT" - }, - { - "x": -66.0928522359263, - "y": -4445.419954471584, - "rotation": 6.2013284088357326, - "action": "CARVE_RIGHT" - }, - { - "x": -66.28791934904756, - "y": -4452.492899924639, - "rotation": 6.239725652379608, - "action": "CARVE_RIGHT" - }, - { - "x": -66.31066428090283, - "y": -4459.7325788598155, - "rotation": 6.278122895923484, - "action": "CARVE_RIGHT" - }, - { - "x": -66.16075409546679, - "y": -4466.861297205642, - "rotation": 0.0333348322877729, - "action": "CARVE_RIGHT" - }, - { - "x": -65.8378896964287, - "y": -4473.836132230551, - "rotation": 0.07173207583164815, - "action": "CARVE_RIGHT" - }, - { - "x": -65.34180938395619, - "y": -4480.656317019505, - "rotation": 0.1101293193755234, - "action": "CARVE_RIGHT" - }, - { - "x": -64.67228876494542, - "y": -4487.321120145013, - "rotation": 0.14852656291939864, - "action": "CARVE_RIGHT" - }, - { - "x": -63.82914066347335, - "y": -4493.82984558252, - "rotation": 0.1869238064632739, - "action": "CARVE_RIGHT" - }, - { - "x": -62.812215031451316, - "y": -4500.181832625976, - "rotation": 0.22532105000714914, - "action": "CARVE_RIGHT" - }, - { - "x": -61.62139885947978, - "y": -4506.376455803608, - "rotation": 0.2637182935510244, - "action": "CARVE_RIGHT" - }, - { - "x": -60.256616087903716, - "y": -4512.4131247938685, - "rotation": 0.30211553709489963, - "action": "CARVE_RIGHT" - }, - { - "x": -58.71782751806812, - "y": -4518.291284341577, - "rotation": 0.3405127806387749, - "action": "CARVE_RIGHT" - }, - { - "x": -57.00503072377334, - "y": -4524.010414174251, - "rotation": 0.37891002418265013, - "action": "CARVE_RIGHT" - }, - { - "x": -55.11825996292971, - "y": -4529.570028918626, - "rotation": 0.4173072677265254, - "action": "CARVE_RIGHT" - }, - { - "x": -53.05758608941114, - "y": -4534.969678017354, - "rotation": 0.4557045112704006, - "action": "CARVE_RIGHT" - }, - { - "x": -50.82311646510705, - "y": -4540.208945645901, - "rotation": 0.4941017548142759, - "action": "CARVE_RIGHT" - }, - { - "x": -48.4149948721725, - "y": -4545.287450629618, - "rotation": 0.5324989983581512, - "action": "CARVE_RIGHT" - }, - { - "x": -45.833401425475834, - "y": -4550.204846361014, - "rotation": 0.5708962419020265, - "action": "CARVE_RIGHT" - }, - { - "x": -43.078552485243534, - "y": -4554.960820717194, - "rotation": 0.6092934854459018, - "action": "CARVE_RIGHT" - }, - { - "x": -40.150700569901836, - "y": -4559.555095977504, - "rotation": 0.6476907289897771, - "action": "CARVE_RIGHT" - }, - { - "x": -37.05013426911471, - "y": -4563.987428741341, - "rotation": 0.6860879725336524, - "action": "CARVE_RIGHT" - }, - { - "x": -33.77717815701768, - "y": -4568.257609846165, - "rotation": 0.7244852160775277, - "action": "CARVE_RIGHT" - }, - { - "x": -30.332192705647223, - "y": -4572.36546428568, - "rotation": 0.762882459621403, - "action": "CARVE_RIGHT" - }, - { - "x": -26.715574198565157, - "y": -4576.310851128208, - "rotation": 0.8012797031652783, - "action": "CARVE_RIGHT" - }, - { - "x": -22.9277546446777, - "y": -4580.093663435245, - "rotation": 0.8396769467091536, - "action": "NOTHING" - }, - { - "x": -18.738460233660117, - "y": -4583.501438681502, - "rotation": 0.8361862882051649, - "action": "NOTHING" - }, - { - "x": -14.568513840190644, - "y": -4586.92388028548, - "rotation": 0.8326956297011763, - "action": "NOTHING" - }, - { - "x": -10.417869932396455, - "y": -4590.360998601956, - "rotation": 0.8292049711971876, - "action": "NOTHING" - }, - { - "x": -6.286483410168639, - "y": -4593.812804290965, - "rotation": 0.825714312693199, - "action": "NOTHING" - }, - { - "x": -2.1743096041585757, - "y": -4597.279308317036, - "rotation": 0.8222236541892103, - "action": "NOTHING" - }, - { - "x": 1.9186957252234835, - "y": -4600.76052194844, - "rotation": 0.8187329956852216, - "action": "NOTHING" - }, - { - "x": 5.992576388807611, - "y": -4604.256456756432, - "rotation": 0.815242337181233, - "action": "NOTHING" - }, - { - "x": 10.047375769661205, - "y": -4607.767124614497, - "rotation": 0.8117516786772443, - "action": "NOTHING" - }, - { - "x": 14.083136824083788, - "y": -4611.292537697598, - "rotation": 0.8082610201732556, - "action": "NOTHING" - }, - { - "x": 18.099902082599613, - "y": -4614.8327084814255, - "rotation": 0.804770361669267, - "action": "NOTHING" - }, - { - "x": 22.097713650948066, - "y": -4618.3876497416495, - "rotation": 0.8012797031652783, - "action": "NOTHING" - }, - { - "x": 26.076613211071905, - "y": -4621.957374553171, - "rotation": 0.7977890446612896, - "action": "NOTHING" - }, - { - "x": 30.036642022103297, - "y": -4625.541896289376, - "rotation": 0.794298386157301, - "action": "NOTHING" - }, - { - "x": 33.97784092134769, - "y": -4629.141228621398, - "rotation": 0.7908077276533123, - "action": "CARVE_LEFT" - }, - { - "x": 37.351386770780515, - "y": -4633.263359178928, - "rotation": 0.752410484109437, - "action": "CARVE_LEFT" - }, - { - "x": 40.5517618595179, - "y": -4637.543544968099, - "rotation": 0.7140132405655617, - "action": "CARVE_LEFT" - }, - { - "x": 43.579291246177036, - "y": -4641.982002460561, - "rotation": 0.6756159970216864, - "action": "CARVE_LEFT" - }, - { - "x": 46.43426273814398, - "y": -4646.57898168843, - "rotation": 0.6372187534778111, - "action": "CARVE_LEFT" - }, - { - "x": 49.116926980716464, - "y": -4651.334766163428, - "rotation": 0.5988215099339358, - "action": "CARVE_LEFT" - }, - { - "x": 51.62749754604641, - "y": -4656.2496727962, - "rotation": 0.5604242663900605, - "action": "CARVE_LEFT" - }, - { - "x": 53.9661510218827, - "y": -4661.324051815815, - "rotation": 0.5220270228461852, - "action": "CARVE_LEFT" - }, - { - "x": 56.13302710011455, - "y": -4666.558286689453, - "rotation": 0.48362977930230994, - "action": "CARVE_LEFT" - }, - { - "x": 58.128228665116005, - "y": -4671.952794042261, - "rotation": 0.4452325357584347, - "action": "CARVE_LEFT" - }, - { - "x": 59.951821881891895, - "y": -4677.508023577407, - "rotation": 0.40683529221455944, - "action": "CARVE_LEFT" - }, - { - "x": 61.60383628402576, - "y": -4683.224457996297, - "rotation": 0.3684380486706842, - "action": "CARVE_LEFT" - }, - { - "x": 63.08426486143008, - "y": -4689.102612918989, - "rotation": 0.33004080512680894, - "action": "CARVE_LEFT" - }, - { - "x": 64.39306414789935, - "y": -4695.143036804769, - "rotation": 0.2916435615829337, - "action": "CARVE_LEFT" - }, - { - "x": 65.53015430846632, - "y": -4701.346310872921, - "rotation": 0.25324631803905845, - "action": "CARVE_LEFT" - }, - { - "x": 66.49541922656192, - "y": -4707.713049023669, - "rotation": 0.2148490744951832, - "action": "CARVE_LEFT" - }, - { - "x": 67.28870659097915, - "y": -4714.2438977592965, - "rotation": 0.17645183095130795, - "action": "CARVE_LEFT" - }, - { - "x": 67.90982798264156, - "y": -4720.9395361054485, - "rotation": 0.1380545874074327, - "action": "CARVE_LEFT" - }, - { - "x": 68.3585589611766, - "y": -4727.800675532607, - "rotation": 0.09965734386355746, - "action": "CARVE_LEFT" - }, - { - "x": 68.63463915129425, - "y": -4734.8280598777455, - "rotation": 0.0612601003196822, - "action": "CARVE_LEFT" - }, - { - "x": 68.73777232897145, - "y": -4742.022465266163, - "rotation": 0.022862856775806947, - "action": "CARVE_LEFT" - }, - { - "x": 68.66763050011828, - "y": -4749.254388702006, - "rotation": 6.267650920411518, - "action": "CARVE_LEFT" - }, - { - "x": 68.42389997645584, - "y": -4756.332026486858, - "rotation": 6.229253676867643, - "action": "CARVE_LEFT" - }, - { - "x": 68.00630450036773, - "y": -4763.2545978929775, - "rotation": 6.190856433323767, - "action": "CARVE_LEFT" - }, - { - "x": 67.41460515507448, - "y": -4770.021357712351, - "rotation": 6.152459189779892, - "action": "CARVE_LEFT" - }, - { - "x": 66.64860027501012, - "y": -4776.631596172012, - "rotation": 6.114061946236016, - "action": "CARVE_LEFT" - }, - { - "x": 65.70812535640034, - "y": -4783.084638849538, - "rotation": 6.075664702692141, - "action": "CARVE_LEFT" - }, - { - "x": 64.59305296804196, - "y": -4789.379846588753, - "rotation": 6.037267459148265, - "action": "CARVE_LEFT" - }, - { - "x": 63.3032926622831, - "y": -4795.516615415603, - "rotation": 5.99887021560439, - "action": "CARVE_LEFT" - }, - { - "x": 61.838790886203796, - "y": -4801.494376454231, - "rotation": 5.960472972060514, - "action": "CARVE_LEFT" - }, - { - "x": 60.199530892996485, - "y": -4807.312595843236, - "rotation": 5.9220757285166385, - "action": "CARVE_LEFT" - }, - { - "x": 58.38553265354598, - "y": -4812.970774652117, - "rotation": 5.883678484972763, - "action": "CARVE_LEFT" - }, - { - "x": 56.39685276820851, - "y": -4818.468448797914, - "rotation": 5.8452812414288875, - "action": "CARVE_LEFT" - }, - { - "x": 54.23358437878942, - "y": -4823.805188962022, - "rotation": 5.806883997885012, - "action": "CARVE_LEFT" - }, - { - "x": 51.89585708071904, - "y": -4828.980600507203, - "rotation": 5.7684867543411364, - "action": "CARVE_LEFT" - }, - { - "x": 49.38383683542632, - "y": -4833.994323394781, - "rotation": 5.730089510797261, - "action": "CARVE_LEFT" - }, - { - "x": 46.69772588290986, - "y": -4838.8460321020175, - "rotation": 5.691692267253385, - "action": "CARVE_LEFT" - }, - { - "x": 43.83776265450579, - "y": -4843.535435539682, - "rotation": 5.65329502370951, - "action": "CARVE_LEFT" - }, - { - "x": 40.804221685852184, - "y": -4848.0622769697975, - "rotation": 5.614897780165634, - "action": "CARVE_LEFT" - }, - { - "x": 37.597413530049565, - "y": -4852.426333923578, - "rotation": 5.576500536621759, - "action": "CARVE_LEFT" - }, - { - "x": 34.21768467101698, - "y": -4856.627418119545, - "rotation": 5.538103293077883, - "action": "CARVE_LEFT" - }, - { - "x": 30.665417437043384, - "y": -4860.665375381833, - "rotation": 5.499706049534008, - "action": "CARVE_LEFT" - }, - { - "x": 26.941029914533736, - "y": -4864.540085558672, - "rotation": 5.461308805990132, - "action": "CARVE_LEFT" - }, - { - "x": 23.044975861949563, - "y": -4868.25146244106, - "rotation": 5.422911562446257, - "action": "CARVE_LEFT" - }, - { - "x": 18.9777446239434, - "y": -4871.799453681609, - "rotation": 5.384514318902381, - "action": "NOTHING" - }, - { - "x": 14.47869592219304, - "y": -4874.943481154793, - "rotation": 5.38800497740637, - "action": "NOTHING" - }, - { - "x": 9.999691330200747, - "y": -4878.101989312123, - "rotation": 5.391495635910358, - "action": "NOTHING" - }, - { - "x": 5.540678288503289, - "y": -4881.274983495714, - "rotation": 5.3949862944143465, - "action": "NOTHING" - }, - { - "x": 1.101604685631032, - "y": -4884.462469365276, - "rotation": 5.398476952918335, - "action": "NOTHING" - }, - { - "x": -3.31758114293134, - "y": -4887.664452897324, - "rotation": 5.401967611422323, - "action": "NOTHING" - }, - { - "x": -7.716930415781821, - "y": -4890.880940384394, - "rotation": 5.405458269926312, - "action": "NOTHING" - }, - { - "x": -12.096493906635787, - "y": -4894.111938434263, - "rotation": 5.4089489284303, - "action": "NOTHING" - }, - { - "x": -16.45632194535844, - "y": -4897.357453969158, - "rotation": 5.412439586934289, - "action": "NOTHING" - }, - { - "x": -20.796464418994937, - "y": -4900.617494224986, - "rotation": 5.415930245438277, - "action": "NOTHING" - }, - { - "x": -25.116970772798297, - "y": -4903.892066750549, - "rotation": 5.419420903942266, - "action": "NOTHING" - }, - { - "x": -29.41789001125501, - "y": -4907.18117940677, - "rotation": 5.422911562446254, - "action": "CARVE_RIGHT" - }, - { - "x": -33.11402727291029, - "y": -4911.0264990938795, - "rotation": 5.46130880599013, - "action": "CARVE_RIGHT" - }, - { - "x": -36.635906096364494, - "y": -4915.029913036405, - "rotation": 5.499706049534005, - "action": "CARVE_RIGHT" - }, - { - "x": -39.983920589806694, - "y": -4919.19157551376, - "rotation": 5.538103293077881, - "action": "CARVE_RIGHT" - }, - { - "x": -43.158427444577114, - "y": -4923.5116745160385, - "rotation": 5.576500536621756, - "action": "CARVE_RIGHT" - }, - { - "x": -46.159746024682356, - "y": -4927.990431662814, - "rotation": 5.614897780165632, - "action": "CARVE_RIGHT" - }, - { - "x": -48.988158456109666, - "y": -4932.628102122119, - "rotation": 5.653295023709507, - "action": "CARVE_RIGHT" - }, - { - "x": -51.643909715940566, - "y": -4937.424974529607, - "rotation": 5.691692267253383, - "action": "CARVE_RIGHT" - }, - { - "x": -54.12720772126436, - "y": -4942.3813709079, - "rotation": 5.730089510797258, - "action": "CARVE_RIGHT" - }, - { - "x": -56.438223417891905, - "y": -4947.497646586117, - "rotation": 5.768486754341134, - "action": "CARVE_RIGHT" - }, - { - "x": -58.577090868870066, - "y": -4952.774190119582, - "rotation": 5.806883997885009, - "action": "CARVE_RIGHT" - }, - { - "x": -60.543907342797326, - "y": -4958.211423209715, - "rotation": 5.845281241428885, - "action": "CARVE_RIGHT" - }, - { - "x": -62.33873340194096, - "y": -4963.809800624101, - "rotation": 5.88367848497276, - "action": "CARVE_RIGHT" - }, - { - "x": -63.9615929901562, - "y": -4969.5698101167445, - "rotation": 5.922075728516636, - "action": "CARVE_RIGHT" - }, - { - "x": -65.4124735206078, - "y": -4975.491972348502, - "rotation": 5.960472972060511, - "action": "CARVE_RIGHT" - }, - { - "x": -66.69132596329452, - "y": -4981.5768408076865, - "rotation": 5.998870215604387, - "action": "CARVE_RIGHT" - }, - { - "x": -67.7980649323767, - "y": -4987.825001730866, - "rotation": 6.0372674591482625, - "action": "CARVE_RIGHT" - }, - { - "x": -68.73256877330783, - "y": -4994.237074023825, - "rotation": 6.075664702692138, - "action": "CARVE_RIGHT" - }, - { - "x": -69.4946796497699, - "y": -5000.8137091827175, - "rotation": 6.1140619462360135, - "action": "CARVE_RIGHT" - }, - { - "x": -70.08420363041358, - "y": -5007.55559121539, - "rotation": 6.152459189779889, - "action": "CARVE_RIGHT" - }, - { - "x": -70.50091077540316, - "y": -5014.463436562885, - "rotation": 6.190856433323765, - "action": "CARVE_RIGHT" - }, - { - "x": -70.74453522276698, - "y": -5021.537994021121, - "rotation": 6.22925367686764, - "action": "CARVE_RIGHT" - }, - { - "x": -70.8147752745537, - "y": -5028.78004466275, - "rotation": 6.267650920411516, - "action": "CARVE_RIGHT" - }, - { - "x": -70.71130213121505, - "y": -5035.998165511523, - "rotation": 0.022862856775804907, - "action": "CARVE_RIGHT" - }, - { - "x": -70.43381060643979, - "y": -5043.061474169357, - "rotation": 0.06126010031968016, - "action": "CARVE_RIGHT" - }, - { - "x": -69.98203292377215, - "y": -5049.969197993062, - "rotation": 0.09965734386355542, - "action": "CARVE_RIGHT" - }, - { - "x": -69.35573862683364, - "y": -5056.720599839542, - "rotation": 0.13805458740743068, - "action": "CARVE_RIGHT" - }, - { - "x": -68.55473448974686, - "y": -5063.314977981148, - "rotation": 0.17645183095130593, - "action": "CARVE_RIGHT" - }, - { - "x": -67.57886442776083, - "y": -5069.751666021233, - "rotation": 0.21484907449518117, - "action": "CARVE_RIGHT" - }, - { - "x": -66.42800940807753, - "y": -5076.030032809883, - "rotation": 0.25324631803905645, - "action": "CARVE_RIGHT" - }, - { - "x": -65.10208736087897, - "y": -5082.149482359849, - "rotation": 0.2916435615829317, - "action": "CARVE_RIGHT" - }, - { - "x": -63.60105309055468, - "y": -5088.10945376266, - "rotation": 0.33004080512680695, - "action": "CARVE_RIGHT" - }, - { - "x": -61.92489818712893, - "y": -5093.9094211049305, - "rotation": 0.3684380486706822, - "action": "CARVE_RIGHT" - }, - { - "x": -60.073650937887365, - "y": -5099.548893384843, - "rotation": 0.40683529221455744, - "action": "CARVE_RIGHT" - }, - { - "x": -58.04737623920256, - "y": -5105.027414428834, - "rotation": 0.4452325357584327, - "action": "CARVE_RIGHT" - }, - { - "x": -55.84617550855818, - "y": -5110.344562808457, - "rotation": 0.48362977930230794, - "action": "CARVE_RIGHT" - }, - { - "x": -53.470186596771164, - "y": -5115.499951757434, - "rotation": 0.5220270228461832, - "action": "CARVE_RIGHT" - }, - { - "x": -50.919583700411614, - "y": -5120.493229088891, - "rotation": 0.5604242663900585, - "action": "CARVE_RIGHT" - }, - { - "x": -48.19457727441996, - "y": -5125.324077112785, - "rotation": 0.5988215099339338, - "action": "CARVE_RIGHT" - }, - { - "x": -45.295413944920874, - "y": -5129.992212553509, - "rotation": 0.6372187534778091, - "action": "CARVE_RIGHT" - }, - { - "x": -42.22237642223363, - "y": -5134.497386467688, - "rotation": 0.6756159970216844, - "action": "CARVE_RIGHT" - }, - { - "x": -38.9757834140784, - "y": -5138.839384162155, - "rotation": 0.7140132405655597, - "action": "CARVE_RIGHT" - }, - { - "x": -35.55598953897813, - "y": -5143.018025112114, - "rotation": 0.752410484109435, - "action": "CARVE_RIGHT" - }, - { - "x": -31.96338523985551, - "y": -5147.033162879486, - "rotation": 0.7908077276533103, - "action": "NOTHING" - }, - { - "x": -27.990706107657818, - "y": -5150.693638929428, - "rotation": 0.7873170691493216, - "action": "NOTHING" - }, - { - "x": -24.037089435001835, - "y": -5154.369076428881, - "rotation": 0.783826410645333, - "action": "NOTHING" - }, - { - "x": -20.102494680395758, - "y": -5158.059489346251, - "rotation": 0.7803357521413443, - "action": "NOTHING" - }, - { - "x": -16.18688172271634, - "y": -5161.76489194646, - "rotation": 0.7768450936373557, - "action": "NOTHING" - }, - { - "x": -12.290210860230111, - "y": -5165.4852987902095, - "rotation": 0.773354435133367, - "action": "NOTHING" - }, - { - "x": -8.41244280961677, - "y": -5169.220724733242, - "rotation": 0.7698637766293783, - "action": "NOTHING" - }, - { - "x": -4.553538704994736, - "y": -5172.971184925604, - "rotation": 0.7663731181253897, - "action": "NOTHING" - }, - { - "x": -0.7134600969488343, - "y": -5176.736694810914, - "rotation": 0.762882459621401, - "action": "NOTHING" - }, - { - "x": 3.107831048439846, - "y": -5180.517270125627, - "rotation": 0.7593918011174123, - "action": "NOTHING" - }, - { - "x": 6.910372350561966, - "y": -5184.312926898305, - "rotation": 0.7559011426134237, - "action": "NOTHING" - }, - { - "x": 10.69420101524581, - "y": -5188.123681448888, - "rotation": 0.752410484109435, - "action": "NOTHING" - }, - { - "x": 14.459353835721021, - "y": -5191.949550387967, - "rotation": 0.7489198256054463, - "action": "NOTHING" - }, - { - "x": 18.20586719358021, - "y": -5195.790550616056, - "rotation": 0.7454291671014577, - "action": "NOTHING" - }, - { - "x": 21.933777059738443, - "y": -5199.64669932287, - "rotation": 0.741938508597469, - "action": "CARVE_LEFT" - }, - { - "x": 25.114275985313842, - "y": -5204.007450107042, - "rotation": 0.7035412650535937, - "action": "CARVE_LEFT" - }, - { - "x": 28.120475303394947, - "y": -5208.527846913171, - "rotation": 0.6651440215097184, - "action": "CARVE_LEFT" - }, - { - "x": 30.95265811890743, - "y": -5213.208144076905, - "rotation": 0.6267467779658431, - "action": "CARVE_LEFT" - }, - { - "x": 33.611070384353084, - "y": -5218.048629404642, - "rotation": 0.5883495344219678, - "action": "CARVE_LEFT" - }, - { - "x": 36.09592098873282, - "y": -5223.0496240928605, - "rotation": 0.5499522908780925, - "action": "CARVE_LEFT" - }, - { - "x": 38.4073818462699, - "y": -5228.211482647644, - "rotation": 0.5115550473342172, - "action": "CARVE_LEFT" - }, - { - "x": 40.545587984933846, - "y": -5233.534592804379, - "rotation": 0.47315780379034195, - "action": "CARVE_LEFT" - }, - { - "x": 42.51063763476549, - "y": -5239.01937544764, - "rotation": 0.4347605602464667, - "action": "CARVE_LEFT" - }, - { - "x": 44.302592316003526, - "y": -5244.6662845312485, - "rotation": 0.39636331670259145, - "action": "CARVE_LEFT" - }, - { - "x": 45.92147692701307, - "y": -5250.475806998517, - "rotation": 0.3579660731587162, - "action": "CARVE_LEFT" - }, - { - "x": 47.367279832016585, - "y": -5256.448462702674, - "rotation": 0.31956882961484095, - "action": "CARVE_LEFT" - }, - { - "x": 48.639952948627666, - "y": -5262.584804327464, - "rotation": 0.2811715860709657, - "action": "CARVE_LEFT" - }, - { - "x": 49.73941183518802, - "y": -5268.885417307931, - "rotation": 0.24277434252709046, - "action": "CARVE_LEFT" - }, - { - "x": 50.66553577790818, - "y": -5275.3509197513795, - "rotation": 0.2043770989832152, - "action": "CARVE_LEFT" - }, - { - "x": 51.41816787781227, - "y": -5281.981962358512, - "rotation": 0.16597985543933996, - "action": "CARVE_LEFT" - }, - { - "x": 51.99711513748732, - "y": -5288.779228344746, - "rotation": 0.12758261189546471, - "action": "CARVE_LEFT" - }, - { - "x": 52.4021485476375, - "y": -5295.743433361712, - "rotation": 0.08918536835158947, - "action": "CARVE_LEFT" - }, - { - "x": 52.633003173443754, - "y": -5302.8753254189205, - "rotation": 0.05078812480771421, - "action": "CARVE_LEFT" - }, - { - "x": 52.689378240729155, - "y": -5310.175684805615, - "rotation": 0.012390881263838957, - "action": "CARVE_LEFT" - }, - { - "x": 52.5709484120576, - "y": -5317.425303795119, - "rotation": 6.25717894489955, - "action": "CARVE_LEFT" - }, - { - "x": 52.277415401159374, - "y": -5324.518982498473, - "rotation": 6.218781701355675, - "action": "CARVE_LEFT" - }, - { - "x": 51.80851831391194, - "y": -5331.455954867588, - "rotation": 6.180384457811799, - "action": "CARVE_LEFT" - }, - { - "x": 51.164033558603066, - "y": -5338.235490337709, - "rotation": 6.141987214267924, - "action": "CARVE_LEFT" - }, - { - "x": 50.34377475639599, - "y": -5344.856893742811, - "rotation": 6.103589970724048, - "action": "CARVE_LEFT" - }, - { - "x": 49.34759265199593, - "y": -5351.319505231185, - "rotation": 6.065192727180173, - "action": "CARVE_LEFT" - }, - { - "x": 48.17537502451774, - "y": -5357.622700181218, - "rotation": 6.026795483636297, - "action": "CARVE_LEFT" - }, - { - "x": 46.82704659855404, - "y": -5363.765889117354, - "rotation": 5.988398240092422, - "action": "CARVE_LEFT" - }, - { - "x": 45.30256895544361, - "y": -5369.748517626255, - "rotation": 5.950000996548546, - "action": "CARVE_LEFT" - }, - { - "x": 43.601940444739476, - "y": -5375.570066273136, - "rotation": 5.911603753004671, - "action": "CARVE_LEFT" - }, - { - "x": 41.72519609587628, - "y": -5381.2300505182975, - "rotation": 5.873206509460795, - "action": "CARVE_LEFT" - }, - { - "x": 39.67240753003654, - "y": -5386.728020633842, - "rotation": 5.8348092659169195, - "action": "CARVE_LEFT" - }, - { - "x": 37.44368287221533, - "y": -5392.063561620576, - "rotation": 5.796412022373044, - "action": "CARVE_LEFT" - }, - { - "x": 35.039166663483016, - "y": -5397.236293125105, - "rotation": 5.7580147788291685, - "action": "NOTHING" - }, - { - "x": 32.384986249473044, - "y": -5402.178561279348, - "rotation": 5.761505437333157, - "action": "NOTHING" - }, - { - "x": 29.74829731953794, - "y": -5407.137777856025, - "rotation": 5.764996095837145, - "action": "NOTHING" - }, - { - "x": 27.129087451142976, - "y": -5412.113976664769, - "rotation": 5.768486754341134, - "action": "NOTHING" - }, - { - "x": 24.52734457666699, - "y": -5417.107191762275, - "rotation": 5.771977412845122, - "action": "NOTHING" - }, - { - "x": 21.94305698256814, - "y": -5422.117457451673, - "rotation": 5.775468071349111, - "action": "NOTHING" - }, - { - "x": 19.376213308551538, - "y": -5427.144808281907, - "rotation": 5.778958729853099, - "action": "NOTHING" - }, - { - "x": 16.82680254673869, - "y": -5432.189279047111, - "rotation": 5.7824493883570875, - "action": "NOTHING" - }, - { - "x": 14.294814040838814, - "y": -5437.250904785986, - "rotation": 5.785940046861076, - "action": "NOTHING" - }, - { - "x": 11.780237485321988, - "y": -5442.329720781182, - "rotation": 5.789430705365064, - "action": "NOTHING" - }, - { - "x": 9.28306292459414, - "y": -5447.425762558679, - "rotation": 5.792921363869053, - "action": "NOTHING" - }, - { - "x": 6.803280752173862, - "y": -5452.539065887169, - "rotation": 5.796412022373041, - "action": "NOTHING" - }, - { - "x": 4.340881709871072, - "y": -5457.669666777445, - "rotation": 5.79990268087703, - "action": "CARVE_RIGHT" - }, - { - "x": 2.3005194902676154, - "y": -5463.1920557440935, - "rotation": 5.838299924420905, - "action": "CARVE_RIGHT" - }, - { - "x": 0.43587367701332447, - "y": -5468.878669837032, - "rotation": 5.876697167964781, - "action": "CARVE_RIGHT" - }, - { - "x": -1.2530995719003757, - "y": -5474.729979050592, - "rotation": 5.915094411508656, - "action": "CARVE_RIGHT" - }, - { - "x": -2.7664075162138246, - "y": -5480.746486332515, - "rotation": 5.953491655052532, - "action": "CARVE_RIGHT" - }, - { - "x": -4.104020921044746, - "y": -5486.9287275044535, - "rotation": 5.991888898596407, - "action": "CARVE_RIGHT" - }, - { - "x": -5.2658741443369035, - "y": -5493.277271182654, - "rotation": 6.030286142140283, - "action": "CARVE_RIGHT" - }, - { - "x": -6.251865224112155, - "y": -5499.792718698812, - "rotation": 6.068683385684158, - "action": "CARVE_RIGHT" - }, - { - "x": -7.061855965526384, - "y": -5506.475704021115, - "rotation": 6.107080629228034, - "action": "CARVE_RIGHT" - }, - { - "x": -7.695672027729679, - "y": -5513.326893675456, - "rotation": 6.1454778727719095, - "action": "CARVE_RIGHT" - }, - { - "x": -8.153103010531245, - "y": -5520.3469866668265, - "rotation": 6.183875116315785, - "action": "CARVE_RIGHT" - }, - { - "x": -8.433902540869392, - "y": -5527.5367144008915, - "rotation": 6.2222723598596605, - "action": "CARVE_RIGHT" - }, - { - "x": -8.53778835908711, - "y": -5534.896840605736, - "rotation": 6.260669603403536, - "action": "CARVE_RIGHT" - }, - { - "x": -8.464446578134915, - "y": -5542.291914635821, - "rotation": 0.01588153976782536, - "action": "CARVE_RIGHT" - }, - { - "x": -8.213578059560541, - "y": -5549.52875303356, - "rotation": 0.054278783311700614, - "action": "CARVE_RIGHT" - }, - { - "x": -7.784921056398221, - "y": -5556.606589053561, - "rotation": 0.09267602685557587, - "action": "CARVE_RIGHT" - }, - { - "x": -7.17825112343702, - "y": -5563.52469143299, - "rotation": 0.13107327039945113, - "action": "CARVE_RIGHT" - }, - { - "x": -6.393381027691066, - "y": -5570.282364306974, - "rotation": 0.16947051394332638, - "action": "CARVE_RIGHT" - }, - { - "x": -5.430160659071219, - "y": -5576.878947124195, - "rotation": 0.20786775748720163, - "action": "CARVE_RIGHT" - }, - { - "x": -4.288476941257756, - "y": -5583.313814562672, - "rotation": 0.24626500103107687, - "action": "CARVE_RIGHT" - }, - { - "x": -2.968253742773642, - "y": -5589.586376445728, - "rotation": 0.28466224457495215, - "action": "CARVE_RIGHT" - }, - { - "x": -1.4694517882579385, - "y": -5595.6960776581545, - "rotation": 0.3230594881188274, - "action": "CARVE_RIGHT" - }, - { - "x": 0.2079314300610644, - "y": -5601.642398062554, - "rotation": 0.36145673166270265, - "action": "CARVE_RIGHT" - }, - { - "x": 2.06386174069344, - "y": -5607.424852415877, - "rotation": 0.3998539752065779, - "action": "CARVE_RIGHT" - }, - { - "x": 4.098268381016359, - "y": -5613.042990286141, - "rotation": 0.43825121875045314, - "action": "CARVE_RIGHT" - }, - { - "x": 6.311044085204406, - "y": -5618.496395969342, - "rotation": 0.4766484622943284, - "action": "CARVE_RIGHT" - }, - { - "x": 8.702045171961897, - "y": -5623.7846884065475, - "rotation": 0.5150457058382036, - "action": "CARVE_RIGHT" - }, - { - "x": 11.271091632057637, - "y": -5628.907521101176, - "rotation": 0.5534429493820789, - "action": "CARVE_RIGHT" - }, - { - "x": 14.017967215662532, - "y": -5633.864582036465, - "rotation": 0.5918401929259542, - "action": "CARVE_RIGHT" - }, - { - "x": 16.942419519490493, - "y": -5638.655593593123, - "rotation": 0.6302374364698295, - "action": "CARVE_RIGHT" - }, - { - "x": 20.04416007374305, - "y": -5643.280312467162, - "rotation": 0.6686346800137049, - "action": "CARVE_RIGHT" - }, - { - "x": 23.32286442885811, - "y": -5647.738529587921, - "rotation": 0.7070319235575802, - "action": "CARVE_RIGHT" - }, - { - "x": 26.778172242063253, - "y": -5652.03007003627, - "rotation": 0.7454291671014555, - "action": "CARVE_RIGHT" - }, - { - "x": 30.409687363734037, - "y": -5656.154792962998, - "rotation": 0.7838264106453308, - "action": "CARVE_RIGHT" - }, - { - "x": 34.21697792355769, - "y": -5660.112591507381, - "rotation": 0.8222236541892061, - "action": "NOTHING" - }, - { - "x": 38.42741893724961, - "y": -5663.693687418951, - "rotation": 0.8187329956852174, - "action": "NOTHING" - }, - { - "x": 42.618024116486275, - "y": -5667.289787482363, - "rotation": 0.8152423371812287, - "action": "NOTHING" - }, - { - "x": 46.78883902405063, - "y": -5670.900902228771, - "rotation": 0.8117516786772401, - "action": "NOTHING" - }, - { - "x": 50.93990879041496, - "y": -5674.527042494724, - "rotation": 0.8082610201732514, - "action": "NOTHING" - }, - { - "x": 55.07127811474638, - "y": -5678.1682194214045, - "rotation": 0.8047703616692627, - "action": "NOTHING" - }, - { - "x": 59.18299126591009, - "y": -5681.8244444538705, - "rotation": 0.8012797031652741, - "action": "NOTHING" - }, - { - "x": 63.27509208347049, - "y": -5685.495729340297, - "rotation": 0.7977890446612854, - "action": "NOTHING" - }, - { - "x": 67.34762397868998, - "y": -5689.182086131223, - "rotation": 0.7942983861572968, - "action": "NOTHING" - }, - { - "x": 71.40062993552563, - "y": -5692.883527178797, - "rotation": 0.7908077276533081, - "action": "NOTHING" - }, - { - "x": 75.43415251162362, - "y": -5696.600065136026, - "rotation": 0.7873170691493194, - "action": "NOTHING" - }, - { - "x": 79.4482338393115, - "y": -5700.331712956028, - "rotation": 0.7838264106453308, - "action": "NOTHING" - }, - { - "x": 83.44291562658822, - "y": -5704.078483891279, - "rotation": 0.7803357521413421, - "action": "CARVE_LEFT" - }, - { - "x": 86.85983600507294, - "y": -5708.357198116053, - "rotation": 0.7419385085974668, - "action": "CARVE_LEFT" - }, - { - "x": 90.09883255601298, - "y": -5712.798154418809, - "rotation": 0.7035412650535915, - "action": "CARVE_LEFT" - }, - { - "x": 93.16023731958909, - "y": -5717.40156319224, - "rotation": 0.6651440215097162, - "action": "CARVE_LEFT" - }, - { - "x": 96.04434506304214, - "y": -5722.167668408914, - "rotation": 0.6267467779658409, - "action": "CARVE_LEFT" - }, - { - "x": 98.7514133698715, - "y": -5727.09674754036, - "rotation": 0.5883495344219656, - "action": "CARVE_LEFT" - }, - { - "x": 101.28166272883291, - "y": -5732.1891114763375, - "rotation": 0.5499522908780903, - "action": "CARVE_LEFT" - }, - { - "x": 103.63527662273654, - "y": -5737.445104444287, - "rotation": 0.511555047334215, - "action": "CARVE_LEFT" - }, - { - "x": 105.81240161704552, - "y": -5742.8651039289625, - "rotation": 0.4731578037903397, - "action": "CARVE_LEFT" - }, - { - "x": 107.81314744827546, - "y": -5748.44952059225, - "rotation": 0.4347605602464645, - "action": "CARVE_LEFT" - }, - { - "x": 109.63758711219523, - "y": -5754.198798193158, - "rotation": 0.39636331670258923, - "action": "CARVE_LEFT" - }, - { - "x": 111.28575695182971, - "y": -5760.113413507995, - "rotation": 0.357966073158714, - "action": "CARVE_LEFT" - }, - { - "x": 112.75765674526463, - "y": -5766.193876250725, - "rotation": 0.31956882961483873, - "action": "CARVE_LEFT" - }, - { - "x": 114.05324979325411, - "y": -5772.440728993507, - "rotation": 0.2811715860709635, - "action": "CARVE_LEFT" - }, - { - "x": 115.17246300663136, - "y": -5778.854547087403, - "rotation": 0.24277434252708824, - "action": "CARVE_LEFT" - }, - { - "x": 116.11518699352276, - "y": -5785.435938583278, - "rotation": 0.204377098983213, - "action": "CARVE_LEFT" - }, - { - "x": 116.8812761463659, - "y": -5792.185544152868, - "rotation": 0.16597985543933774, - "action": "CARVE_LEFT" - }, - { - "x": 117.47054872873215, - "y": -5799.104037010035, - "rotation": 0.1275826118954625, - "action": "CARVE_LEFT" - }, - { - "x": 117.8827869619537, - "y": -5806.192122832195, - "rotation": 0.08918536835158725, - "action": "CARVE_LEFT" - }, - { - "x": 118.11773711155607, - "y": -5813.45053968192, - "rotation": 0.05078812480771199, - "action": "CARVE_LEFT" - }, - { - "x": 118.1751095734961, - "y": -5820.880057928725, - "rotation": 0.012390881263836737, - "action": "CARVE_LEFT" - }, - { - "x": 118.05459015033311, - "y": -5828.257590333924, - "rotation": 6.257178944899548, - "action": "CARVE_LEFT" - }, - { - "x": 117.75589166572676, - "y": -5835.476100689853, - "rotation": 6.218781701355672, - "action": "CARVE_LEFT" - }, - { - "x": 117.27876430548996, - "y": -5842.534833628335, - "rotation": 6.180384457811797, - "action": "CARVE_LEFT" - }, - { - "x": 116.62299552792403, - "y": -5849.433069236058, - "rotation": 6.141987214267921, - "action": "CARVE_LEFT" - }, - { - "x": 115.78840997435566, - "y": -5856.170122970047, - "rotation": 6.1035899707240455, - "action": "CARVE_LEFT" - }, - { - "x": 114.77486937987507, - "y": -5862.745345573316, - "rotation": 6.06519272718017, - "action": "CARVE_LEFT" - }, - { - "x": 113.58227248427518, - "y": -5869.158122990715, - "rotation": 6.0267954836362945, - "action": "CARVE_LEFT" - }, - { - "x": 112.21055494319107, - "y": -5875.407876284961, - "rotation": 5.988398240092419, - "action": "CARVE_LEFT" - }, - { - "x": 110.65968923943954, - "y": -5881.49406155286, - "rotation": 5.950000996548543, - "action": "CARVE_LEFT" - }, - { - "x": 108.92968459455822, - "y": -5887.4161698417165, - "rotation": 5.911603753004668, - "action": "CARVE_LEFT" - }, - { - "x": 107.0205868805438, - "y": -5893.173727065928, - "rotation": 5.873206509460792, - "action": "CARVE_LEFT" - }, - { - "x": 104.93247853178899, - "y": -5898.76629392377, - "rotation": 5.834809265916917, - "action": "CARVE_LEFT" - }, - { - "x": 102.6654784572177, - "y": -5904.1934658143655, - "rotation": 5.796412022373041, - "action": "CARVE_LEFT" - }, - { - "x": 100.21974195261822, - "y": -5909.454872754844, - "rotation": 5.758014778829166, - "action": "CARVE_LEFT" - }, - { - "x": 97.59546061317361, - "y": -5914.550179297678, - "rotation": 5.71961753528529, - "action": "CARVE_LEFT" - }, - { - "x": 94.7928622461893, - "y": -5919.479084448218, - "rotation": 5.681220291741415, - "action": "CARVE_LEFT" - }, - { - "x": 91.81221078401707, - "y": -5924.241321582395, - "rotation": 5.642823048197539, - "action": "CARVE_LEFT" - }, - { - "x": 88.65380619717534, - "y": -5928.836658364628, - "rotation": 5.604425804653664, - "action": "CARVE_LEFT" - }, - { - "x": 85.31798440766508, - "y": -5933.2648966659, - "rotation": 5.566028561109788, - "action": "CARVE_LEFT" - }, - { - "x": 81.80511720248104, - "y": -5937.525872482021, - "rotation": 5.527631317565913, - "action": "CARVE_LEFT" - }, - { - "x": 78.11561214731789, - "y": -5941.619455852084, - "rotation": 5.489234074022037, - "action": "CARVE_LEFT" - }, - { - "x": 74.24991250047076, - "y": -5945.545550777087, - "rotation": 5.450836830478162, - "action": "CARVE_LEFT" - }, - { - "x": 70.20849712692987, - "y": -5949.304095138755, - "rotation": 5.412439586934286, - "action": "CARVE_LEFT" - }, - { - "x": 65.99188041266873, - "y": -5952.895060618533, - "rotation": 5.3740423433904105, - "action": "NOTHING" - }, - { - "x": 61.32760308465802, - "y": -5956.066926418183, - "rotation": 5.377533001894399, - "action": "NOTHING" - }, - { - "x": 56.68412195404924, - "y": -5959.253503789397, - "rotation": 5.381023660398387, - "action": "NOTHING" - }, - { - "x": 52.061381320456235, - "y": -5962.454796003908, - "rotation": 5.384514318902376, - "action": "NOTHING" - }, - { - "x": 47.45932593914742, - "y": -5965.670806656632, - "rotation": 5.388004977406364, - "action": "NOTHING" - }, - { - "x": 42.87790101998907, - "y": -5968.90153966486, - "rotation": 5.391495635910353, - "action": "NOTHING" - }, - { - "x": 38.31705222639097, - "y": -5972.146999267467, - "rotation": 5.394986294414341, - "action": "NOTHING" - }, - { - "x": 33.77672567425441, - "y": -5975.407190024108, - "rotation": 5.39847695291833, - "action": "NOTHING" - }, - { - "x": 29.256867930922407, - "y": -5978.682116814425, - "rotation": 5.401967611422318, - "action": "NOTHING" - }, - { - "x": 24.75742601413235, - "y": -5981.971784837255, - "rotation": 5.4054582699263065, - "action": "NOTHING" - }, - { - "x": 20.278347390970872, - "y": -5985.276199609837, - "rotation": 5.408948928430295, - "action": "NOTHING" - }, - { - "x": 15.819579976831069, - "y": -5988.595366967023, - "rotation": 5.412439586934283, - "action": "NOTHING" - }, - { - "x": 11.381072134372, - "y": -5991.929293060492, - "rotation": 5.415930245438272, - "action": "CARVE_RIGHT" - }, - { - "x": 7.565420014870783, - "y": -5995.835757823132, - "rotation": 5.454327488982147, - "action": "CARVE_RIGHT" - }, - { - "x": 3.928319451891517, - "y": -5999.903889364845, - "rotation": 5.492724732526023, - "action": "CARVE_RIGHT" - }, - { - "x": 0.46935462620896695, - "y": -6004.1338225868885, - "rotation": 5.531121976069898, - "action": "CARVE_RIGHT" - }, - { - "x": -2.811852808286553, - "y": -6008.5257261519955, - "rotation": 5.569519219613774, - "action": "CARVE_RIGHT" - }, - { - "x": -5.915643814236681, - "y": -6013.07980240305, - "rotation": 5.6079164631576495, - "action": "CARVE_RIGHT" - }, - { - "x": -8.842322060261155, - "y": -6017.79628728195, - "rotation": 5.646313706701525, - "action": "CARVE_RIGHT" - }, - { - "x": -11.59215401020311, - "y": -6022.675450248651, - "rotation": 5.6847109502454005, - "action": "CARVE_RIGHT" - }, - { - "x": -14.165369012173883, - "y": -6027.717594200394, - "rotation": 5.723108193789276, - "action": "CARVE_RIGHT" - }, - { - "x": -16.562159387397855, - "y": -6032.923055391111, - "rotation": 5.761505437333152, - "action": "CARVE_RIGHT" - }, - { - "x": -18.782680518857646, - "y": -6038.292203351018, - "rotation": 5.799902680877027, - "action": "CARVE_RIGHT" - }, - { - "x": -20.82705093974021, - "y": -6043.825440806384, - "rotation": 5.838299924420903, - "action": "CARVE_RIGHT" - }, - { - "x": -22.695352421684163, - "y": -6049.5232035994895, - "rotation": 5.876697167964778, - "action": "CARVE_RIGHT" - }, - { - "x": -24.387630062828837, - "y": -6055.385960608755, - "rotation": 5.915094411508654, - "action": "CARVE_RIGHT" - }, - { - "x": -25.903892375665446, - "y": -6061.414213669057, - "rotation": 5.953491655052529, - "action": "CARVE_RIGHT" - }, - { - "x": -27.24411137469084, - "y": -6067.608497492219, - "rotation": 5.991888898596405, - "action": "CARVE_RIGHT" - }, - { - "x": -28.4082226638642, - "y": -6073.969379587688, - "rotation": 6.03028614214028, - "action": "CARVE_RIGHT" - }, - { - "x": -29.3961255238672, - "y": -6080.4974601833865, - "rotation": 6.068683385684156, - "action": "CARVE_RIGHT" - }, - { - "x": -30.20768299916794, - "y": -6087.193372146739, - "rotation": 6.107080629228031, - "action": "CARVE_RIGHT" - }, - { - "x": -30.842721984889163, - "y": -6094.057780905886, - "rotation": 6.145477872771907, - "action": "CARVE_RIGHT" - }, - { - "x": -31.301033313481184, - "y": -6101.091384371068, - "rotation": 6.183875116315782, - "action": "CARVE_RIGHT" - }, - { - "x": -31.582371841199866, - "y": -6108.29491285619, - "rotation": 6.222272359859658, - "action": "CARVE_RIGHT" - }, - { - "x": -31.686456534390146, - "y": -6115.6691290005665, - "rotation": 6.260669603403533, - "action": "CARVE_RIGHT" - }, - { - "x": -31.612974728696862, - "y": -6123.078321767789, - "rotation": 0.015881539767822694, - "action": "CARVE_RIGHT" - }, - { - "x": -31.361628505062363, - "y": -6130.328940588603, - "rotation": 0.05427878331169795, - "action": "CARVE_RIGHT" - }, - { - "x": -30.932157332623706, - "y": -6137.420219889801, - "rotation": 0.0926760268555732, - "action": "CARVE_RIGHT" - }, - { - "x": -30.324337978988904, - "y": -6144.351429577611, - "rotation": 0.13107327039944847, - "action": "CARVE_RIGHT" - }, - { - "x": -29.53798442071502, - "y": -6151.121874953107, - "rotation": 0.16947051394332371, - "action": "CARVE_RIGHT" - }, - { - "x": -28.572947753987712, - "y": -6157.730896627808, - "rotation": 0.20786775748719896, - "action": "CARVE_RIGHT" - }, - { - "x": -27.429116105501766, - "y": -6164.177870439467, - "rotation": 0.2462650010310742, - "action": "CARVE_RIGHT" - }, - { - "x": -26.106414543542183, - "y": -6170.462207368051, - "rotation": 0.2846622445749495, - "action": "CARVE_RIGHT" - }, - { - "x": -24.60480498926541, - "y": -6176.583353451905, - "rotation": 0.32305948811882473, - "action": "CARVE_RIGHT" - }, - { - "x": -22.924286128180267, - "y": -6182.540789704108, - "rotation": 0.3614567316627, - "action": "CARVE_RIGHT" - }, - { - "x": -21.064893321828123, - "y": -6188.334032029012, - "rotation": 0.39985397520657523, - "action": "CARVE_RIGHT" - }, - { - "x": -19.02669851966192, - "y": -6193.962631138976, - "rotation": 0.4382512187504505, - "action": "CARVE_RIGHT" - }, - { - "x": -16.8098101711236, - "y": -6199.426172471276, - "rotation": 0.4766484622943257, - "action": "CARVE_RIGHT" - }, - { - "x": -14.414373137919526, - "y": -6204.724276105212, - "rotation": 0.515045705838201, - "action": "CARVE_RIGHT" - }, - { - "x": -11.8405686064934, - "y": -6209.856596679391, - "rotation": 0.5534429493820763, - "action": "NOTHING" - }, - { - "x": -8.998777619440729, - "y": -6214.74090147471, - "rotation": 0.5499522908780876, - "action": "NOTHING" - }, - { - "x": -6.174961580676321, - "y": -6219.642016019842, - "rotation": 0.546461632374099, - "action": "NOTHING" - }, - { - "x": -3.369103978506331, - "y": -6224.559971393547, - "rotation": 0.5429709738701103, - "action": "NOTHING" - }, - { - "x": -0.5811886660393277, - "y": -6229.494798928902, - "rotation": 0.5394803153661216, - "action": "NOTHING" - }, - { - "x": 2.188800139670294, - "y": -6234.44653021266, - "rotation": 0.535989656862133, - "action": "NOTHING" - }, - { - "x": 4.940877858477004, - "y": -6239.41519708461, - "rotation": 0.5324989983581443, - "action": "NOTHING" - }, - { - "x": 7.675059547996925, - "y": -6244.400831636932, - "rotation": 0.5290083398541556, - "action": "NOTHING" - }, - { - "x": 10.391359904458739, - "y": -6249.403466213566, - "rotation": 0.525517681350167, - "action": "NOTHING" - }, - { - "x": 13.08979326355268, - "y": -6254.42313340957, - "rotation": 0.5220270228461783, - "action": "NOTHING" - }, - { - "x": 15.770373601277674, - "y": -6259.459866070484, - "rotation": 0.5185363643421896, - "action": "NOTHING" - }, - { - "x": 18.43311453478657, - "y": -6264.513697291698, - "rotation": 0.515045705838201, - "action": "NOTHING" - }, - { - "x": 21.078029323229497, - "y": -6269.5846604178205, - "rotation": 0.5115550473342123, - "action": "NOTHING" - }, - { - "x": 23.705130868595376, - "y": -6274.672789042045, - "rotation": 0.5080643888302236, - "action": "NOTHING" - }, - { - "x": 26.31443171655152, - "y": -6279.778117005521, - "rotation": 0.504573730326235, - "action": "NOTHING" - }, - { - "x": 28.9059440572814, - "y": -6284.900678396728, - "rotation": 0.5010830718222463, - "action": "NOTHING" - }, - { - "x": 31.47967972632053, - "y": -6290.040507550843, - "rotation": 0.49759241331825765, - "action": "NOTHING" - }, - { - "x": 34.03565020539051, - "y": -6295.1976390491245, - "rotation": 0.494101754814269, - "action": "NOTHING" - }, - { - "x": 36.57386662323122, - "y": -6300.372107718279, - "rotation": 0.4906110963102803, - "action": "NOTHING" - }, - { - "x": 39.094339756431125, - "y": -6305.563948629846, - "rotation": 0.48712043780629166, - "action": "NOTHING" - }, - { - "x": 41.59708003025579, - "y": -6310.773197099573, - "rotation": 0.483629779302303, - "action": "NOTHING" - }, - { - "x": 44.08209751947451, - "y": -6315.999888686798, - "rotation": 0.48013912079831433, - "action": "NOTHING" - }, - { - "x": 46.549401949185125, - "y": -6321.244059193829, - "rotation": 0.47664846229432567, - "action": "NOTHING" - }, - { - "x": 48.999002695637, - "y": -6326.505744665332, - "rotation": 0.473157803790337, - "action": "CARVE_LEFT" - }, - { - "x": 51.024985769817064, - "y": -6332.160602699965, - "rotation": 0.43476056024646176, - "action": "CARVE_LEFT" - }, - { - "x": 52.872392355352964, - "y": -6337.982254965063, - "rotation": 0.3963633167025865, - "action": "CARVE_LEFT" - }, - { - "x": 54.54126688665771, - "y": -6343.971171048847, - "rotation": 0.35796607315871126, - "action": "CARVE_LEFT" - }, - { - "x": 56.03161721143201, - "y": -6350.127853496814, - "rotation": 0.319568829614836, - "action": "CARVE_LEFT" - }, - { - "x": 57.34341467832399, - "y": -6356.452837732215, - "rotation": 0.28117158607096077, - "action": "CARVE_LEFT" - }, - { - "x": 58.47659422439189, - "y": -6362.9466919767265, - "rotation": 0.24277434252708552, - "action": "CARVE_LEFT" - }, - { - "x": 59.43105446237012, - "y": -6369.610017171298, - "rotation": 0.20437709898321027, - "action": "CARVE_LEFT" - }, - { - "x": 60.20665776773918, - "y": -6376.443446897177, - "rotation": 0.16597985543933502, - "action": "CARVE_LEFT" - }, - { - "x": 60.80323036559975, - "y": -6383.447647297112, - "rotation": 0.12758261189545977, - "action": "CARVE_LEFT" - }, - { - "x": 61.22056241735151, - "y": -6390.623316996736, - "rotation": 0.08918536835158453, - "action": "CARVE_LEFT" - }, - { - "x": 61.45840810717699, - "y": -6397.971187026126, - "rotation": 0.05078812480770927, - "action": "CARVE_LEFT" - }, - { - "x": 61.516485728330984, - "y": -6405.492020741536, - "rotation": 0.012390881263834017, - "action": "CARVE_LEFT" - }, - { - "x": 61.39448895936287, - "y": -6412.959988084646, - "rotation": 6.257178944899545, - "action": "CARVE_LEFT" - }, - { - "x": 61.09213847866566, - "y": -6420.266754568277, - "rotation": 6.218781701355669, - "action": "CARVE_LEFT" - }, - { - "x": 60.6091923055799, - "y": -6427.411572374956, - "rotation": 6.180384457811794, - "action": "CARVE_LEFT" - }, - { - "x": 59.94544571077972, - "y": -6434.393729121958, - "rotation": 6.141987214267918, - "action": "CARVE_LEFT" - }, - { - "x": 59.10073112686054, - "y": -6441.212547776817, - "rotation": 6.103589970724043, - "action": "CARVE_LEFT" - }, - { - "x": 58.07491805912793, - "y": -6447.867386573028, - "rotation": 6.065192727180167, - "action": "CARVE_LEFT" - }, - { - "x": 56.86791299658731, - "y": -6454.357638925943, - "rotation": 6.026795483636292, - "action": "CARVE_LEFT" - }, - { - "x": 55.479659323133845, - "y": -6460.682733348851, - "rotation": 5.988398240092416, - "action": "CARVE_LEFT" - }, - { - "x": 53.910137228942354, - "y": -6466.842133369242, - "rotation": 5.950000996548541, - "action": "CARVE_LEFT" - }, - { - "x": 52.15936362205658, - "y": -6472.83533744527, - "rotation": 5.911603753004665, - "action": "CARVE_LEFT" - }, - { - "x": 50.22739204017756, - "y": -6478.661878882391, - "rotation": 5.87320650946079, - "action": "CARVE_LEFT" - }, - { - "x": 48.11431256265052, - "y": -6484.321325750198, - "rotation": 5.834809265916914, - "action": "CARVE_LEFT" - }, - { - "x": 45.82025172264999, - "y": -6489.813280799438, - "rotation": 5.796412022373039, - "action": "CARVE_LEFT" - }, - { - "x": 43.345372419562665, - "y": -6495.137381379211, - "rotation": 5.758014778829163, - "action": "CARVE_LEFT" - }, - { - "x": 40.68987383156751, - "y": -6500.293299354364, - "rotation": 5.719617535285288, - "action": "CARVE_LEFT" - }, - { - "x": 37.853991328412825, - "y": -6505.280741023062, - "rotation": 5.681220291741412, - "action": "CARVE_LEFT" - }, - { - "x": 34.83799638438973, - "y": -6510.0994470345495, - "rotation": 5.6428230481975366, - "action": "CARVE_LEFT" - }, - { - "x": 31.64219649150169, - "y": -6514.749192307093, - "rotation": 5.604425804653661, - "action": "CARVE_LEFT" - }, - { - "x": 28.266935072829654, - "y": -6519.229785946108, - "rotation": 5.5660285611097855, - "action": "NOTHING" - }, - { - "x": 24.53599357554842, - "y": -6523.378814661969, - "rotation": 5.569519219613774, - "action": "NOTHING" - }, - { - "x": 20.824365587172764, - "y": -6527.543545422809, - "rotation": 5.573009878117762, - "action": "NOTHING" - }, - { - "x": 17.132016057945748, - "y": -6531.723996367316, - "rotation": 5.576500536621751, - "action": "NOTHING" - }, - { - "x": 13.458910346402648, - "y": -6535.920185921163, - "rotation": 5.579991195125739, - "action": "NOTHING" - }, - { - "x": 9.805014218417853, - "y": -6540.132132796282, - "rotation": 5.583481853629728, - "action": "NOTHING" - }, - { - "x": 6.1702938462538786, - "y": -6544.3598559901575, - "rotation": 5.586972512133716, - "action": "NOTHING" - }, - { - "x": 2.554715807612502, - "y": -6548.603374785102, - "rotation": 5.590463170637705, - "action": "NOTHING" - }, - { - "x": -1.04175291531203, - "y": -6552.862708747546, - "rotation": 5.593953829141693, - "action": "NOTHING" - }, - { - "x": -4.619144936777679, - "y": -6557.137877727329, - "rotation": 5.5974444876456815, - "action": "NOTHING" - }, - { - "x": -8.177492468437213, - "y": -6561.428901856984, - "rotation": 5.60093514614967, - "action": "NOTHING" - }, - { - "x": -11.716827320278712, - "y": -6565.735801551031, - "rotation": 5.604425804653658, - "action": "CARVE_RIGHT" - }, - { - "x": -14.721273620260089, - "y": -6570.53605609907, - "rotation": 5.642823048197534, - "action": "CARVE_RIGHT" - }, - { - "x": -17.545048222236915, - "y": -6575.5022037082335, - "rotation": 5.681220291741409, - "action": "CARVE_RIGHT" - }, - { - "x": -20.18839733473221, - "y": -6580.634532252986, - "rotation": 5.719617535285285, - "action": "CARVE_RIGHT" - }, - { - "x": -22.651530095070513, - "y": -6585.933363004456, - "rotation": 5.7580147788291605, - "action": "CARVE_RIGHT" - }, - { - "x": -24.934618658128016, - "y": -6591.399050549927, - "rotation": 5.796412022373036, - "action": "CARVE_RIGHT" - }, - { - "x": -27.037798284883287, - "y": -6597.0319827125195, - "rotation": 5.8348092659169115, - "action": "CARVE_RIGHT" - }, - { - "x": -28.961167430769034, - "y": -6602.832580471046, - "rotation": 5.873206509460787, - "action": "CARVE_RIGHT" - }, - { - "x": -30.70478783382536, - "y": -6608.801297880048, - "rotation": 5.911603753004663, - "action": "CARVE_RIGHT" - }, - { - "x": -32.26868460265488, - "y": -6614.938621990022, - "rotation": 5.950000996548538, - "action": "CARVE_RIGHT" - }, - { - "x": -33.65284630418021, - "y": -6621.2450727678115, - "rotation": 5.988398240092414, - "action": "NOTHING" - }, - { - "x": -35.173282742279234, - "y": -6627.42879034027, - "rotation": 5.991888898596402, - "action": "NOTHING" - }, - { - "x": -36.67618963285023, - "y": -6633.632226543441, - "rotation": 5.9953795571003905, - "action": "NOTHING" - }, - { - "x": -38.16155813084277, - "y": -6639.855429956229, - "rotation": 5.998870215604379, - "action": "NOTHING" - }, - { - "x": -39.629379086368296, - "y": -6646.098449367098, - "rotation": 6.002360874108367, - "action": "NOTHING" - }, - { - "x": -41.07964304542298, - "y": -6652.361333773528, - "rotation": 6.005851532612356, - "action": "NOTHING" - }, - { - "x": -42.512340250609014, - "y": -6658.644132381483, - "rotation": 6.009342191116344, - "action": "NOTHING" - }, - { - "x": -43.927460641854225, - "y": -6664.946894604872, - "rotation": 6.012832849620333, - "action": "NOTHING" - }, - { - "x": -45.32499385713014, - "y": -6671.269670065014, - "rotation": 6.016323508124321, - "action": "NOTHING" - }, - { - "x": -46.704929233168414, - "y": -6677.612508590106, - "rotation": 6.01981416662831, - "action": "NOTHING" - }, - { - "x": -48.06725580617567, - "y": -6683.97546021469, - "rotation": 6.023304825132298, - "action": "NOTHING" - }, - { - "x": -49.41196231254674, - "y": -6690.358575179124, - "rotation": 6.0267954836362865, - "action": "NOTHING" - }, - { - "x": -50.7390371895763, - "y": -6696.7619039290485, - "rotation": 6.030286142140275, - "action": "NOTHING" - }, - { - "x": -52.048468576168936, - "y": -6703.185497114861, - "rotation": 6.033776800644263, - "action": "NOTHING" - }, - { - "x": -53.34024431354761, - "y": -6709.6294055911885, - "rotation": 6.037267459148252, - "action": "NOTHING" - }, - { - "x": -54.61435194596053, - "y": -6716.093680416359, - "rotation": 6.04075811765224, - "action": "NOTHING" - }, - { - "x": -55.87077872138647, - "y": -6722.578372851881, - "rotation": 6.044248776156229, - "action": "NOTHING" - }, - { - "x": -57.109511592238505, - "y": -6729.083534361916, - "rotation": 6.047739434660217, - "action": "NOTHING" - }, - { - "x": -58.330537216066126, - "y": -6735.609216612757, - "rotation": 6.051230093164206, - "action": "NOTHING" - }, - { - "x": -59.53384195625586, - "y": -6742.1554714723125, - "rotation": 6.054720751668194, - "action": "NOTHING" - }, - { - "x": -60.71941188273028, - "y": -6748.722351009577, - "rotation": 6.0582114101721825, - "action": "NOTHING" - }, - { - "x": -61.887232772645426, - "y": -6755.309907494122, - "rotation": 6.061702068676171, - "action": "NOTHING" - }, - { - "x": -63.037290111086755, - "y": -6761.918193395571, - "rotation": 6.065192727180159, - "action": "NOTHING" - }, - { - "x": -64.16956909176342, - "y": -6768.547261383087, - "rotation": 6.068683385684148, - "action": "NOTHING" - }, - { - "x": -65.2840546177011, - "y": -6775.19716432486, - "rotation": 6.072174044188136, - "action": "NOTHING" - }, - { - "x": -66.3807313019332, - "y": -6781.867955287587, - "rotation": 6.075664702692125, - "action": "NOTHING" - }, - { - "x": -67.45958346819053, - "y": -6788.559687535965, - "rotation": 6.079155361196113, - "action": "NOTHING" - }, - { - "x": -68.5205951515895, - "y": -6795.2724145321745, - "rotation": 6.0826460197001015, - "action": "NOTHING" - }, - { - "x": -69.56375009931868, - "y": -6802.006189935375, - "rotation": 6.08613667820409, - "action": "NOTHING" - }, - { - "x": -70.58903177132386, - "y": -6808.761067601191, - "rotation": 6.089627336708078, - "action": "NOTHING" - }, - { - "x": -71.59642334099162, - "y": -6815.537101581207, - "rotation": 6.093117995212067, - "action": "NOTHING" - }, - { - "x": -72.5859076958313, - "y": -6822.33434612246, - "rotation": 6.096608653716055, - "action": "NOTHING" - }, - { - "x": -73.55746743815548, - "y": -6829.152855666935, - "rotation": 6.100099312220044, - "action": "NOTHING" - }, - { - "x": -74.51108488575896, - "y": -6835.992684851058, - "rotation": 6.103589970724032, - "action": "NOTHING" - }, - { - "x": -75.44674207259617, - "y": -6842.853888505197, - "rotation": 6.107080629228021, - "action": "NOTHING" - }, - { - "x": -76.36442074945707, - "y": -6849.736521653157, - "rotation": 6.110571287732009, - "action": "NOTHING" - }, - { - "x": -77.2641023846416, - "y": -6856.640639511682, - "rotation": 6.1140619462359975, - "action": "NOTHING" - }, - { - "x": -78.14576816463253, - "y": -6863.566297489951, - "rotation": 6.117552604739986, - "action": "NOTHING" - }, - { - "x": -79.00939899476685, - "y": -6870.513551189084, - "rotation": 6.121043263243974, - "action": "CARVE_RIGHT" - }, - { - "x": -79.60296009975963, - "y": -6877.715570661038, - "rotation": 6.15944050678785, - "action": "CARVE_RIGHT" - }, - { - "x": -80.01261782456007, - "y": -6885.093077124234, - "rotation": 6.1978377503317255, - "action": "CARVE_RIGHT" - }, - { - "x": -80.23813941748627, - "y": -6892.64679005187, - "rotation": 6.236234993875601, - "action": "CARVE_RIGHT" - }, - { - "x": -80.27925619961657, - "y": -6900.377461275976, - "rotation": 6.2746322374194765, - "action": "CARVE_RIGHT" - }, - { - "x": -80.13567838749279, - "y": -6908.019178452628, - "rotation": 0.029844173783765804, - "action": "CARVE_RIGHT" - }, - { - "x": -79.80714691863471, - "y": -6915.495035535596, - "rotation": 0.06824141732764105, - "action": "CARVE_RIGHT" - }, - { - "x": -79.29344001793496, - "y": -6922.804304136299, - "rotation": 0.1066386608715163, - "action": "CARVE_RIGHT" - }, - { - "x": -78.59437310817218, - "y": -6929.9462912501185, - "rotation": 0.14503590441539155, - "action": "CARVE_RIGHT" - }, - { - "x": -77.7097987207258, - "y": -6936.920339172029, - "rotation": 0.1834331479592668, - "action": "CARVE_RIGHT" - }, - { - "x": -76.6396064064915, - "y": -6943.725825412425, - "rotation": 0.22183039150314204, - "action": "CARVE_RIGHT" - }, - { - "x": -75.38372264699723, - "y": -6950.362162613129, - "rotation": 0.2602276350470173, - "action": "CARVE_RIGHT" - }, - { - "x": -73.94211076571933, - "y": -6956.828798463593, - "rotation": 0.29862487859089254, - "action": "CARVE_RIGHT" - }, - { - "x": -72.31477083959814, - "y": -6963.125215617284, - "rotation": 0.3370221221347678, - "action": "CARVE_RIGHT" - }, - { - "x": -70.50173961075286, - "y": -6969.250931608264, - "rotation": 0.37541936567864304, - "action": "CARVE_RIGHT" - }, - { - "x": -68.50309039839514, - "y": -6975.205498767947, - "rotation": 0.4138166092225183, - "action": "CARVE_RIGHT" - }, - { - "x": -66.31893301094098, - "y": -6980.988504142048, - "rotation": 0.45221385276639353, - "action": "CARVE_RIGHT" - }, - { - "x": -63.949413658320516, - "y": -6986.599569407723, - "rotation": 0.4906110963102688, - "action": "CARVE_RIGHT" - }, - { - "x": -61.39471486448527, - "y": -6992.038350790882, - "rotation": 0.5290083398541441, - "action": "CARVE_RIGHT" - }, - { - "x": -58.65505538011245, - "y": -6997.304538983702, - "rotation": 0.5674055833980194, - "action": "CARVE_RIGHT" - }, - { - "x": -55.73069009550581, - "y": -7002.397859062315, - "rotation": 0.6058028269418947, - "action": "CARVE_RIGHT" - }, - { - "x": -52.621909953692736, - "y": -7007.318070404685, - "rotation": 0.64420007048577, - "action": "CARVE_RIGHT" - }, - { - "x": -49.3290418637171, - "y": -7012.064966608668, - "rotation": 0.6825973140296453, - "action": "CARVE_RIGHT" - }, - { - "x": -45.85244861412739, - "y": -7016.638375410256, - "rotation": 0.7209945575735206, - "action": "CARVE_RIGHT" - }, - { - "x": -42.19252878665979, - "y": -7021.038158602003, - "rotation": 0.7593918011173959, - "action": "CARVE_RIGHT" - }, - { - "x": -38.34971667011579, - "y": -7025.264211951638, - "rotation": 0.7977890446612712, - "action": "NOTHING" - }, - { - "x": -34.10059026458932, - "y": -7029.1104177969255, - "rotation": 0.7942983861572825, - "action": "NOTHING" - }, - { - "x": -29.872082340614888, - "y": -7032.972137460425, - "rotation": 0.7908077276532939, - "action": "NOTHING" - }, - { - "x": -25.664146979557117, - "y": -7036.84938153081, - "rotation": 0.7873170691493052, - "action": "NOTHING" - }, - { - "x": -21.47673869665899, - "y": -7040.742160902905, - "rotation": 0.7838264106453166, - "action": "NOTHING" - }, - { - "x": -17.309812440031866, - "y": -7044.650486776918, - "rotation": 0.7803357521413279, - "action": "NOTHING" - }, - { - "x": -13.163323589647716, - "y": -7048.574370657682, - "rotation": 0.7768450936373392, - "action": "NOTHING" - }, - { - "x": -9.037227956333599, - "y": -7052.513824353896, - "rotation": 0.7733544351333506, - "action": "NOTHING" - }, - { - "x": -4.931481780768348, - "y": -7056.468859977362, - "rotation": 0.7698637766293619, - "action": "NOTHING" - }, - { - "x": -0.8460417324814866, - "y": -7060.439489942235, - "rotation": 0.7663731181253732, - "action": "NOTHING" - }, - { - "x": 3.2191350911456693, - "y": -7064.425726964266, - "rotation": 0.7628824596213846, - "action": "NOTHING" - }, - { - "x": 7.264091165876673, - "y": -7068.4275840600485, - "rotation": 0.7593918011173959, - "action": "NOTHING" - }, - { - "x": 11.288868541614427, - "y": -7072.44507454627, - "rotation": 0.7559011426134072, - "action": "NOTHING" - }, - { - "x": 15.293508843393461, - "y": -7076.478212038961, - "rotation": 0.7524104841094186, - "action": "NOTHING" - }, - { - "x": 19.278053272370013, - "y": -7080.527010452747, - "rotation": 0.7489198256054299, - "action": "NOTHING" - }, - { - "x": 23.242542606809927, - "y": -7084.591484000105, - "rotation": 0.7454291671014412, - "action": "NOTHING" - }, - { - "x": 27.187017203074372, - "y": -7088.6716471906175, - "rotation": 0.7419385085974526, - "action": "NOTHING" - }, - { - "x": 31.111516996603367, - "y": -7092.7675148302305, - "rotation": 0.7384478500934639, - "action": "NOTHING" - }, - { - "x": 35.01608150289715, - "y": -7096.879102020514, - "rotation": 0.7349571915894753, - "action": "NOTHING" - }, - { - "x": 38.90074981849537, - "y": -7101.006424157925, - "rotation": 0.7314665330854866, - "action": "CARVE_LEFT" - }, - { - "x": 42.21219288453419, - "y": -7105.661641134377, - "rotation": 0.6930692895416113, - "action": "CARVE_LEFT" - }, - { - "x": 45.33922392819947, - "y": -7110.485259200515, - "rotation": 0.654672045997736, - "action": "CARVE_LEFT" - }, - { - "x": 48.28215203066686, - "y": -7115.47750973481, - "rotation": 0.6162748024538607, - "action": "CARVE_LEFT" - }, - { - "x": 51.041249047962786, - "y": -7120.6386576518435, - "rotation": 0.5778775589099854, - "action": "CARVE_LEFT" - }, - { - "x": 53.61674970006515, - "y": -7125.969001321489, - "rotation": 0.5394803153661101, - "action": "CARVE_LEFT" - }, - { - "x": 56.00885165980376, - "y": -7131.468872488269, - "rotation": 0.5010830718222348, - "action": "CARVE_LEFT" - }, - { - "x": 58.21771564156112, - "y": -7137.138636190896, - "rotation": 0.4626858282783595, - "action": "CARVE_LEFT" - }, - { - "x": 60.2434654897739, - "y": -7142.9786906819945, - "rotation": 0.4242885847344843, - "action": "CARVE_LEFT" - }, - { - "x": 62.08618826723551, - "y": -7148.989467348003, - "rotation": 0.385891341190609, - "action": "CARVE_LEFT" - }, - { - "x": 63.745934343200325, - "y": -7155.17143062926, - "rotation": 0.3474940976467338, - "action": "CARVE_LEFT" - }, - { - "x": 65.22271748128985, - "y": -7161.525077940266, - "rotation": 0.30909685410285853, - "action": "CARVE_LEFT" - }, - { - "x": 66.5165149272013, - "y": -7168.05093959013, - "rotation": 0.2706996105589833, - "action": "CARVE_LEFT" - }, - { - "x": 67.62726749621908, - "y": -7174.749578703191, - "rotation": 0.23230236701510804, - "action": "CARVE_LEFT" - }, - { - "x": 68.5548796605295, - "y": -7181.621591139823, - "rotation": 0.1939051234712328, - "action": "CARVE_LEFT" - }, - { - "x": 69.2992196363392, - "y": -7188.667605417416, - "rotation": 0.15550787992735754, - "action": "CARVE_LEFT" - }, - { - "x": 69.86011947079774, - "y": -7195.888282631535, - "rotation": 0.11711063638348229, - "action": "CARVE_LEFT" - }, - { - "x": 70.23737512872466, - "y": -7203.28431637726, - "rotation": 0.07871339283960704, - "action": "CARVE_LEFT" - }, - { - "x": 70.43074657914161, - "y": -7210.856432670702, - "rotation": 0.04031614929573179, - "action": "CARVE_LEFT" - }, - { - "x": 70.43995788160974, - "y": -7218.605389870692, - "rotation": 0.001918905751856534, - "action": "CARVE_LEFT" - }, - { - "x": 70.26471928875154, - "y": -7226.206466943516, - "rotation": 6.246706969387567, - "action": "CARVE_LEFT" - }, - { - "x": 69.90477713528253, - "y": -7233.64184718512, - "rotation": 6.208309725843692, - "action": "CARVE_LEFT" - }, - { - "x": 69.35991503065469, - "y": -7240.910807315581, - "rotation": 6.169912482299816, - "action": "CARVE_LEFT" - }, - { - "x": 68.62995376959772, - "y": -7248.012659427042, - "rotation": 6.131515238755941, - "action": "CARVE_LEFT" - }, - { - "x": 67.71475124286165, - "y": -7254.946750899371, - "rotation": 6.093117995212065, - "action": "CARVE_LEFT" - }, - { - "x": 66.61420234816029, - "y": -7261.71246431601, - "rotation": 6.05472075166819, - "action": "CARVE_LEFT" - }, - { - "x": 65.328238901315, - "y": -7268.309217380013, - "rotation": 6.016323508124314, - "action": "CARVE_LEFT" - }, - { - "x": 63.85682954759862, - "y": -7274.736462830275, - "rotation": 5.9779262645804385, - "action": "CARVE_LEFT" - }, - { - "x": 62.19997967327875, - "y": -7280.993688357939, - "rotation": 5.939529021036563, - "action": "NOTHING" - }, - { - "x": 60.37716675994137, - "y": -7287.099672303172, - "rotation": 5.943019679540551, - "action": "NOTHING" - }, - { - "x": 58.572487101167475, - "y": -7293.2249164935165, - "rotation": 5.94651033804454, - "action": "NOTHING" - }, - { - "x": 56.78594288203326, - "y": -7299.369465172507, - "rotation": 5.950000996548528, - "action": "NOTHING" - }, - { - "x": 55.01753660882814, - "y": -7305.533362805103, - "rotation": 5.953491655052517, - "action": "NOTHING" - }, - { - "x": 53.2672711082945, - "y": -7311.716654077119, - "rotation": 5.956982313556505, - "action": "NOTHING" - }, - { - "x": 51.53514952686918, - "y": -7317.919383894657, - "rotation": 5.960472972060494, - "action": "NOTHING" - }, - { - "x": 49.8211753299266, - "y": -7324.141597383548, - "rotation": 5.963963630564482, - "action": "NOTHING" - }, - { - "x": 48.12535230102354, - "y": -7330.3833398887855, - "rotation": 5.9674542890684705, - "action": "NOTHING" - }, - { - "x": 46.44768454114575, - "y": -7336.644656973961, - "rotation": 5.970944947572459, - "action": "NOTHING" - }, - { - "x": 44.78817646795606, - "y": -7342.925594420709, - "rotation": 5.974435606076447, - "action": "NOTHING" - }, - { - "x": 43.14683281504433, - "y": -7349.226198228142, - "rotation": 5.977926264580436, - "action": "NOTHING" - }, - { - "x": 41.52365863117891, - "y": -7355.546514612297, - "rotation": 5.981416923084424, - "action": "NOTHING" - }, - { - "x": 39.918659279559954, - "y": -7361.886590005577, - "rotation": 5.984907581588413, - "action": "NOTHING" - }, - { - "x": 38.33184043707424, - "y": -7368.246471056197, - "rotation": 5.988398240092401, - "action": "NOTHING" - }, - { - "x": 36.76320809355177, - "y": -7374.626204627627, - "rotation": 5.99188889859639, - "action": "NOTHING" - }, - { - "x": 35.212768551023935, - "y": -7381.025837798043, - "rotation": 5.995379557100378, - "action": "NOTHING" - }, - { - "x": 33.68052842298342, - "y": -7387.445417859771, - "rotation": 5.9988702156043665, - "action": "NOTHING" - }, - { - "x": 32.166494633645705, - "y": -7393.884992318743, - "rotation": 6.002360874108355, - "action": "NOTHING" - }, - { - "x": 30.670674417212243, - "y": -7400.344608893942, - "rotation": 6.005851532612343, - "action": "NOTHING" - }, - { - "x": 29.193075317135275, - "y": -7406.824315516859, - "rotation": 6.009342191116332, - "action": "NOTHING" - }, - { - "x": 27.733705185384284, - "y": -7413.324160330944, - "rotation": 6.01283284962032, - "action": "NOTHING" - }, - { - "x": 26.292572181714096, - "y": -7419.844191691062, - "rotation": 6.016323508124309, - "action": "NOTHING" - }, - { - "x": 24.869684772934615, - "y": -7426.38445816295, - "rotation": 6.019814166628297, - "action": "CARVE_RIGHT" - }, - { - "x": 23.775348067780545, - "y": -7433.232086611189, - "rotation": 6.058211410172173, - "action": "CARVE_RIGHT" - }, - { - "x": 22.86736432414258, - "y": -7440.255920126033, - "rotation": 6.096608653716048, - "action": "CARVE_RIGHT" - }, - { - "x": 22.14586081103056, - "y": -7447.45658330164, - "rotation": 6.135005897259924, - "action": "CARVE_RIGHT" - }, - { - "x": 21.611000980736303, - "y": -7454.834733323055, - "rotation": 6.173403140803799, - "action": "CARVE_RIGHT" - }, - { - "x": 21.262984382069924, - "y": -7462.391059887509, - "rotation": 6.211800384347675, - "action": "CARVE_RIGHT" - }, - { - "x": 21.10204657379126, - "y": -7470.126285125907, - "rotation": 6.25019762789155, - "action": "CARVE_RIGHT" - }, - { - "x": 21.128458554063208, - "y": -7477.992107360506, - "rotation": 0.005409564255839605, - "action": "CARVE_RIGHT" - }, - { - "x": 21.342492946058048, - "y": -7485.689716985938, - "rotation": 0.04380680779971486, - "action": "CARVE_RIGHT" - }, - { - "x": 21.744385056095716, - "y": -7493.218372871322, - "rotation": 0.08220405134359011, - "action": "CARVE_RIGHT" - }, - { - "x": 22.33433296319269, - "y": -7500.5773692973635, - "rotation": 0.12060129488746538, - "action": "CARVE_RIGHT" - }, - { - "x": 23.11249760840941, - "y": -7507.766035871929, - "rotation": 0.15899853843134062, - "action": "CARVE_RIGHT" - }, - { - "x": 24.07900288399667, - "y": -7514.783737445805, - "rotation": 0.19739578197521587, - "action": "CARVE_RIGHT" - }, - { - "x": 25.233935722341396, - "y": -7521.629874028659, - "rotation": 0.23579302551909112, - "action": "CARVE_RIGHT" - }, - { - "x": 26.577346184712273, - "y": -7528.303880705178, - "rotation": 0.2741902690629664, - "action": "CARVE_RIGHT" - }, - { - "x": 28.10924754980562, - "y": -7534.8052275513965, - "rotation": 0.31258751260684164, - "action": "CARVE_RIGHT" - }, - { - "x": 29.82961640209198, - "y": -7541.133419551216, - "rotation": 0.3509847561507169, - "action": "CARVE_RIGHT" - }, - { - "x": 31.738392719963823, - "y": -7547.287996513112, - "rotation": 0.38938199969459214, - "action": "NOTHING" - }, - { - "x": 33.840662182855226, - "y": -7553.264994635938, - "rotation": 0.3858913411906035, - "action": "NOTHING" - }, - { - "x": 35.9243424632451, - "y": -7559.260830265177, - "rotation": 0.3824006826866148, - "action": "NOTHING" - }, - { - "x": 37.98943715510091, - "y": -7565.2755438142085, - "rotation": 0.37891002418262615, - "action": "NOTHING" - }, - { - "x": 40.035949517131264, - "y": -7571.3091759281015, - "rotation": 0.3754193656786375, - "action": "NOTHING" - }, - { - "x": 42.06388247357797, - "y": -7577.361767483024, - "rotation": 0.3719287071746488, - "action": "NOTHING" - }, - { - "x": 44.073238615006346, - "y": -7583.433359585653, - "rotation": 0.36843804867066016, - "action": "NOTHING" - }, - { - "x": 46.064020199093825, - "y": -7589.523993572586, - "rotation": 0.3649473901666715, - "action": "NOTHING" - }, - { - "x": 48.03622915141671, - "y": -7595.633711009752, - "rotation": 0.36145673166268283, - "action": "NOTHING" - }, - { - "x": 49.989867066235256, - "y": -7601.762553691828, - "rotation": 0.35796607315869416, - "action": "NOTHING" - }, - { - "x": 51.924935207276945, - "y": -7607.910563641649, - "rotation": 0.3544754146547055, - "action": "NOTHING" - }, - { - "x": 53.84143450851807, - "y": -7614.077783109631, - "rotation": 0.35098475615071684, - "action": "NOTHING" - }, - { - "x": 55.739365574963514, - "y": -7620.264254573184, - "rotation": 0.3474940976467282, - "action": "NOTHING" - }, - { - "x": 57.618728683424834, - "y": -7626.470020736135, - "rotation": 0.3440034391427395, - "action": "NOTHING" - }, - { - "x": 59.4795237832966, - "y": -7632.695124528143, - "rotation": 0.34051278063875084, - "action": "NOTHING" - }, - { - "x": 61.32175049733099, - "y": -7638.939609104129, - "rotation": 0.3370221221347622, - "action": "NOTHING" - }, - { - "x": 63.145408122410664, - "y": -7645.203517843692, - "rotation": 0.3335314636307735, - "action": "NOTHING" - }, - { - "x": 64.95049563031995, - "y": -7651.486894350537, - "rotation": 0.33004080512678485, - "action": "NOTHING" - }, - { - "x": 66.73701166851421, - "y": -7657.789782451901, - "rotation": 0.3265501466227962, - "action": "NOTHING" - }, - { - "x": 68.50495456088764, - "y": -7664.112226197981, - "rotation": 0.3230594881188075, - "action": "NOTHING" - }, - { - "x": 70.2543223085392, - "y": -7670.454269861359, - "rotation": 0.31956882961481886, - "action": "NOTHING" - }, - { - "x": 71.98511259053694, - "y": -7676.8159579364365, - "rotation": 0.3160781711108302, - "action": "CARVE_LEFT" - }, - { - "x": 73.35397970314901, - "y": -7683.51501204769, - "rotation": 0.27768092756695495, - "action": "CARVE_LEFT" - }, - { - "x": 74.53397106772178, - "y": -7690.391712381031, - "rotation": 0.2392836840230797, - "action": "CARVE_LEFT" - }, - { - "x": 75.5250186619882, - "y": -7697.446630283085, - "rotation": 0.20088644047920445, - "action": "CARVE_LEFT" - }, - { - "x": 76.32701813555695, - "y": -7704.68036982258, - "rotation": 0.1624891969353292, - "action": "CARVE_LEFT" - }, - { - "x": 76.93982889700567, - "y": -7712.093567711346, - "rotation": 0.12409195339145396, - "action": "CARVE_LEFT" - }, - { - "x": 77.3632742007782, - "y": -7719.686893225499, - "rotation": 0.08569470984757871, - "action": "CARVE_LEFT" - }, - { - "x": 77.59714123388657, - "y": -7727.461048126808, - "rotation": 0.047297466303703455, - "action": "CARVE_LEFT" - }, - { - "x": 77.64118120241788, - "y": -7735.416766584227, - "rotation": 0.0089002227598282, - "action": "CARVE_LEFT" - }, - { - "x": 77.49512381352423, - "y": -7743.283536427945, - "rotation": 6.253688286395539, - "action": "CARVE_LEFT" - }, - { - "x": 77.15872912212566, - "y": -7750.979056734451, - "rotation": 6.215291042851663, - "action": "CARVE_LEFT" - }, - { - "x": 76.63179441880035, - "y": -7758.50261749683, - "rotation": 6.176893799307788, - "action": "CARVE_LEFT" - }, - { - "x": 75.91415414042214, - "y": -7765.8535440430505, - "rotation": 6.138496555763912, - "action": "CARVE_LEFT" - }, - { - "x": 75.00567978099909, - "y": -7773.031196951715, - "rotation": 6.100099312220037, - "action": "CARVE_LEFT" - }, - { - "x": 73.90627980271272, - "y": -7780.034971967996, - "rotation": 6.061702068676161, - "action": "CARVE_LEFT" - }, - { - "x": 72.61589954715744, - "y": -7786.864299919767, - "rotation": 6.023304825132286, - "action": "CARVE_LEFT" - }, - { - "x": 71.13452114677973, - "y": -7793.518646633917, - "rotation": 5.98490758158841, - "action": "CARVE_LEFT" - }, - { - "x": 69.4621634365166, - "y": -7799.997512852857, - "rotation": 5.9465103380445345, - "action": "CARVE_LEFT" - }, - { - "x": 67.59888186563306, - "y": -7806.300434151205, - "rotation": 5.908113094500659, - "action": "CARVE_LEFT" - }, - { - "x": 65.54476840975792, - "y": -7812.4269808526715, - "rotation": 5.8697158509567835, - "action": "CARVE_LEFT" - }, - { - "x": 63.29995148311777, - "y": -7818.376757947118, - "rotation": 5.831318607412908, - "action": "CARVE_LEFT" - }, - { - "x": 60.86459585096849, - "y": -7824.149405007806, - "rotation": 5.7929213638690324, - "action": "CARVE_LEFT" - }, - { - "x": 58.238902542223926, - "y": -7829.744596108839, - "rotation": 5.754524120325157, - "action": "CARVE_LEFT" - }, - { - "x": 55.42310876228141, - "y": -7835.162039742775, - "rotation": 5.716126876781281, - "action": "CARVE_LEFT" - }, - { - "x": 52.41748780604353, - "y": -7840.40147873844, - "rotation": 5.677729633237406, - "action": "CARVE_LEFT" - }, - { - "x": 49.22234897113589, - "y": -7845.462690178913, - "rotation": 5.63933238969353, - "action": "CARVE_LEFT" - }, - { - "x": 45.83803747132024, - "y": -7850.3454853197, - "rotation": 5.600935146149655, - "action": "CARVE_LEFT" - }, - { - "x": 42.26493435010283, - "y": -7855.049709507094, - "rotation": 5.562537902605779, - "action": "CARVE_LEFT" - }, - { - "x": 38.50345639453723, - "y": -7859.575242096714, - "rotation": 5.524140659061904, - "action": "CARVE_LEFT" - }, - { - "x": 34.554056049221536, - "y": -7863.921996372228, - "rotation": 5.485743415518028, - "action": "CARVE_LEFT" - }, - { - "x": 30.417221330489234, - "y": -7868.089919464262, - "rotation": 5.447346171974153, - "action": "CARVE_LEFT" - }, - { - "x": 26.09347574079356, - "y": -7872.078992269483, - "rotation": 5.408948928430277, - "action": "CARVE_LEFT" - }, - { - "x": 21.583378183284758, - "y": -7875.889229369874, - "rotation": 5.370551684886402, - "action": "NOTHING" - }, - { - "x": 16.594782130355533, - "y": -7879.2508827056745, - "rotation": 5.37404234339039, - "action": "NOTHING" - }, - { - "x": 11.628747734601768, - "y": -7882.6279534825735, - "rotation": 5.3775330018943786, - "action": "NOTHING" - }, - { - "x": 6.68521366866514, - "y": -7886.020441434015, - "rotation": 5.381023660398367, - "action": "NOTHING" - }, - { - "x": 1.7641190749757065, - "y": -7889.428346626699, - "rotation": 5.384514318902355, - "action": "NOTHING" - }, - { - "x": -3.1345964353374454, - "y": -7892.851669459756, - "rotation": 5.388004977406344, - "action": "NOTHING" - }, - { - "x": -8.010992783533137, - "y": -7896.290410663926, - "rotation": 5.391495635910332, - "action": "NOTHING" - }, - { - "x": -12.865129424342637, - "y": -7899.744571300735, - "rotation": 5.394986294414321, - "action": "NOTHING" - }, - { - "x": -17.69706534705182, - "y": -7903.214152761672, - "rotation": 5.398476952918309, - "action": "NOTHING" - }, - { - "x": -22.506859076580927, - "y": -7906.699156767378, - "rotation": 5.401967611422298, - "action": "CARVE_RIGHT" - }, - { - "x": -26.644312574118132, - "y": -7910.801441015382, - "rotation": 5.440364854966173, - "action": "CARVE_RIGHT" - }, - { - "x": -30.59091525920526, - "y": -7915.075704765022, - "rotation": 5.478762098510049, - "action": "CARVE_RIGHT" - }, - { - "x": -34.34713946747451, - "y": -7919.522032523409, - "rotation": 5.517159342053924, - "action": "CARVE_RIGHT" - }, - { - "x": -37.91341991379981, - "y": -7924.140542692348, - "rotation": 5.5555565855978, - "action": "CARVE_RIGHT" - }, - { - "x": -41.290153782292634, - "y": -7928.931387486706, - "rotation": 5.593953829141675, - "action": "CARVE_RIGHT" - }, - { - "x": -44.47770081609587, - "y": -7933.894752852949, - "rotation": 5.632351072685551, - "action": "CARVE_RIGHT" - }, - { - "x": -47.47638340697589, - "y": -7939.030858387879, - "rotation": 5.670748316229426, - "action": "CARVE_RIGHT" - }, - { - "x": -50.28648668471351, - "y": -7944.339957257539, - "rotation": 5.709145559773302, - "action": "CARVE_RIGHT" - }, - { - "x": -52.90825860629404, - "y": -7949.8223361163155, - "rotation": 5.747542803317177, - "action": "CARVE_RIGHT" - }, - { - "x": -55.341910044897126, - "y": -7955.47831502621, - "rotation": 5.785940046861053, - "action": "CARVE_RIGHT" - }, - { - "x": -57.58761487868652, - "y": -7961.308247376303, - "rotation": 5.824337290404928, - "action": "CARVE_RIGHT" - }, - { - "x": -59.64551007940049, - "y": -7967.312519802394, - "rotation": 5.862734533948804, - "action": "CARVE_RIGHT" - }, - { - "x": -61.51569580074304, - "y": -7973.491552106821, - "rotation": 5.9011317774926795, - "action": "CARVE_RIGHT" - }, - { - "x": -63.19823546657663, - "y": -7979.845797178471, - "rotation": 5.939529021036555, - "action": "CARVE_RIGHT" - }, - { - "x": -64.69315585891658, - "y": -7986.375740912961, - "rotation": 5.9779262645804305, - "action": "CARVE_RIGHT" - }, - { - "x": -66.00044720572778, - "y": -7993.081902133001, - "rotation": 6.016323508124306, - "action": "CARVE_RIGHT" - }, - { - "x": -67.12006326852398, - "y": -7999.964832508938, - "rotation": 6.054720751668182, - "action": "CARVE_RIGHT" - }, - { - "x": -68.05192142977025, - "y": -8007.025116479484, - "rotation": 6.093117995212057, - "action": "CARVE_RIGHT" - }, - { - "x": -68.79590278008882, - "y": -8014.263371172611, - "rotation": 6.131515238755933, - "action": "CARVE_RIGHT" - }, - { - "x": -69.35185220526898, - "y": -8021.680246326642, - "rotation": 6.169912482299808, - "action": "CARVE_RIGHT" - }, - { - "x": -69.71957847308121, - "y": -8029.276424211501, - "rotation": 6.208309725843684, - "action": "CARVE_RIGHT" - }, - { - "x": -69.89885431989619, - "y": -8037.052619550153, - "rotation": 6.246706969387559, - "action": "CARVE_RIGHT" - }, - { - "x": -69.88941659803216, - "y": -8044.992050813341, - "rotation": 0.0019189057518484987, - "action": "CARVE_RIGHT" - }, - { - "x": -69.69099428865135, - "y": -8052.761950654322, - "rotation": 0.040316149295723754, - "action": "CARVE_RIGHT" - }, - { - "x": -69.30335368441976, - "y": -8060.361579526332, - "rotation": 0.07871339283959901, - "action": "CARVE_RIGHT" - }, - { - "x": -68.72629829997221, - "y": -8067.7902332890635, - "rotation": 0.11711063638347427, - "action": "CARVE_RIGHT" - }, - { - "x": -67.95966878257903, - "y": -8075.047243124254, - "rotation": 0.15550787992734952, - "action": "CARVE_RIGHT" - }, - { - "x": -67.0033428230136, - "y": -8082.13197545147, - "rotation": 0.19390512347122477, - "action": "CARVE_RIGHT" - }, - { - "x": -65.85723506662059, - "y": -8089.043831844066, - "rotation": 0.23230236701510001, - "action": "CARVE_RIGHT" - }, - { - "x": -64.52129702458423, - "y": -8095.782248945344, - "rotation": 0.2706996105589753, - "action": "CARVE_RIGHT" - }, - { - "x": -62.99551698539631, - "y": -8102.3466983848975, - "rotation": 0.30909685410285054, - "action": "CARVE_RIGHT" - }, - { - "x": -61.279919926523455, - "y": -8108.73668669514, - "rotation": 0.3474940976467258, - "action": "CARVE_RIGHT" - }, - { - "x": -59.37456742627327, - "y": -8114.951755228021, - "rotation": 0.38589134119060103, - "action": "CARVE_RIGHT" - }, - { - "x": -57.279557575858846, - "y": -8120.991480071937, - "rotation": 0.4242885847344763, - "action": "CARVE_RIGHT" - }, - { - "x": -54.99502489166125, - "y": -8126.8554719688145, - "rotation": 0.46268582827835153, - "action": "CARVE_RIGHT" - }, - { - "x": -52.52114022768962, - "y": -8132.543376231392, - "rotation": 0.5010830718222268, - "action": "CARVE_RIGHT" - }, - { - "x": -49.85811068823832, - "y": -8138.054872660681, - "rotation": 0.5394803153661021, - "action": "CARVE_RIGHT" - }, - { - "x": -47.00617954074084, - "y": -8143.389675463613, - "rotation": 0.5778775589099774, - "action": "CARVE_RIGHT" - }, - { - "x": -43.96562612881996, - "y": -8148.547533170869, - "rotation": 0.6162748024538527, - "action": "CARVE_RIGHT" - }, - { - "x": -40.73676578553378, - "y": -8153.528228554904, - "rotation": 0.654672045997728, - "action": "CARVE_RIGHT" - }, - { - "x": -37.31994974681709, - "y": -8158.331578548136, - "rotation": 0.6930692895416033, - "action": "CARVE_RIGHT" - }, - { - "x": -33.7155650651179, - "y": -8162.957434161342, - "rotation": 0.7314665330854786, - "action": "CARVE_RIGHT" - }, - { - "x": -29.92403452322842, - "y": -8167.405680402214, - "rotation": 0.7698637766293539, - "action": "CARVE_RIGHT" - }, - { - "x": -25.945816548310265, - "y": -8171.676236194116, - "rotation": 0.8082610201732292, - "action": "CARVE_RIGHT" - }, - { - "x": -21.78140512611338, - "y": -8175.769054295016, - "rotation": 0.8466582637171045, - "action": "CARVE_RIGHT" - }, - { - "x": -17.43132971538831, - "y": -8179.684121216594, - "rotation": 0.8850555072609798, - "action": "CARVE_RIGHT" - }, - { - "x": -12.896155162491343, - "y": -8183.421457143544, - "rotation": 0.9234527508048551, - "action": "CARVE_RIGHT" - }, - { - "x": -8.176481616182194, - "y": -8186.98111585305, - "rotation": 0.9618499943487304, - "action": "NOTHING" - }, - { - "x": -2.9554413127116597, - "y": -8190.070460254902, - "rotation": 0.9583593358447418, - "action": "NOTHING" - }, - { - "x": 2.2426246174914723, - "y": -8193.175049016952, - "rotation": 0.9548686773407531, - "action": "NOTHING" - }, - { - "x": 7.417782733094192, - "y": -8196.294878028244, - "rotation": 0.9513780188367644, - "action": "NOTHING" - }, - { - "x": 12.570099111164511, - "y": -8199.429943520217, - "rotation": 0.9478873603327758, - "action": "NOTHING" - }, - { - "x": 17.69963934828636, - "y": -8202.580242065858, - "rotation": 0.9443967018287871, - "action": "NOTHING" - }, - { - "x": 22.806468561672055, - "y": -8205.745770578857, - "rotation": 0.9409060433247984, - "action": "CARVE_LEFT" - }, - { - "x": 27.211714817925955, - "y": -8209.554937953824, - "rotation": 0.9025087997809231, - "action": "CARVE_LEFT" - }, - { - "x": 31.426625203681677, - "y": -8213.534891347004, - "rotation": 0.8641115562370478, - "action": "CARVE_LEFT" - }, - { - "x": 35.451726045212695, - "y": -8217.685666564206, - "rotation": 0.8257143126931725, - "action": "CARVE_LEFT" - }, - { - "x": 39.287505920255015, - "y": -8222.007333421929, - "rotation": 0.7873170691492972, - "action": "CARVE_LEFT" - }, - { - "x": 42.93441574828811, - "y": -8226.49999566546, - "rotation": 0.7489198256054219, - "action": "CARVE_LEFT" - }, - { - "x": 46.39286888061321, - "y": -8231.16379088716, - "rotation": 0.7105225820615466, - "action": "CARVE_LEFT" - }, - { - "x": 49.663241190229236, - "y": -8235.998890444944, - "rotation": 0.6721253385176713, - "action": "CARVE_LEFT" - }, - { - "x": 52.74587116150701, - "y": -8241.005499380923, - "rotation": 0.633728094973796, - "action": "CARVE_LEFT" - }, - { - "x": 55.641059979661954, - "y": -8246.183856340245, - "rotation": 0.5953308514299207, - "action": "CARVE_LEFT" - }, - { - "x": 58.349071620025896, - "y": -8251.534233490123, - "rotation": 0.5569336078860454, - "action": "CARVE_LEFT" - }, - { - "x": 60.87013293711835, - "y": -8257.056936439029, - "rotation": 0.5185363643421701, - "action": "CARVE_LEFT" - }, - { - "x": 63.20443375351766, - "y": -8262.75230415608, - "rotation": 0.48013912079829485, - "action": "CARVE_LEFT" - }, - { - "x": 65.35212694853251, - "y": -8268.620708890616, - "rotation": 0.4417418772544196, - "action": "CARVE_LEFT" - }, - { - "x": 67.31332854667419, - "y": -8274.662556091936, - "rotation": 0.40334463371054435, - "action": "CARVE_LEFT" - }, - { - "x": 69.08811780593003, - "y": -8280.878284329237, - "rotation": 0.3649473901666691, - "action": "CARVE_LEFT" - }, - { - "x": 70.67653730583852, - "y": -8287.268365211721, - "rotation": 0.32655014662279386, - "action": "CARVE_LEFT" - }, - { - "x": 72.07859303536647, - "y": -8293.833303308884, - "rotation": 0.2881529030789186, - "action": "CARVE_LEFT" - }, - { - "x": 73.29425448058855, - "y": -8300.573636070993, - "rotation": 0.24975565953504336, - "action": "CARVE_LEFT" - }, - { - "x": 74.3234547121699, - "y": -8307.48993374973, - "rotation": 0.2113584159911681, - "action": "CARVE_LEFT" - }, - { - "x": 75.16609047265196, - "y": -8314.582799319027, - "rotation": 0.17296117244729287, - "action": "CARVE_LEFT" - }, - { - "x": 75.82202226354205, - "y": -8321.85286839607, - "rotation": 0.13456392890341762, - "action": "CARVE_LEFT" - }, - { - "x": 76.29107443220725, - "y": -8329.300809162489, - "rotation": 0.09616668535954237, - "action": "CARVE_LEFT" - }, - { - "x": 76.5730352585727, - "y": -8336.927322285717, - "rotation": 0.057769441815667115, - "action": "CARVE_LEFT" - }, - { - "x": 76.66765704162512, - "y": -8344.733140840543, - "rotation": 0.01937219827179186, - "action": "CARVE_LEFT" - }, - { - "x": 76.57466217434771, - "y": -8352.546303276373, - "rotation": 6.264160261907503, - "action": "CARVE_LEFT" - }, - { - "x": 76.29379187323026, - "y": -8360.190820613883, - "rotation": 6.225763018363628, - "action": "CARVE_LEFT" - }, - { - "x": 75.82482463822654, - "y": -8367.665964862557, - "rotation": 6.187365774819752, - "action": "CARVE_LEFT" - }, - { - "x": 75.1675761632807, - "y": -8374.971043411979, - "rotation": 6.148968531275877, - "action": "CARVE_LEFT" - }, - { - "x": 74.32189924705506, - "y": -8382.10539894747, - "rotation": 6.110571287732001, - "action": "CARVE_LEFT" - }, - { - "x": 73.28768370385875, - "y": -8389.068409365933, - "rotation": 6.072174044188126, - "action": "CARVE_LEFT" - }, - { - "x": 72.06485627477684, - "y": -8395.859487691872, - "rotation": 6.03377680064425, - "action": "CARVE_LEFT" - }, - { - "x": 70.65338053899939, - "y": -8402.478081993606, - "rotation": 5.9953795571003745, - "action": "CARVE_LEFT" - }, - { - "x": 69.05325682535008, - "y": -8408.923675299664, - "rotation": 5.956982313556499, - "action": "CARVE_LEFT" - }, - { - "x": 67.26452212401408, - "y": -8415.195785515381, - "rotation": 5.9185850700126235, - "action": "CARVE_LEFT" - }, - { - "x": 65.28724999846453, - "y": -8421.29396533967, - "rotation": 5.880187826468748, - "action": "CARVE_LEFT" - }, - { - "x": 63.121550497587336, - "y": -8427.217802181975, - "rotation": 5.841790582924872, - "action": "CARVE_LEFT" - }, - { - "x": 60.767570068003806, - "y": -8432.966918079428, - "rotation": 5.803393339380997, - "action": "CARVE_LEFT" - }, - { - "x": 58.22549146659074, - "y": -8438.540969614181, - "rotation": 5.764996095837121, - "action": "CARVE_LEFT" - }, - { - "x": 55.495533673197514, - "y": -8443.93964783092, - "rotation": 5.726598852293246, - "action": "CARVE_LEFT" - }, - { - "x": 52.57795180355969, - "y": -8449.162678154571, - "rotation": 5.68820160874937, - "action": "CARVE_LEFT" - }, - { - "x": 49.47303702240887, - "y": -8454.209820308188, - "rotation": 5.649804365205495, - "action": "CARVE_LEFT" - }, - { - "x": 46.18111645677813, - "y": -8459.080868231025, - "rotation": 5.611407121661619, - "action": "CARVE_LEFT" - }, - { - "x": 42.70255310950293, - "y": -8463.775649996795, - "rotation": 5.573009878117744, - "action": "CARVE_LEFT" - }, - { - "x": 39.03774577291676, - "y": -8468.294027732101, - "rotation": 5.534612634573868, - "action": "CARVE_LEFT" - }, - { - "x": 35.1871289427413, - "y": -8472.635897535074, - "rotation": 5.496215391029993, - "action": "CARVE_LEFT" - }, - { - "x": 31.15117273217066, - "y": -8476.80118939416, - "rotation": 5.457818147486117, - "action": "CARVE_LEFT" - }, - { - "x": 26.93038278614912, - "y": -8480.789867107123, - "rotation": 5.419420903942242, - "action": "CARVE_LEFT" - }, - { - "x": 22.52530019584221, - "y": -8484.601928200205, - "rotation": 5.381023660398366, - "action": "CARVE_LEFT" - }, - { - "x": 17.936501413300462, - "y": -8488.23740384748, - "rotation": 5.342626416854491, - "action": "CARVE_LEFT" - }, - { - "x": 13.164598166315592, - "y": -8491.696358790387, - "rotation": 5.304229173310615, - "action": "CARVE_LEFT" - }, - { - "x": 8.210237373468594, - "y": -8494.978891257435, - "rotation": 5.2658319297667395, - "action": "CARVE_LEFT" - }, - { - "x": 3.074101059369391, - "y": -8498.085132884109, - "rotation": 5.227434686222864, - "action": "NOTHING" - }, - { - "x": -2.608625541958685, - "y": -8500.678053251408, - "rotation": 5.230925344726852, - "action": "NOTHING" - }, - { - "x": -8.26733829019821, - "y": -8503.286049187413, - "rotation": 5.234416003230841, - "action": "NOTHING" - }, - { - "x": -13.90211435097024, - "y": -8505.909108796206, - "rotation": 5.237906661734829, - "action": "CARVE_RIGHT" - }, - { - "x": -18.78259186765895, - "y": -8509.223319169338, - "rotation": 5.276303905278705, - "action": "CARVE_RIGHT" - }, - { - "x": -23.472909581280273, - "y": -8512.706856046878, - "rotation": 5.31470114882258, - "action": "CARVE_RIGHT" - }, - { - "x": -27.973690557757788, - "y": -8516.359667994568, - "rotation": 5.353098392366456, - "action": "CARVE_RIGHT" - }, - { - "x": -32.28551988499782, - "y": -8520.181737797113, - "rotation": 5.391495635910331, - "action": "CARVE_RIGHT" - }, - { - "x": -36.40894476368309, - "y": -8524.173082375824, - "rotation": 5.429892879454207, - "action": "CARVE_RIGHT" - }, - { - "x": -40.34447459786255, - "y": -8528.333752706438, - "rotation": 5.4682901229980825, - "action": "CARVE_RIGHT" - }, - { - "x": -44.09258108533787, - "y": -8532.663833737117, - "rotation": 5.506687366541958, - "action": "CARVE_RIGHT" - }, - { - "x": -47.65369830784695, - "y": -8537.163444306643, - "rotation": 5.5450846100858335, - "action": "CARVE_RIGHT" - }, - { - "x": -51.028222821045006, - "y": -8541.832737062794, - "rotation": 5.583481853629709, - "action": "CARVE_RIGHT" - }, - { - "x": -54.21651374428353, - "y": -8546.671898380897, - "rotation": 5.621879097173585, - "action": "CARVE_RIGHT" - }, - { - "x": -57.218892850187686, - "y": -8551.681148282574, - "rotation": 5.66027634071746, - "action": "CARVE_RIGHT" - }, - { - "x": -60.03564465403248, - "y": -8556.860740354668, - "rotation": 5.698673584261336, - "action": "CARVE_RIGHT" - }, - { - "x": -62.667016502918216, - "y": -8562.21096166835, - "rotation": 5.737070827805211, - "action": "CARVE_RIGHT" - }, - { - "x": -65.11321866474559, - "y": -8567.73213269841, - "rotation": 5.775468071349087, - "action": "CARVE_RIGHT" - }, - { - "x": -67.37442441699095, - "y": -8573.424607242727, - "rotation": 5.813865314892962, - "action": "CARVE_RIGHT" - }, - { - "x": -69.45077013528207, - "y": -8579.28877234193, - "rotation": 5.852262558436838, - "action": "CARVE_RIGHT" - }, - { - "x": -71.34235538177488, - "y": -8585.325048199229, - "rotation": 5.890659801980713, - "action": "CARVE_RIGHT" - }, - { - "x": -73.04924299333167, - "y": -8591.533888100432, - "rotation": 5.929057045524589, - "action": "CARVE_RIGHT" - }, - { - "x": -74.57145916950107, - "y": -8597.915778334143, - "rotation": 5.967454289068464, - "action": "CARVE_RIGHT" - }, - { - "x": -75.90899356030027, - "y": -8604.47123811214, - "rotation": 6.00585153261234, - "action": "CARVE_RIGHT" - }, - { - "x": -77.06179935380003, - "y": -8611.200819489934, - "rotation": 6.044248776156215, - "action": "CARVE_RIGHT" - }, - { - "x": -78.02979336351268, - "y": -8618.105107287496, - "rotation": 6.082646019700091, - "action": "CARVE_RIGHT" - }, - { - "x": -78.81285611558378, - "y": -8625.184719010183, - "rotation": 6.121043263243966, - "action": "CARVE_RIGHT" - }, - { - "x": -79.41083193578764, - "y": -8632.44030476983, - "rotation": 6.159440506787842, - "action": "CARVE_RIGHT" - }, - { - "x": -79.82352903632729, - "y": -8639.872547206016, - "rotation": 6.1978377503317175, - "action": "CARVE_RIGHT" - }, - { - "x": -80.05071960243923, - "y": -8647.482161407517, - "rotation": 6.236234993875593, - "action": "CARVE_RIGHT" - }, - { - "x": -80.09213987880344, - "y": -8655.269894833937, - "rotation": 6.2746322374194685, - "action": "CARVE_RIGHT" - }, - { - "x": -79.94750499227845, - "y": -8662.967873235699, - "rotation": 0.02984417378375781, - "action": "CARVE_RIGHT" - }, - { - "x": -79.61656077744787, - "y": -8670.498633260328, - "rotation": 0.06824141732763306, - "action": "CARVE_RIGHT" - }, - { - "x": -79.09909034304685, - "y": -8677.861451226774, - "rotation": 0.1066386608715083, - "action": "CARVE_RIGHT" - }, - { - "x": -78.39491398250719, - "y": -8685.055638825408, - "rotation": 0.14503590441538355, - "action": "CARVE_RIGHT" - }, - { - "x": -77.50388908470362, - "y": -8692.080543033677, - "rotation": 0.1834331479592588, - "action": "CARVE_RIGHT" - }, - { - "x": -76.42591004490092, - "y": -8698.935546031957, - "rotation": 0.22183039150313405, - "action": "CARVE_RIGHT" - }, - { - "x": -75.16090817590147, - "y": -8705.6200651196, - "rotation": 0.2602276350470093, - "action": "CARVE_RIGHT" - }, - { - "x": -73.70885161939277, - "y": -8712.13355263116, - "rotation": 0.29862487859088455, - "action": "CARVE_RIGHT" - }, - { - "x": -72.06974525749446, - "y": -8718.475495852808, - "rotation": 0.3370221221347598, - "action": "CARVE_RIGHT" - }, - { - "x": -70.24363062450443, - "y": -8724.645416938942, - "rotation": 0.37541936567863504, - "action": "CARVE_RIGHT" - }, - { - "x": -68.23058581884372, - "y": -8730.64287282897, - "rotation": 0.4138166092225103, - "action": "CARVE_RIGHT" - }, - { - "x": -66.03072541519953, - "y": -8736.4674551643, - "rotation": 0.45221385276638554, - "action": "CARVE_RIGHT" - }, - { - "x": -63.6442003768661, - "y": -8742.118790205495, - "rotation": 0.4906110963102608, - "action": "CARVE_RIGHT" - }, - { - "x": -61.07119796828302, - "y": -8747.596538749627, - "rotation": 0.5290083398541361, - "action": "CARVE_RIGHT" - }, - { - "x": -58.31194166777044, - "y": -8752.90039604781, - "rotation": 0.5674055833980114, - "action": "CARVE_RIGHT" - }, - { - "x": -55.36669108046084, - "y": -8758.03009172292, - "rotation": 0.6058028269418867, - "action": "CARVE_RIGHT" - }, - { - "x": -52.235741851426916, - "y": -8762.985389687508, - "rotation": 0.644200070485762, - "action": "CARVE_RIGHT" - }, - { - "x": -48.91942557900518, - "y": -8767.76608806188, - "rotation": 0.6825973140296373, - "action": "CARVE_RIGHT" - }, - { - "x": -45.418109728314775, - "y": -8772.372019092374, - "rotation": 0.7209945575735126, - "action": "CARVE_RIGHT" - }, - { - "x": -41.73219754497116, - "y": -8776.803049069813, - "rotation": 0.7593918011173879, - "action": "CARVE_RIGHT" - }, - { - "x": -37.86212796899423, - "y": -8781.05907824815, - "rotation": 0.7977890446612632, - "action": "CARVE_RIGHT" - }, - { - "x": -33.80837554891041, - "y": -8785.140040763286, - "rotation": 0.8361862882051385, - "action": "CARVE_RIGHT" - }, - { - "x": -29.571450356048363, - "y": -8789.045904552075, - "rotation": 0.8745835317490138, - "action": "CARVE_RIGHT" - }, - { - "x": -25.151897899027823, - "y": -8792.776671271511, - "rotation": 0.9129807752928891, - "action": "CARVE_RIGHT" - }, - { - "x": -20.55029903844121, - "y": -8796.332376218093, - "rotation": 0.9513780188367644, - "action": "CARVE_RIGHT" - }, - { - "x": -15.767269901727559, - "y": -8799.713088247378, - "rotation": 0.9897752623806397, - "action": "CARVE_RIGHT" - }, - { - "x": -10.803461798238361, - "y": -8802.9189096937, - "rotation": 1.028172505924515, - "action": "NOTHING" - }, - { - "x": -5.311594324272404, - "y": -8805.629044799149, - "rotation": 1.0246818474205264, - "action": "NOTHING" - }, - { - "x": 0.1568719371646221, - "y": -8808.354164017781, - "rotation": 1.0211911889165377, - "action": "CARVE_LEFT" - }, - { - "x": 4.8892656172567355, - "y": -8811.753973610601, - "rotation": 0.9827939453726624, - "action": "CARVE_LEFT" - }, - { - "x": 9.43306644892198, - "y": -8815.322073577277, - "rotation": 0.9443967018287871, - "action": "CARVE_LEFT" - }, - { - "x": 13.788869538108415, - "y": -8819.058437625858, - "rotation": 0.9059994582849118, - "action": "CARVE_LEFT" - }, - { - "x": 17.95723208078104, - "y": -8822.963073621708, - "rotation": 0.8676022147410365, - "action": "CARVE_LEFT" - }, - { - "x": 21.938673453561126, - "y": -8827.036023505289, - "rotation": 0.8292049711971612, - "action": "CARVE_LEFT" - }, - { - "x": 25.73367530416204, - "y": -8831.277363210114, - "rotation": 0.7908077276532859, - "action": "CARVE_LEFT" - }, - { - "x": 29.342681641622068, - "y": -8835.687202580895, - "rotation": 0.7524104841094106, - "action": "CARVE_LEFT" - }, - { - "x": 32.766098926334614, - "y": -8840.265685291874, - "rotation": 0.7140132405655353, - "action": "CARVE_LEFT" - }, - { - "x": 36.00429615987626, - "y": -8845.012988765331, - "rotation": 0.67561599702166, - "action": "CARVE_LEFT" - }, - { - "x": 39.05760497463311, - "y": -8849.92932409029, - "rotation": 0.6372187534777847, - "action": "CARVE_LEFT" - }, - { - "x": 41.92631972322578, - "y": -8855.014935941394, - "rotation": 0.5988215099339094, - "action": "SLIDE_LEFT" - }, - { - "x": 43.6517928629619, - "y": -8861.095887224608, - "rotation": 0.5447163031220852, - "action": "SLIDE_LEFT" - }, - { - "x": 45.193254104702504, - "y": -8867.284839406766, - "rotation": 0.49061109631026095, - "action": "SLIDE_LEFT" - }, - { - "x": 46.55363858454887, - "y": -8873.579910387467, - "rotation": 0.4365058894984367, - "action": "SLIDE_LEFT" - }, - { - "x": 47.735825248330606, - "y": -8879.979268590227, - "rotation": 0.3824006826866125, - "action": "SLIDE_LEFT" - }, - { - "x": 48.742636986259484, - "y": -8886.481132840505, - "rotation": 0.32829547587478825, - "action": "SLIDE_LEFT" - }, - { - "x": 49.57684076728063, - "y": -8893.083772244012, - "rotation": 0.274190269062964, - "action": "SLIDE_LEFT" - }, - { - "x": 50.24114777312162, - "y": -8899.785506065282, - "rotation": 0.2200850622511398, - "action": "SLIDE_LEFT" - }, - { - "x": 50.73821353204022, - "y": -8906.584703606526, - "rotation": 0.1659798554393156, - "action": "SLIDE_LEFT" - }, - { - "x": 51.07063805227136, - "y": -8913.479784086761, - "rotation": 0.11187464862749139, - "action": "CARVE_LEFT" - }, - { - "x": 51.398423212387534, - "y": -8920.38551276453, - "rotation": 0.07347740508361614, - "action": "CARVE_LEFT" - }, - { - "x": 51.5550657766946, - "y": -8927.456561201352, - "rotation": 0.03508016153974088, - "action": "CARVE_LEFT" - }, - { - "x": 51.54023917816764, - "y": -8934.666187413355, - "rotation": 6.279868225175452, - "action": "CARVE_LEFT" - }, - { - "x": 51.35361169151832, - "y": -8941.723479011316, - "rotation": 6.2414709816315765, - "action": "CARVE_LEFT" - }, - { - "x": 50.99488906723221, - "y": -8948.62763807614, - "rotation": 6.203073738087701, - "action": "CARVE_LEFT" - }, - { - "x": 50.46381444163928, - "y": -8955.37790225109, - "rotation": 6.1646764945438255, - "action": "CARVE_LEFT" - }, - { - "x": 49.76016824718671, - "y": -8961.973544657012, - "rotation": 6.12627925099995, - "action": "CARVE_LEFT" - }, - { - "x": 48.883768122913594, - "y": -8968.413873807733, - "rotation": 6.087882007456074, - "action": "CARVE_LEFT" - }, - { - "x": 47.834468825127054, - "y": -8974.698233525662, - "rotation": 6.049484763912199, - "action": "CARVE_LEFT" - }, - { - "x": 46.612162138279444, - "y": -8980.826002857573, - "rotation": 6.011087520368323, - "action": "CARVE_LEFT" - }, - { - "x": 45.21677678604608, - "y": -8986.796595990585, - "rotation": 5.972690276824448, - "action": "CARVE_LEFT" - }, - { - "x": 43.64827834260315, - "y": -8992.609462168315, - "rotation": 5.934293033280572, - "action": "CARVE_LEFT" - }, - { - "x": 41.90666914410528, - "y": -8998.264085607238, - "rotation": 5.895895789736697, - "action": "CARVE_LEFT" - }, - { - "x": 39.99198820036249, - "y": -9003.759985413219, - "rotation": 5.857498546192821, - "action": "CARVE_LEFT" - }, - { - "x": 37.90431110671592, - "y": -9009.096715498243, - "rotation": 5.819101302648946, - "action": "CARVE_LEFT" - }, - { - "x": 35.643749956112, - "y": -9014.273864497321, - "rotation": 5.78070405910507, - "action": "CARVE_LEFT" - }, - { - "x": 33.21045325137463, - "y": -9019.291055685597, - "rotation": 5.742306815561195, - "action": "CARVE_LEFT" - }, - { - "x": 30.604605817674912, - "y": -9024.147946895622, - "rotation": 5.703909572017319, - "action": "CARVE_LEFT" - }, - { - "x": 27.82642871519804, - "y": -9028.844230434832, - "rotation": 5.665512328473444, - "action": "CARVE_LEFT" - }, - { - "x": 24.876179152006905, - "y": -9033.379633003202, - "rotation": 5.627115084929568, - "action": "CARVE_LEFT" - }, - { - "x": 21.75415039710195, - "y": -9037.75391561108, - "rotation": 5.588717841385693, - "action": "CARVE_LEFT" - }, - { - "x": 18.46067169367695, - "y": -9041.96687349722, - "rotation": 5.550320597841817, - "action": "NOTHING" - }, - { - "x": 14.819595286592428, - "y": -9045.856158189596, - "rotation": 5.5538112563458055, - "action": "NOTHING" - }, - { - "x": 11.196829572825052, - "y": -9049.760623708391, - "rotation": 5.557301914849794, - "action": "NOTHING" - }, - { - "x": 7.592341275480897, - "y": -9053.680289100668, - "rotation": 5.560792573353782, - "action": "NOTHING" - }, - { - "x": 4.006097521010652, - "y": -9057.61517369721, - "rotation": 5.564283231857771, - "action": "NOTHING" - }, - { - "x": 0.43806583826860734, - "y": -9061.565297111812, - "rotation": 5.567773890361759, - "action": "NOTHING" - }, - { - "x": -3.111785842426293, - "y": -9065.530679240574, - "rotation": 5.571264548865748, - "action": "NOTHING" - }, - { - "x": -6.6434891902273145, - "y": -9069.511340261186, - "rotation": 5.574755207369736, - "action": "NOTHING" - }, - { - "x": -10.15707547469473, - "y": -9073.507300632238, - "rotation": 5.578245865873725, - "action": "CARVE_RIGHT" - }, - { - "x": -13.146375658804645, - "y": -9077.987051377619, - "rotation": 5.6166431094176, - "action": "CARVE_RIGHT" - }, - { - "x": -15.963027930911824, - "y": -9082.625517903012, - "rotation": 5.655040352961476, - "action": "CARVE_RIGHT" - }, - { - "x": -18.60727470841563, - "y": -9087.42299113931, - "rotation": 5.693437596505351, - "action": "CARVE_RIGHT" - }, - { - "x": -21.079321355105524, - "y": -9092.379795398603, - "rotation": 5.731834840049227, - "action": "CARVE_RIGHT" - }, - { - "x": -23.379336269860165, - "y": -9097.496288293712, - "rotation": 5.770232083593102, - "action": "CARVE_RIGHT" - }, - { - "x": -25.50745097514721, - "y": -9102.772860657918, - "rotation": 5.808629327136978, - "action": "CARVE_RIGHT" - }, - { - "x": -27.46376020532433, - "y": -9108.20993646486, - "rotation": 5.847026570680853, - "action": "CARVE_RIGHT" - }, - { - "x": -29.24832199474177, - "y": -9113.807972748624, - "rotation": 5.885423814224729, - "action": "CARVE_RIGHT" - }, - { - "x": -30.86115776564695, - "y": -9119.567459524003, - "rotation": 5.923821057768604, - "action": "CARVE_RIGHT" - }, - { - "x": -32.30225241589156, - "y": -9125.48891970695, - "rotation": 5.96221830131248, - "action": "CARVE_RIGHT" - }, - { - "x": -33.57155440644145, - "y": -9131.572909035192, - "rotation": 6.000615544856355, - "action": "CARVE_RIGHT" - }, - { - "x": -34.66897584868992, - "y": -9137.820015989042, - "rotation": 6.039012788400231, - "action": "CARVE_RIGHT" - }, - { - "x": -35.59439259157463, - "y": -9144.230861712373, - "rotation": 6.0774100319441064, - "action": "CARVE_RIGHT" - }, - { - "x": -36.347644308498786, - "y": -9150.806099933785, - "rotation": 6.115807275487982, - "action": "CARVE_RIGHT" - }, - { - "x": -36.92853458405677, - "y": -9157.54641688794, - "rotation": 6.1542045190318575, - "action": "CARVE_RIGHT" - }, - { - "x": -37.33683100056487, - "y": -9164.452531237084, - "rotation": 6.192601762575733, - "action": "CARVE_RIGHT" - }, - { - "x": -37.57226522439737, - "y": -9171.52519399273, - "rotation": 6.2309990061196086, - "action": "CARVE_RIGHT" - }, - { - "x": -37.63453309212851, - "y": -9178.765188437534, - "rotation": 6.269396249663484, - "action": "CARVE_RIGHT" - }, - { - "x": -37.52330471572582, - "y": -9185.966684321018, - "rotation": 0.02460818602777337, - "action": "CARVE_RIGHT" - }, - { - "x": -37.23827577765699, - "y": -9193.013563364751, - "rotation": 0.06300542957164862, - "action": "CARVE_RIGHT" - }, - { - "x": -36.779179368410475, - "y": -9199.905053739672, - "rotation": 0.10140267311552387, - "action": "CARVE_RIGHT" - }, - { - "x": -36.14578589672115, - "y": -9206.640419115094, - "rotation": 0.13979991665939911, - "action": "CARVE_RIGHT" - }, - { - "x": -35.337902999997844, - "y": -9213.218958574067, - "rotation": 0.17819716020327436, - "action": "CARVE_RIGHT" - }, - { - "x": -34.35537545495249, - "y": -9219.640006528934, - "rotation": 0.2165944037471496, - "action": "CARVE_RIGHT" - }, - { - "x": -33.19808508843036, - "y": -9225.902932637067, - "rotation": 0.25499164729102486, - "action": "CARVE_RIGHT" - }, - { - "x": -31.865950688441007, - "y": -9232.0071417168, - "rotation": 0.2933888908349001, - "action": "CARVE_RIGHT" - }, - { - "x": -30.35892791538941, - "y": -9237.952073663548, - "rotation": 0.33178613437877535, - "action": "CARVE_RIGHT" - }, - { - "x": -28.677009213506974, - "y": -9243.737203366112, - "rotation": 0.3701833779226506, - "action": "CARVE_RIGHT" - }, - { - "x": -26.82022372248189, - "y": -9249.362040623178, - "rotation": 0.40858062146652585, - "action": "CARVE_RIGHT" - }, - { - "x": -24.78863718928845, - "y": -9254.826130059995, - "rotation": 0.4469778650104011, - "action": "CARVE_RIGHT" - }, - { - "x": -22.582351880214887, - "y": -9260.129051045242, - "rotation": 0.48537510855427635, - "action": "CARVE_RIGHT" - }, - { - "x": -20.2015064930893, - "y": -9265.270417608086, - "rotation": 0.5237723520981517, - "action": "CARVE_RIGHT" - }, - { - "x": -17.64627606970326, - "y": -9270.249878355424, - "rotation": 0.562169595642027, - "action": "CARVE_RIGHT" - }, - { - "x": -14.916871908432615, - "y": -9275.06711638931, - "rotation": 0.6005668391859023, - "action": "CARVE_RIGHT" - }, - { - "x": -12.013541477055163, - "y": -9279.72184922456, - "rotation": 0.6389640827297776, - "action": "CARVE_RIGHT" - }, - { - "x": -8.936568325764657, - "y": -9284.213828706557, - "rotation": 0.6773613262736529, - "action": "NOTHING" - }, - { - "x": -5.535894302545536, - "y": -9288.404862320125, - "rotation": 0.6738706677696642, - "action": "NOTHING" - }, - { - "x": -2.153376919366716, - "y": -9292.611533666344, - "rotation": 0.6703800092656755, - "action": "NOTHING" - }, - { - "x": 1.2110118253215623, - "y": -9296.833865597668, - "rotation": 0.6668893507616869, - "action": "NOTHING" - }, - { - "x": 4.55729954180544, - "y": -9301.071881241027, - "rotation": 0.6633986922576982, - "action": "NOTHING" - }, - { - "x": 7.885513450022067, - "y": -9305.325603997142, - "rotation": 0.6599080337537095, - "action": "NOTHING" - }, - { - "x": 11.195680380472204, - "y": -9309.595057539835, - "rotation": 0.6564173752497209, - "action": "NOTHING" - }, - { - "x": 14.487826775130792, - "y": -9313.880265815342, - "rotation": 0.6529267167457322, - "action": "NOTHING" - }, - { - "x": 17.76197868835552, - "y": -9318.181253041632, - "rotation": 0.6494360582417436, - "action": "NOTHING" - }, - { - "x": 21.01816178779338, - "y": -9322.498043707721, - "rotation": 0.6459453997377549, - "action": "NOTHING" - }, - { - "x": 24.256401355285202, - "y": -9326.830662572998, - "rotation": 0.6424547412337662, - "action": "NOTHING" - }, - { - "x": 27.476722287768194, - "y": -9331.179134666536, - "rotation": 0.6389640827297776, - "action": "NOTHING" - }, - { - "x": 30.67914909817648, - "y": -9335.543485286422, - "rotation": 0.6354734242257889, - "action": "NOTHING" - }, - { - "x": 33.863705916339654, - "y": -9339.923739999078, - "rotation": 0.6319827657218002, - "action": "NOTHING" - }, - { - "x": 37.03041648987932, - "y": -9344.319924638585, - "rotation": 0.6284921072178116, - "action": "NOTHING" - }, - { - "x": 40.17930418510369, - "y": -9348.73206530601, - "rotation": 0.6250014487138229, - "action": "NOTHING" - }, - { - "x": 43.31039198790012, - "y": -9353.16018836874, - "rotation": 0.6215107902098342, - "action": "NOTHING" - }, - { - "x": 46.42370250462576, - "y": -9357.604320459805, - "rotation": 0.6180201317058456, - "action": "CARVE_LEFT" - }, - { - "x": 49.05136798975385, - "y": -9362.497486600583, - "rotation": 0.5796228881619703, - "action": "CARVE_LEFT" - }, - { - "x": 51.504922081612115, - "y": -9367.551744198981, - "rotation": 0.541225644618095, - "action": "CARVE_LEFT" - }, - { - "x": 53.784530406548036, - "y": -9372.767453451634, - "rotation": 0.5028284010742197, - "action": "CARVE_LEFT" - }, - { - "x": 55.890321719093635, - "y": -9378.145007771349, - "rotation": 0.4644311575303444, - "action": "CARVE_LEFT" - }, - { - "x": 57.82238799025891, - "y": -9383.684833707017, - "rotation": 0.42603391398646917, - "action": "CARVE_LEFT" - }, - { - "x": 59.580784495626894, - "y": -9389.387390863703, - "rotation": 0.3876366704425939, - "action": "CARVE_LEFT" - }, - { - "x": 61.165529903250686, - "y": -9395.253171822918, - "rotation": 0.3492394268987187, - "action": "CARVE_LEFT" - }, - { - "x": 62.57660636135301, - "y": -9401.28270206307, - "rotation": 0.3108421833548434, - "action": "CARVE_LEFT" - }, - { - "x": 63.81395958582864, - "y": -9407.476539880097, - "rotation": 0.2724449398109682, - "action": "CARVE_LEFT" - }, - { - "x": 64.87749894755014, - "y": -9413.835276308277, - "rotation": 0.23404769626709293, - "action": "CARVE_LEFT" - }, - { - "x": 65.76709755947732, - "y": -9420.35953504121, - "rotation": 0.19565045272321768, - "action": "CARVE_LEFT" - }, - { - "x": 66.48259236357092, - "y": -9427.049972353001, - "rotation": 0.15725320917934243, - "action": "CARVE_LEFT" - }, - { - "x": 67.02378421751081, - "y": -9433.907277019589, - "rotation": 0.11885596563546719, - "action": "CARVE_LEFT" - }, - { - "x": 67.39043798121924, - "y": -9440.932170240281, - "rotation": 0.08045872209159194, - "action": "CARVE_LEFT" - }, - { - "x": 67.58228260318951, - "y": -9448.125405559447, - "rotation": 0.042061478547716684, - "action": "CARVE_LEFT" - }, - { - "x": 67.59901120662052, - "y": -9455.487768788398, - "rotation": 0.003664235003841429, - "action": "CARVE_LEFT" - }, - { - "x": 67.4403011353607, - "y": -9462.72522321435, - "rotation": 6.2484522986395525, - "action": "CARVE_LEFT" - }, - { - "x": 67.10586463478563, - "y": -9469.80599836932, - "rotation": 6.210055055095677, - "action": "CARVE_LEFT" - }, - { - "x": 66.59545131653677, - "y": -9476.729338224213, - "rotation": 6.1716578115518015, - "action": "NOTHING" - }, - { - "x": 66.04561194416667, - "y": -9483.622415426715, - "rotation": 6.17514847005579, - "action": "NOTHING" - }, - { - "x": 65.51308652808257, - "y": -9490.53780245285, - "rotation": 6.178639128559778, - "action": "NOTHING" - }, - { - "x": 64.99790274729749, - "y": -9497.475560296914, - "rotation": 6.182129787063767, - "action": "NOTHING" - }, - { - "x": 64.5000885397268, - "y": -9504.435750129265, - "rotation": 6.185620445567755, - "action": "NOTHING" - }, - { - "x": 64.01967210156977, - "y": -9511.418433295872, - "rotation": 6.189111104071744, - "action": "NOTHING" - }, - { - "x": 63.556681886692346, - "y": -9518.423671317856, - "rotation": 6.192601762575732, - "action": "NOTHING" - }, - { - "x": 63.11114660601145, - "y": -9525.45152589103, - "rotation": 6.196092421079721, - "action": "NOTHING" - }, - { - "x": 62.683095226880596, - "y": -9532.50205888545, - "rotation": 6.199583079583709, - "action": "NOTHING" - }, - { - "x": 62.27255697247687, - "y": -9539.575332344955, - "rotation": 6.2030737380876975, - "action": "NOTHING" - }, - { - "x": 61.879561321189335, - "y": -9546.671408486724, - "rotation": 6.206564396591686, - "action": "NOTHING" - }, - { - "x": 61.50413800600879, - "y": -9553.790349700812, - "rotation": 6.210055055095674, - "action": "NOTHING" - }, - { - "x": 61.14631701391886, - "y": -9560.93221854971, - "rotation": 6.213545713599663, - "action": "NOTHING" - }, - { - "x": 60.80612858528854, - "y": -9568.097077767887, - "rotation": 6.217036372103651, - "action": "NOTHING" - }, - { - "x": 60.483603213265994, - "y": -9575.284990261349, - "rotation": 6.22052703060764, - "action": "NOTHING" - }, - { - "x": 60.17877164317381, - "y": -9582.496019107184, - "rotation": 6.224017689111628, - "action": "NOTHING" - }, - { - "x": 59.891664871905554, - "y": -9589.730227553124, - "rotation": 6.227508347615617, - "action": "NOTHING" - }, - { - "x": 59.62231414732371, - "y": -9596.987679017091, - "rotation": 6.230999006119605, - "action": "NOTHING" - }, - { - "x": 59.370750967658964, - "y": -9604.26843708676, - "rotation": 6.234489664623593, - "action": "NOTHING" - }, - { - "x": 59.137007080910806, - "y": -9611.572565519109, - "rotation": 6.237980323127582, - "action": "NOTHING" - }, - { - "x": 58.921114484249564, - "y": -9618.900128239986, - "rotation": 6.24147098163157, - "action": "NOTHING" - }, - { - "x": 58.72310542341967, - "y": -9626.251189343659, - "rotation": 6.244961640135559, - "action": "NOTHING" - }, - { - "x": 58.543012392144355, - "y": -9633.625813092378, - "rotation": 6.248452298639547, - "action": "NOTHING" - }, - { - "x": 58.38086813153164, - "y": -9641.024063915938, - "rotation": 6.251942957143536, - "action": "NOTHING" - }, - { - "x": 58.236705629481676, - "y": -9648.446006411243, - "rotation": 6.255433615647524, - "action": "NOTHING" - }, - { - "x": 58.11055812009539, - "y": -9655.891705341863, - "rotation": 6.2589242741515125, - "action": "NOTHING" - }, - { "x": 58.00245908308451, "y": -9663.3612256376, "rotation": 6.262414932655501, "action": "NOTHING" }, - { - "x": 57.91244224318287, - "y": -9670.854632394059, - "rotation": 6.265905591159489, - "action": "NOTHING" - }, - { - "x": 57.84054156955907, - "y": -9678.371990872205, - "rotation": 6.269396249663478, - "action": "NOTHING" - }, - { - "x": 57.78679127523042, - "y": -9685.913366497936, - "rotation": 6.272886908167466, - "action": "NOTHING" - }, - { - "x": 57.75122581647825, - "y": -9693.47882486165, - "rotation": 6.276377566671455, - "action": "NOTHING" - }, - { - "x": 57.73387989226449, - "y": -9701.068431717811, - "rotation": 6.279868225175443, - "action": "NOTHING" - }, - { - "x": 57.73478844309572, - "y": -9708.68056584138, - "rotation": 0.00017357649984539592, - "action": "NOTHING" - }, - { - "x": 57.71740931301959, - "y": -9716.284701726816, - "rotation": 6.279868225175443, - "action": "NOTHING" - }, - { - "x": 57.718319598321834, - "y": -9723.911367812241, - "rotation": 0.00017357649984539592, - "action": "NOTHING" - }, - { - "x": 57.70090738181685, - "y": -9731.529980469522, - "rotation": 6.279868225175443, - "action": "NOTHING" - }, - { - "x": 57.701819395351635, - "y": -9739.171126248826, - "rotation": 0.00017357649984539592, - "action": "NOTHING" - }, - { - "x": 57.68437421142174, - "y": -9746.804163608478, - "rotation": 6.279868225175443, - "action": "NOTHING" - }, - { - "x": 57.685287946973034, - "y": -9754.459737001676, - "rotation": 0.00017357649984539592, - "action": "NOTHING" - }, - { - "x": 57.667809914194144, - "y": -9762.107147181507, - "rotation": 6.279868225175443, - "action": "NOTHING" - }, - { - "x": 57.668725365568264, - "y": -9769.777096295935, - "rotation": 0.00017357649984539592, - "action": "NOTHING" - }, - { - "x": 57.65121460208981, - "y": -9777.43882760036, - "rotation": 6.279868225175443, - "action": "CARVE_RIGHT" - }, - { - "x": 57.81801336452397, - "y": -9784.968339987952, - "rotation": 0.03508016153973248, - "action": "CARVE_RIGHT" - }, - { - "x": 58.16763237368833, - "y": -9792.334060928533, - "rotation": 0.07347740508360773, - "action": "CARVE_RIGHT" - }, - { - "x": 58.70029613046423, - "y": -9799.535259341774, - "rotation": 0.11187464862748298, - "action": "CARVE_RIGHT" - }, - { - "x": 59.4161919289589, - "y": -9806.57123953984, - "rotation": 0.15027189217135822, - "action": "CARVE_RIGHT" - }, - { - "x": 60.31546994581392, - "y": -9813.441341143007, - "rotation": 0.18866913571523347, - "action": "CARVE_RIGHT" - }, - { - "x": 61.39824332931284, - "y": -9820.144938995449, - "rotation": 0.22706637925910872, - "action": "CARVE_RIGHT" - }, - { - "x": 62.66458828828817, - "y": -9826.681443081241, - "rotation": 0.26546362280298397, - "action": "CARVE_RIGHT" - }, - { - "x": 64.11454418082836, - "y": -9833.050298440528, - "rotation": 0.3038608663468592, - "action": "NOTHING" - }, - { - "x": 65.70773990406843, - "y": -9839.289628140265, - "rotation": 0.30037020784287055, - "action": "NOTHING" - }, - { - "x": 67.28306273460453, - "y": -9845.548651707848, - "rotation": 0.2968795493388819, - "action": "NOTHING" - }, - { - "x": 68.84050584862457, - "y": -9851.827416467482, - "rotation": 0.2933888908348932, - "action": "NOTHING" - }, - { - "x": 70.38006211236247, - "y": -9858.125969956556, - "rotation": 0.28989823233090456, - "action": "NOTHING" - }, - { - "x": 71.90172408283277, - "y": -9864.444359925092, - "rotation": 0.2864075738269159, - "action": "NOTHING" - }, - { - "x": 73.40548400856386, - "y": -9870.782634335204, - "rotation": 0.28291691532292723, - "action": "NOTHING" - }, - { - "x": 74.89133383032934, - "y": -9877.140841360553, - "rotation": 0.27942625681893857, - "action": "NOTHING" - }, - { - "x": 76.35926518187794, - "y": -9883.5190293858, - "rotation": 0.2759355983149499, - "action": "NOTHING" - }, - { - "x": 77.80926939066165, - "y": -9889.917247006066, - "rotation": 0.27244493981096124, - "action": "NOTHING" - }, - { - "x": 79.24133747856236, - "y": -9896.33554302639, - "rotation": 0.2689542813069726, - "action": "NOTHING" - }, - { - "x": 80.65546016261673, - "y": -9902.773966461189, - "rotation": 0.2654636228029839, - "action": "NOTHING" - }, - { - "x": 82.05162785573961, - "y": -9909.232566533723, - "rotation": 0.26197296429899525, - "action": "NOTHING" - }, - { - "x": 83.4298306674457, - "y": -9915.71139267555, - "rotation": 0.2584823057950066, - "action": "NOTHING" - }, - { - "x": 84.79005840456966, - "y": -9922.210494525998, - "rotation": 0.2549916472910179, - "action": "NOTHING" - }, - { - "x": 86.13230057198463, - "y": -9928.729921931626, - "rotation": 0.25150098878702926, - "action": "NOTHING" - }, - { - "x": 87.45654637331907, - "y": -9935.269724945692, - "rotation": 0.2480103302830406, - "action": "NOTHING" - }, - { - "x": 88.7627847116721, - "y": -9941.829953827619, - "rotation": 0.24451967177905193, - "action": "NOTHING" - }, - { - "x": 90.05100419032715, - "y": -9948.410659042464, - "rotation": 0.24102901327506326, - "action": "NOTHING" - }, - { - "x": 91.32119311346405, - "y": -9955.01189126039, - "rotation": 0.2375383547710746, - "action": "NOTHING" - }, - { - "x": 92.57333948686954, - "y": -9961.633701356139, - "rotation": 0.23404769626708594, - "action": "CARVE_LEFT" - }, - { - "x": 93.51583510224013, - "y": -9968.545903294058, - "rotation": 0.1956504527232107, - "action": "CARVE_LEFT" - }, - { - "x": 94.27376911682104, - "y": -9975.63318049302, - "rotation": 0.15725320917933544, - "action": "CARVE_LEFT" - }, - { - "x": 94.84697986496052, - "y": -9982.89618844397, - "rotation": 0.11885596563546019, - "action": "CARVE_LEFT" - }, - { - "x": 95.23526958221639, - "y": -9990.335615152228, - "rotation": 0.08045872209158494, - "action": "CARVE_LEFT" - }, - { - "x": 95.4384044919271, - "y": -9997.95218105895, - "rotation": 0.04206147854770969, - "action": "CARVE_LEFT" - }, - { - "x": 95.45611489158793, - "y": -10005.7466389628, - "rotation": 0.0036642350038344346, - "action": "CARVE_LEFT" - }, - { - "x": 95.28811519903624, - "y": -10013.407716226295, - "rotation": 6.248452298639545, - "action": "CARVE_LEFT" - }, - { - "x": 94.93415463356968, - "y": -10020.901859878335, - "rotation": 6.21005505509567, - "action": "CARVE_LEFT" - }, - { - "x": 94.394019680925, - "y": -10028.228349432908, - "rotation": 6.171657811551794, - "action": "CARVE_LEFT" - }, - { - "x": 93.66753400383995, - "y": -10035.386499768167, - "rotation": 6.133260568007919, - "action": "CARVE_LEFT" - }, - { - "x": 92.75455835281629, - "y": -10042.375661042111, - "rotation": 6.094863324464043, - "action": "CARVE_LEFT" - }, - { - "x": 91.65499047708367, - "y": -10049.195218608458, - "rotation": 6.056466080920168, - "action": "CARVE_LEFT" - }, - { - "x": 90.36876503576386, - "y": -10055.844592932692, - "rotation": 6.018068837376292, - "action": "CARVE_LEFT" - }, - { - "x": 88.89585350923491, - "y": -10062.323239508316, - "rotation": 5.979671593832417, - "action": "CARVE_LEFT" - }, - { - "x": 87.23626411069483, - "y": -10068.630648773282, - "rotation": 5.941274350288541, - "action": "CARVE_LEFT" - }, - { - "x": 85.39004169792427, - "y": -10074.766346026609, - "rotation": 5.902877106744666, - "action": "CARVE_LEFT" - }, - { - "x": 83.35726768524795, - "y": -10080.729891345196, - "rotation": 5.86447986320079, - "action": "CARVE_LEFT" - }, - { - "x": 81.13805995569419, - "y": -10086.520879500813, - "rotation": 5.826082619656915, - "action": "CARVE_LEFT" - }, - { - "x": 78.73257277335233, - "y": -10092.138939877277, - "rotation": 5.787685376113039, - "action": "CARVE_LEFT" - }, - { - "x": 76.1409966959274, - "y": -10097.583736387822, - "rotation": 5.749288132569164, - "action": "CARVE_LEFT" - }, - { - "x": 73.3635584874918, - "y": -10102.854967392648, - "rotation": 5.710890889025288, - "action": "CARVE_LEFT" - }, - { - "x": 70.40052103143344, - "y": -10107.952365616658, - "rotation": 5.6724936454814125, - "action": "CARVE_LEFT" - }, - { - "x": 67.25218324359997, - "y": -10112.87569806738, - "rotation": 5.634096401937537, - "action": "CARVE_LEFT" - }, - { - "x": 63.918879985638654, - "y": -10117.624765953065, - "rotation": 5.5956991583936615, - "action": "CARVE_LEFT" - }, - { - "x": 60.40098197853149, - "y": -10122.199404600982, - "rotation": 5.557301914849786, - "action": "CARVE_LEFT" - }, - { - "x": 56.69889571632513, - "y": -10126.599483375887, - "rotation": 5.5189046713059104, - "action": "CARVE_LEFT" - }, - { - "x": 52.81306338005521, - "y": -10130.824905598678, - "rotation": 5.480507427762035, - "action": "NOTHING" - }, - { - "x": 48.51631770685667, - "y": -10134.66608601615, - "rotation": 5.483998086266023, - "action": "NOTHING" - }, - { - "x": 44.240370526569, - "y": -10138.522811250436, - "rotation": 5.487488744770012, - "action": "NOTHING" - }, - { "x": 39.98517495777118, "y": -10142.395091242961, "rotation": 5.490979403274, "action": "NOTHING" }, - { - "x": 35.75068455523861, - "y": -10146.282936243011, - "rotation": 5.494470061777989, - "action": "NOTHING" - }, - { - "x": 31.536853308927938, - "y": -10150.186356806958, - "rotation": 5.497960720281977, - "action": "NOTHING" - }, - { - "x": 27.34363564296409, - "y": -10154.105363797496, - "rotation": 5.501451378785966, - "action": "NOTHING" - }, - { - "x": 23.170986414629514, - "y": -10158.039968382878, - "rotation": 5.504942037289954, - "action": "NOTHING" - }, - { - "x": 19.018860913355688, - "y": -10161.990182036154, - "rotation": 5.5084326957939425, - "action": "NOTHING" - }, - { - "x": 14.887214859716856, - "y": -10165.956016534412, - "rotation": 5.511923354297931, - "action": "NOTHING" - }, - { - "x": 10.776004404425965, - "y": -10169.93748395802, - "rotation": 5.515414012801919, - "action": "NOTHING" - }, - { - "x": 6.685186127332835, - "y": -10173.934596689865, - "rotation": 5.518904671305908, - "action": "NOTHING" - }, - { - "x": 2.614717036424537, - "y": -10177.947367414607, - "rotation": 5.522395329809896, - "action": "CARVE_RIGHT" - }, - { - "x": -0.8623072930909341, - "y": -10182.506259247617, - "rotation": 5.560792573353772, - "action": "CARVE_RIGHT" - }, - { - "x": -4.153313497879333, - "y": -10187.234544693036, - "rotation": 5.599189816897647, - "action": "CARVE_RIGHT" - }, - { - "x": -7.258643909914223, - "y": -10192.132425231852, - "rotation": 5.637587060441523, - "action": "CARVE_RIGHT" - }, - { - "x": -10.178603555053185, - "y": -10197.200135954536, - "rotation": 5.675984303985398, - "action": "CARVE_RIGHT" - }, - { - "x": -12.91346024232218, - "y": -10202.43794548005, - "rotation": 5.714381547529274, - "action": "CARVE_RIGHT" - }, - { - "x": -15.463444652999405, - "y": -10207.846155875031, - "rotation": 5.752778791073149, - "action": "CARVE_RIGHT" - }, - { - "x": -17.82875042949897, - "y": -10213.425102573183, - "rotation": 5.791176034617025, - "action": "CARVE_RIGHT" - }, - { - "x": -20.00953426405496, - "y": -10219.175154294811, - "rotation": 5.8295732781609, - "action": "CARVE_RIGHT" - }, - { - "x": -22.005915987206162, - "y": -10225.096712966575, - "rotation": 5.867970521704776, - "action": "CARVE_RIGHT" - }, - { - "x": -23.81797865608204, - "y": -10231.1902136414, - "rotation": 5.9063677652486515, - "action": "CARVE_RIGHT" - }, - { - "x": -25.445768642490258, - "y": -10237.456124418579, - "rotation": 5.944765008792527, - "action": "CARVE_RIGHT" - }, - { - "x": -26.889295720806256, - "y": -10243.894946364051, - "rotation": 5.9831622523364025, - "action": "CARVE_RIGHT" - }, - { - "x": -28.14853315566528, - "y": -10250.507213430861, - "rotation": 6.021559495880278, - "action": "CARVE_RIGHT" - }, - { - "x": -29.223417789457315, - "y": -10257.293492379798, - "rotation": 6.059956739424154, - "action": "CARVE_RIGHT" - }, - { - "x": -30.113850129625277, - "y": -10264.254382700214, - "rotation": 6.098353982968029, - "action": "CARVE_RIGHT" - }, - { - "x": -30.819694435767012, - "y": -10271.390516531019, - "rotation": 6.136751226511905, - "action": "CARVE_RIGHT" - }, - { - "x": -31.340778806541376, - "y": -10278.702558581861, - "rotation": 6.17514847005578, - "action": "CARVE_RIGHT" - }, - { - "x": -31.67689526637897, - "y": -10286.191206054475, - "rotation": 6.213545713599656, - "action": "CARVE_RIGHT" - }, - { - "x": -31.827799851997813, - "y": -10293.857188564214, - "rotation": 6.251942957143531, - "action": "CARVE_RIGHT" - }, - { - "x": -31.793213545722033, - "y": -10301.637027254415, - "rotation": 0.007154893507820503, - "action": "CARVE_RIGHT" - }, - { - "x": -31.572858687924448, - "y": -10309.250487685842, - "rotation": 0.04555213705169576, - "action": "CARVE_RIGHT" - }, - { - "x": -31.166494949934478, - "y": -10316.696823865226, - "rotation": 0.08394938059557101, - "action": "CARVE_RIGHT" - }, - { - "x": -30.573919244454796, - "y": -10323.975325224294, - "rotation": 0.12234662413944628, - "action": "CARVE_RIGHT" - }, - { - "x": -29.794965636179526, - "y": -10331.085316535307, - "rotation": 0.16074386768332152, - "action": "CARVE_RIGHT" - }, - { - "x": -28.829505252613558, - "y": -10338.026157826798, - "rotation": 0.19914111122719677, - "action": "CARVE_RIGHT" - }, - { - "x": -27.677446195092536, - "y": -10344.797244299487, - "rotation": 0.23753835477107202, - "action": "CARVE_RIGHT" - }, - { - "x": -26.338733450003105, - "y": -10351.398006242393, - "rotation": 0.2759355983149473, - "action": "CARVE_RIGHT" - }, - { - "x": -24.81334880020295, - "y": -10357.827908949132, - "rotation": 0.31433284185882254, - "action": "CARVE_RIGHT" - }, - { - "x": -23.10131073664022, - "y": -10364.086452634403, - "rotation": 0.3527300854026978, - "action": "CARVE_RIGHT" - }, - { - "x": -21.20267437017192, - "y": -10370.173172350662, - "rotation": 0.39112732894657304, - "action": "CARVE_RIGHT" - }, - { - "x": -19.1175313435808, - "y": -10376.087637904973, - "rotation": 0.4295245724904483, - "action": "CARVE_RIGHT" - }, - { - "x": -16.84600974379034, - "y": -10381.829453776067, - "rotation": 0.46792181603432353, - "action": "CARVE_RIGHT" - }, - { - "x": -14.388274014277407, - "y": -10387.398259031563, - "rotation": 0.5063190595781988, - "action": "CARVE_RIGHT" - }, - { - "x": -11.744524867682136, - "y": -10392.79372724539, - "rotation": 0.5447163031220741, - "action": "CARVE_RIGHT" - }, - { - "x": -8.91499919861463, - "y": -10398.015566415388, - "rotation": 0.5831135466659494, - "action": "CARVE_RIGHT" - }, - { - "x": -5.899969996658039, - "y": -10403.0635188811, - "rotation": 0.6215107902098247, - "action": "CARVE_RIGHT" - }, - { - "x": -2.6997462595675943, - "y": -10407.937361241735, - "rotation": 0.6599080337537, - "action": "CARVE_RIGHT" - }, - { - "x": 0.6853270933348137, - "y": -10412.636904274335, - "rotation": 0.6983052772975753, - "action": "CARVE_RIGHT" - }, - { - "x": 4.254869307570949, - "y": -10417.161992852107, - "rotation": 0.7367025208414506, - "action": "CARVE_RIGHT" - }, - { - "x": 8.008463879721853, - "y": -10421.512505862947, - "rotation": 0.7750997643853259, - "action": "CARVE_RIGHT" - }, - { - "x": 11.945658643449192, - "y": -10425.688356128148, - "rotation": 0.8134970079292012, - "action": "CARVE_RIGHT" - }, - { - "x": 16.065965855322766, - "y": -10429.689490321287, - "rotation": 0.8518942514730765, - "action": "CARVE_RIGHT" - }, - { - "x": 20.368862280454564, - "y": -10433.515888887294, - "rotation": 0.8902914950169518, - "action": "CARVE_RIGHT" - }, - { - "x": 24.85378927793984, - "y": -10437.167565961707, - "rotation": 0.9286887385608271, - "action": "NOTHING" - }, - { - "x": 29.814865183086514, - "y": -10440.372947533639, - "rotation": 0.9251980800568385, - "action": "NOTHING" - }, - { - "x": 34.75382652757744, - "y": -10443.593445083405, - "rotation": 0.9217074215528498, - "action": "NOTHING" - }, - { - "x": 39.67073459472452, - "y": -10446.829058182704, - "rotation": 0.9182167630488611, - "action": "NOTHING" - }, - { - "x": 44.56565019861578, - "y": -10450.079786736336, - "rotation": 0.9147261045448725, - "action": "NOTHING" - }, - { - "x": 49.438633685202774, - "y": -10453.345630981374, - "rotation": 0.9112354460408838, - "action": "NOTHING" - }, - { - "x": 54.28974493338568, - "y": -10456.626591486342, - "rotation": 0.9077447875368951, - "action": "NOTHING" - }, - { - "x": 59.11904335609593, - "y": -10459.922669150397, - "rotation": 0.9042541290329065, - "action": "CARVE_LEFT" - }, - { - "x": 63.278035704155364, - "y": -10463.834143162898, - "rotation": 0.8658568854890312, - "action": "CARVE_LEFT" - }, - { - "x": 67.25016933887942, - "y": -10467.913899874877, - "rotation": 0.8274596419451559, - "action": "CARVE_LEFT" - }, - { - "x": 71.03592405488767, - "y": -10472.162016887722, - "rotation": 0.7890623984012806, - "action": "CARVE_LEFT" - }, - { - "x": 74.63574201259756, - "y": -10476.578605709961, - "rotation": 0.7506651548574053, - "action": "CARVE_LEFT" - }, - { - "x": 78.05002782824447, - "y": -10481.163811675606, - "rotation": 0.71226791131353, - "action": "CARVE_LEFT" - }, - { - "x": 81.27914866369973, - "y": -10485.917813862672, - "rotation": 0.6738706677696547, - "action": "CARVE_LEFT" - }, - { - "x": 84.32343431608689, - "y": -10490.840825011888, - "rotation": 0.6354734242257793, - "action": "CARVE_LEFT" - }, - { - "x": 87.18317730719671, - "y": -10495.933091445586, - "rotation": 0.597076180681904, - "action": "CARVE_LEFT" - }, - { - "x": 89.85863297270137, - "y": -10501.194892986767, - "rotation": 0.5586789371380287, - "action": "CARVE_LEFT" - }, - { - "x": 92.3500195511682, - "y": -10506.626542878368, - "rotation": 0.5202816935941534, - "action": "CARVE_LEFT" - }, - { - "x": 94.65751827287352, - "y": -10512.228387702691, - "rotation": 0.4818844500502782, - "action": "CARVE_LEFT" - }, - { - "x": 96.7812734484169, - "y": -10518.000807301027, - "rotation": 0.44348720650640294, - "action": "CARVE_LEFT" - }, - { - "x": 98.72139255713635, - "y": -10523.944214693454, - "rotation": 0.4050899629625277, - "action": "CARVE_LEFT" - }, - { - "x": 100.4779463353248, - "y": -10530.05905599882, - "rotation": 0.36669271941865245, - "action": "CARVE_LEFT" - }, - { - "x": 102.05096886424836, - "y": -10536.345810354904, - "rotation": 0.3282954758747772, - "action": "CARVE_LEFT" - }, - { - "x": 103.44045765796672, - "y": -10542.80498983876, - "rotation": 0.28989823233090195, - "action": "CARVE_LEFT" - }, - { - "x": 104.64637375095623, - "y": -10549.43713938724, - "rotation": 0.2515009887870267, - "action": "CARVE_LEFT" - }, - { - "x": 105.66864178553595, - "y": -10556.242836717693, - "rotation": 0.21310374524315145, - "action": "CARVE_LEFT" - }, - { - "x": 106.50715009909722, - "y": -10563.222692248844, - "rotation": 0.1747065016992762, - "action": "CARVE_LEFT" - }, - { - "x": 107.161750811137, - "y": -10570.377349021861, - "rotation": 0.13630925815540096, - "action": "CARVE_LEFT" - }, - { - "x": 107.63225991009568, - "y": -10577.707482621583, - "rotation": 0.09791201461152571, - "action": "CARVE_LEFT" - }, - { - "x": 107.9184573399995, - "y": -10585.213801097942, - "rotation": 0.059514771067650456, - "action": "CARVE_LEFT" - }, - { - "x": 108.02008708690818, - "y": -10592.897044887553, - "rotation": 0.0211175275237752, - "action": "CARVE_LEFT" - }, - { - "x": 107.9368622054189, - "y": -10600.6033999847, - "rotation": 6.265905591159486, - "action": "CARVE_LEFT" - }, - { - "x": 107.66851232235432, - "y": -10608.143888549921, - "rotation": 6.22750834761561, - "action": "CARVE_LEFT" - }, - { - "x": 107.21480437877901, - "y": -10615.51777147266, - "rotation": 6.189111104071735, - "action": "CARVE_LEFT" - }, - { - "x": 106.57554254045272, - "y": -10622.724345051638, - "rotation": 6.150713860527859, - "action": "CARVE_LEFT" - }, - { - "x": 105.75056810848503, - "y": -10629.762940910434, - "rotation": 6.112316616983984, - "action": "CARVE_LEFT" - }, - { - "x": 104.73975943019111, - "y": -10636.632925913247, - "rotation": 6.073919373440108, - "action": "CARVE_LEFT" - }, - { - "x": 103.54303181014805, - "y": -10643.333702080852, - "rotation": 6.035522129896233, - "action": "CARVE_LEFT" - }, - { - "x": 102.16033742145129, - "y": -10649.864706506743, - "rotation": 5.997124886352357, - "action": "CARVE_LEFT" - }, - { - "x": 100.59166521717091, - "y": -10656.225411273472, - "rotation": 5.958727642808482, - "action": "CARVE_LEFT" - }, - { - "x": 98.83704084200713, - "y": -10662.415323369158, - "rotation": 5.920330399264606, - "action": "CARVE_LEFT" - }, - { - "x": 96.89652654414472, - "y": -10668.433984604197, - "rotation": 5.881933155720731, - "action": "CARVE_LEFT" - }, - { - "x": 94.77022108730586, - "y": -10674.28097152816, - "rotation": 5.843535912176855, - "action": "CARVE_LEFT" - }, - { - "x": 92.45825966300097, - "y": -10679.955895346866, - "rotation": 5.80513866863298, - "action": "CARVE_LEFT" - }, - { - "x": 89.96081380297721, - "y": -10685.458401839649, - "rotation": 5.766741425089104, - "action": "CARVE_LEFT" - }, - { - "x": 87.27809129186403, - "y": -10690.788171276814, - "rotation": 5.7283441815452285, - "action": "CARVE_LEFT" - }, - { - "x": 84.41033608001553, - "y": -10695.944918337265, - "rotation": 5.689946938001353, - "action": "CARVE_LEFT" - }, - { - "x": 81.35782819654911, - "y": -10700.928392026333, - "rotation": 5.6515496944574775, - "action": "CARVE_LEFT" - }, - { - "x": 78.12088366258004, - "y": -10705.738375593777, - "rotation": 5.613152450913602, - "action": "CARVE_LEFT" - }, - { - "x": 74.6998544046514, - "y": -10710.374686451974, - "rotation": 5.574755207369726, - "action": "CARVE_LEFT" - }, - { - "x": 71.09512816835912, - "y": -10714.837176094297, - "rotation": 5.536357963825851, - "action": "CARVE_LEFT" - }, - { - "x": 67.30712843217168, - "y": -10719.125730013662, - "rotation": 5.497960720281975, - "action": "CARVE_LEFT" - }, - { - "x": 63.33631432144386, - "y": -10723.240267621273, - "rotation": 5.4595634767381, - "action": "CARVE_LEFT" - }, - { - "x": 59.18318052262445, - "y": -10727.180742165541, - "rotation": 5.421166233194224, - "action": "CARVE_LEFT" - }, - { - "x": 54.84825719765717, - "y": -10730.94714065119, - "rotation": 5.382768989650349, - "action": "CARVE_LEFT" - }, - { - "x": 50.33210989857462, - "y": -10734.539483758537, - "rotation": 5.344371746106473, - "action": "CARVE_LEFT" - }, - { - "x": 45.63533948228468, - "y": -10737.957825762962, - "rotation": 5.305974502562598, - "action": "CARVE_LEFT" - }, - { - "x": 40.758582025549075, - "y": -10741.202254454553, - "rotation": 5.267577259018722, - "action": "CARVE_LEFT" - }, - { - "x": 35.70250874015359, - "y": -10744.272891057932, - "rotation": 5.229180015474847, - "action": "NOTHING" - }, - { - "x": 30.10830950328768, - "y": -10746.838264610617, - "rotation": 5.232670673978835, - "action": "NOTHING" - }, - { - "x": 24.537693981103637, - "y": -10749.418535918912, - "rotation": 5.236161332482824, - "action": "NOTHING" - }, - { - "x": 18.99058642238884, - "y": -10752.013693999705, - "rotation": 5.239651990986812, - "action": "NOTHING" - }, - { - "x": 13.46691157800384, - "y": -10754.62372822828, - "rotation": 5.2431426494908004, - "action": "NOTHING" - }, - { - "x": 7.966594699723534, - "y": -10757.248628337444, - "rotation": 5.246633307994789, - "action": "CARVE_RIGHT" - }, - { - "x": 3.203968368606742, - "y": -10760.549638888424, - "rotation": 5.285030551538664, - "action": "CARVE_RIGHT" - }, - { - "x": -1.3716409989347458, - "y": -10764.017402752235, - "rotation": 5.32342779508254, - "action": "CARVE_RIGHT" - }, - { - "x": -5.760837278682665, - "y": -10767.651885656947, - "rotation": 5.3618250386264155, - "action": "CARVE_RIGHT" - }, - { - "x": -9.964186417324015, - "y": -10771.453087505388, - "rotation": 5.400222282170291, - "action": "CARVE_RIGHT" - }, - { - "x": -13.982216523130743, - "y": -10775.421042292886, - "rotation": 5.4386195257141665, - "action": "CARVE_RIGHT" - }, - { - "x": -17.815417956435923, - "y": -10779.555818025194, - "rotation": 5.477016769258042, - "action": "CARVE_RIGHT" - }, - { - "x": -21.464243419906744, - "y": -10783.857516636595, - "rotation": 5.515414012801918, - "action": "CARVE_RIGHT" - }, - { - "x": -24.9291080486149, - "y": -10788.326273908198, - "rotation": 5.553811256345793, - "action": "CARVE_RIGHT" - }, - { - "x": -28.210389499904668, - "y": -10792.962259386415, - "rotation": 5.592208499889669, - "action": "CARVE_RIGHT" - }, - { - "x": -31.308428043059227, - "y": -10797.765676301617, - "rotation": 5.630605743433544, - "action": "CARVE_RIGHT" - }, - { - "x": -34.22352664876557, - "y": -10802.736761486982, - "rotation": 5.66900298697742, - "action": "CARVE_RIGHT" - }, - { - "x": -36.95595107837853, - "y": -10807.875785297527, - "rotation": 5.707400230521295, - "action": "CARVE_RIGHT" - }, - { - "x": -39.505929972984234, - "y": -10813.18305152931, - "rotation": 5.745797474065171, - "action": "CARVE_RIGHT" - }, - { - "x": -41.873654942263535, - "y": -10818.658897338826, - "rotation": 5.784194717609046, - "action": "CARVE_RIGHT" - }, - { - "x": -44.0592806531558, - "y": -10824.303693162583, - "rotation": 5.822591961152922, - "action": "CARVE_RIGHT" - }, - { - "x": -46.0629249183235, - "y": -10830.117842636853, - "rotation": 5.860989204696797, - "action": "CARVE_RIGHT" - }, - { - "x": -47.88466878441797, - "y": -10836.101782517613, - "rotation": 5.899386448240673, - "action": "CARVE_RIGHT" - }, - { - "x": -49.524556620146875, - "y": -10842.255982600658, - "rotation": 5.937783691784548, - "action": "CARVE_RIGHT" - }, - { - "x": -50.98259620414374, - "y": -10848.580945641905, - "rotation": 5.976180935328424, - "action": "CARVE_RIGHT" - }, - { - "x": -52.258758812639975, - "y": -10855.077207277862, - "rotation": 6.014578178872299, - "action": "CARVE_RIGHT" - }, - { - "x": -53.35297930693985, - "y": -10861.745335946292, - "rotation": 6.052975422416175, - "action": "CARVE_RIGHT" - }, - { - "x": -54.26515622069879, - "y": -10868.585932807047, - "rotation": 6.0913726659600504, - "action": "CARVE_RIGHT" - }, - { - "x": -54.99515184700553, - "y": -10875.59963166308, - "rotation": 6.129769909503926, - "action": "CARVE_RIGHT" - }, - { - "x": -55.542792325268366, - "y": -10882.787098881643, - "rotation": 6.1681671530478015, - "action": "CARVE_RIGHT" - }, - { - "x": -55.90786772790615, - "y": -10890.14903331565, - "rotation": 6.206564396591677, - "action": "CARVE_RIGHT" - }, - { - "x": -56.09013214684424, - "y": -10897.686166225238, - "rotation": 6.2449616401355525, - "action": "CARVE_RIGHT" - }, - { - "x": -56.08930378031447, - "y": -10905.397722545833, - "rotation": 0.0001735764998418432, - "action": "CARVE_RIGHT" - }, - { - "x": -55.9050897421833, - "y": -10912.94537948278, - "rotation": 0.0385708200437171, - "action": "CARVE_RIGHT" - }, - { - "x": -55.537234516335985, - "y": -10920.328376489857, - "rotation": 0.07696806358759235, - "action": "CARVE_RIGHT" - }, - { - "x": -54.98551986700193, - "y": -10927.545988482798, - "rotation": 0.11536530713146761, - "action": "CARVE_RIGHT" - }, - { - "x": -54.24976474928183, - "y": -10934.597525754758, - "rotation": 0.15376255067534286, - "action": "CARVE_RIGHT" - }, - { - "x": -53.329825219876064, - "y": -10941.482333891954, - "rotation": 0.1921597942192181, - "action": "CARVE_RIGHT" - }, - { - "x": -52.22559434801402, - "y": -10948.199793689504, - "rotation": 0.23055703776309336, - "action": "CARVE_RIGHT" - }, - { - "x": -50.937002126583856, - "y": -10954.749321067447, - "rotation": 0.26895428130696863, - "action": "CARVE_RIGHT" - }, - { - "x": -49.46401538346224, - "y": -10961.130366986961, - "rotation": 0.3073515248508439, - "action": "CARVE_RIGHT" - }, - { - "x": -47.806637693043704, - "y": -10967.34241736676, - "rotation": 0.34574876839471913, - "action": "CARVE_RIGHT" - }, - { - "x": -45.96490928796916, - "y": -10973.384992999683, - "rotation": 0.3841460119385944, - "action": "CARVE_RIGHT" - }, - { - "x": -43.938906971053065, - "y": -10979.257649469464, - "rotation": 0.4225432554824696, - "action": "CARVE_RIGHT" - }, - { - "x": -41.72874402740897, - "y": -10984.959977067701, - "rotation": 0.4609404990263449, - "action": "CARVE_RIGHT" - }, - { - "x": -39.33457013677286, - "y": -10990.491600711002, - "rotation": 0.4993377425702201, - "action": "CARVE_RIGHT" - }, - { - "x": -36.75657128602394, - "y": -10995.852179858313, - "rotation": 0.5377349861140954, - "action": "CARVE_RIGHT" - }, - { - "x": -33.99496968190246, - "y": -11001.041408428442, - "rotation": 0.5761322296579707, - "action": "CARVE_RIGHT" - }, - { - "x": -31.050023663924087, - "y": -11006.05901471776, - "rotation": 0.614529473201846, - "action": "CARVE_RIGHT" - }, - { - "x": -27.92202761749043, - "y": -11010.904761318094, - "rotation": 0.6529267167457213, - "action": "CARVE_RIGHT" - }, - { - "x": -24.61131188719533, - "y": -11015.578445034791, - "rotation": 0.6913239602895966, - "action": "CARVE_RIGHT" - }, - { - "x": -21.11824269032644, - "y": -11020.079896804984, - "rotation": 0.7297212038334719, - "action": "CARVE_RIGHT" - }, - { - "x": -17.443222030561675, - "y": -11024.408981616027, - "rotation": 0.7681184473773472, - "action": "CARVE_RIGHT" - }, - { - "x": -13.58668761186015, - "y": -11028.565598424118, - "rotation": 0.8065156909212226, - "action": "CARVE_RIGHT" - }, - { - "x": -9.549112752547163, - "y": -11032.549680073107, - "rotation": 0.8449129344650979, - "action": "CARVE_RIGHT" - }, - { - "x": -5.331006299592791, - "y": -11036.36119321348, - "rotation": 0.8833101780089732, - "action": "CARVE_RIGHT" - }, - { - "x": -0.9329125430836918, - "y": -11040.000138221534, - "rotation": 0.9217074215528485, - "action": "NOTHING" - }, - { - "x": 3.93209626134127, - "y": -11043.201598570362, - "rotation": 0.9182167630488598, - "action": "NOTHING" - }, - { - "x": 8.77540296434244, - "y": -11046.418053493697, - "rotation": 0.9147261045448711, - "action": "NOTHING" - }, - { - "x": 13.597067034722404, - "y": -11049.649503774433, - "rotation": 0.9112354460408825, - "action": "NOTHING" - }, - { - "x": 18.397147476449305, - "y": -11052.895950525346, - "rotation": 0.9077447875368938, - "action": "NOTHING" - }, - { - "x": 23.17570282973439, - "y": -11056.15739518827, - "rotation": 0.9042541290329051, - "action": "NOTHING" - }, - { - "x": 27.93279117210715, - "y": -11059.433839533287, - "rotation": 0.9007634705289165, - "action": "NOTHING" - }, - { - "x": 32.668470119488106, - "y": -11062.725285657914, - "rotation": 0.8972728120249278, - "action": "CARVE_LEFT" - }, - { - "x": 36.745534286171896, - "y": -11066.62156056137, - "rotation": 0.8588755684810525, - "action": "CARVE_LEFT" - }, - { - "x": 40.638054345925994, - "y": -11070.684232248925, - "rotation": 0.8204783249371772, - "action": "CARVE_LEFT" - }, - { - "x": 44.34649539088855, - "y": -11074.913391472342, - "rotation": 0.7820810813933019, - "action": "CARVE_LEFT" - }, - { - "x": 47.87128491644182, - "y": -11079.309162856693, - "rotation": 0.7436838378494266, - "action": "CARVE_LEFT" - }, - { - "x": 51.21281291114511, - "y": -11083.871704818768, - "rotation": 0.7052865943055513, - "action": "CARVE_LEFT" - }, - { - "x": 54.371431946465734, - "y": -11088.601209485683, - "rotation": 0.666889350761676, - "action": "CARVE_LEFT" - }, - { - "x": 57.34745726630857, - "y": -11093.497902613664, - "rotation": 0.6284921072178007, - "action": "CARVE_LEFT" - }, - { - "x": 60.141166876344414, - "y": -11098.562043507016, - "rotation": 0.5900948636739254, - "action": "CARVE_LEFT" - }, - { - "x": 62.75280163313779, - "y": -11103.793924937272, - "rotation": 0.5516976201300501, - "action": "CARVE_LEFT" - }, - { - "x": 65.18256533307449, - "y": -11109.193873062532, - "rotation": 0.5133003765861748, - "action": "CARVE_LEFT" - }, - { - "x": 67.43062480108938, - "y": -11114.762247346973, - "rotation": 0.47490313304229953, - "action": "CARVE_LEFT" - }, - { - "x": 69.49710997919482, - "y": -11120.49944048055, - "rotation": 0.4365058894984243, - "action": "CARVE_LEFT" - }, - { - "x": 71.38211401481023, - "y": -11126.405878298874, - "rotation": 0.39810864595454903, - "action": "CARVE_LEFT" - }, - { - "x": 73.08569334889309, - "y": -11132.482019703271, - "rotation": 0.3597114024106738, - "action": "CARVE_LEFT" - }, - { - "x": 74.60786780387195, - "y": -11138.728356581023, - "rotation": 0.32131415886679854, - "action": "CARVE_LEFT" - }, - { - "x": 75.94862067138179, - "y": -11145.145413725782, - "rotation": 0.2829169153229233, - "action": "CARVE_LEFT" - }, - { - "x": 77.10789879980214, - "y": -11151.733748758179, - "rotation": 0.24451967177904804, - "action": "CARVE_LEFT" - }, - { - "x": 78.08561268159852, - "y": -11158.493952046592, - "rotation": 0.2061224282351728, - "action": "CARVE_LEFT" - }, - { - "x": 78.88163654046737, - "y": -11165.426646628115, - "rotation": 0.16772518469129755, - "action": "CARVE_LEFT" - }, - { - "x": 79.49580841828522, - "y": -11172.532488129682, - "rotation": 0.1293279411474223, - "action": "CARVE_LEFT" - }, - { - "x": 79.92793026186224, - "y": -11179.812164689389, - "rotation": 0.09093069760354705, - "action": "CARVE_LEFT" - }, - { - "x": 80.17776800950077, - "y": -11187.266396877982, - "rotation": 0.052533454059671796, - "action": "CARVE_LEFT" - }, - { - "x": 80.24505167735911, - "y": -11194.895937620528, - "rotation": 0.01413621051579654, - "action": "CARVE_LEFT" - }, - { - "x": 80.129485184173, - "y": -11202.486902384422, - "rotation": 6.258924274151507, - "action": "CARVE_LEFT" - }, - { - "x": 79.83079754723789, - "y": -11209.913916506885, - "rotation": 6.220527030607632, - "action": "CARVE_LEFT" - }, - { - "x": 79.34875510177434, - "y": -11217.176240207553, - "rotation": 6.182129787063756, - "action": "NOTHING" - }, - { - "x": 78.83126275297741, - "y": -11224.411559990796, - "rotation": 6.185620445567745, - "action": "NOTHING" - }, - { - "x": 78.33190636805925, - "y": -11231.669528590875, - "rotation": 6.189111104071733, - "action": "NOTHING" - }, - { - "x": 77.85071180714291, - "y": -11238.950206077752, - "rotation": 6.1926017625757215, - "action": "NOTHING" - }, - { - "x": 77.38770519434816, - "y": -11246.253652700803, - "rotation": 6.19609242107971, - "action": "NOTHING" - }, - { - "x": 76.94291291716044, - "y": -11253.579928888354, - "rotation": 6.199583079583698, - "action": "NOTHING" - }, - { - "x": 76.51636162580137, - "y": -11260.929095247211, - "rotation": 6.203073738087687, - "action": "NOTHING" - }, - { - "x": 76.10807823260055, - "y": -11268.3012125622, - "rotation": 6.206564396591675, - "action": "NOTHING" - }, - { - "x": 75.71808991136885, - "y": -11275.696341795701, - "rotation": 6.210055055095664, - "action": "NOTHING" - }, - { - "x": 75.3464240967731, - "y": -11283.114544087182, - "rotation": 6.213545713599652, - "action": "NOTHING" - }, - { - "x": 74.99310848371215, - "y": -11290.555880752741, - "rotation": 6.217036372103641, - "action": "NOTHING" - }, - { - "x": 74.6581710266943, - "y": -11298.020413284645, - "rotation": 6.220527030607629, - "action": "NOTHING" - }, - { - "x": 74.34163993921626, - "y": -11305.508203350868, - "rotation": 6.2240176891116175, - "action": "NOTHING" - }, - { - "x": 74.04354369314335, - "y": -11313.019312794637, - "rotation": 6.227508347615606, - "action": "NOTHING" - }, - { - "x": 73.76391101809119, - "y": -11320.553803633971, - "rotation": 6.230999006119594, - "action": "NOTHING" - }, - { - "x": 73.50277090080878, - "y": -11328.111738061225, - "rotation": 6.234489664623583, - "action": "NOTHING" - }, - { - "x": 73.26015258456286, - "y": -11335.693178442636, - "rotation": 6.237980323127571, - "action": "NOTHING" - }, - { - "x": 73.03608556852379, - "y": -11343.298187317869, - "rotation": 6.24147098163156, - "action": "NOTHING" - }, - { - "x": 72.83059960715273, - "y": -11350.92682739956, - "rotation": 6.244961640135548, - "action": "NOTHING" - }, - { - "x": 72.64372470959023, - "y": -11358.579161572872, - "rotation": 6.2484522986395366, - "action": "NOTHING" - }, - { - "x": 72.47549113904614, - "y": -11366.255252895036, - "rotation": 6.251942957143525, - "action": "NOTHING" - }, - { - "x": 72.32592941219097, - "y": -11373.955164594907, - "rotation": 6.255433615647513, - "action": "NOTHING" - }, - { - "x": 72.19507029854857, - "y": -11381.67896007251, - "rotation": 6.258924274151502, - "action": "NOTHING" - }, - { - "x": 72.08294481989017, - "y": -11389.426702898594, - "rotation": 6.26241493265549, - "action": "NOTHING" - }, - { - "x": 71.98958424962983, - "y": -11397.19845681419, - "rotation": 6.265905591159479, - "action": "CARVE_RIGHT" - }, - { - "x": 72.09234728583763, - "y": -11404.967377664254, - "rotation": 0.021117527523768054, - "action": "CARVE_RIGHT" - }, - { - "x": 72.38215765866681, - "y": -11412.568455552826, - "rotation": 0.05951477106764331, - "action": "CARVE_RIGHT" - }, - { - "x": 72.85923786851298, - "y": -11420.00096149946, - "rotation": 0.09791201461151856, - "action": "CARVE_RIGHT" - }, - { - "x": 73.52377321847028, - "y": -11427.264201906983, - "rotation": 0.13630925815539383, - "action": "CARVE_RIGHT" - }, - { - "x": 74.37591190361233, - "y": -11434.357518477138, - "rotation": 0.17470650169926907, - "action": "CARVE_RIGHT" - }, - { - "x": 75.4157651000722, - "y": -11441.280288126409, - "rotation": 0.21310374524314432, - "action": "NOTHING" - }, - { - "x": 76.55280910552484, - "y": -11448.117069891296, - "rotation": 0.20961308673915566, - "action": "NOTHING" - }, - { - "x": 77.67149105088342, - "y": -11454.974896629277, - "rotation": 0.206122428235167, - "action": "NOTHING" - }, - { - "x": 78.77179701710334, - "y": -11461.853820617507, - "rotation": 0.20263176973117833, - "action": "NOTHING" - }, - { - "x": 79.85371279183047, - "y": -11468.75389433382, - "rotation": 0.19914111122718967, - "action": "NOTHING" - }, - { - "x": 80.91722387009902, - "y": -11475.675170456216, - "rotation": 0.195650452723201, - "action": "NOTHING" - }, - { - "x": 81.96231545502769, - "y": -11482.61770186234, - "rotation": 0.19215979421921234, - "action": "NOTHING" - }, - { - "x": 82.98897245851445, - "y": -11489.581541628968, - "rotation": 0.18866913571522367, - "action": "NOTHING" - }, - { - "x": 83.99717950192964, - "y": -11496.566743031493, - "rotation": 0.185178477211235, - "action": "NOTHING" - }, - { - "x": 84.98692091680755, - "y": -11503.573359543409, - "rotation": 0.18168781870724635, - "action": "NOTHING" - }, - { - "x": 85.95818074553648, - "y": -11510.601444835798, - "rotation": 0.17819716020325768, - "action": "NOTHING" - }, - { - "x": 86.91094274204723, - "y": -11517.651052776826, - "rotation": 0.17470650169926902, - "action": "NOTHING" - }, - { - "x": 87.84519037249999, - "y": -11524.72223743122, - "rotation": 0.17121584319528035, - "action": "NOTHING" - }, - { - "x": 88.76090681596985, - "y": -11531.81505305977, - "rotation": 0.1677251846912917, - "action": "NOTHING" - }, - { - "x": 89.65807496513061, - "y": -11538.92955411882, - "rotation": 0.16423452618730303, - "action": "NOTHING" - }, - { - "x": 90.53667742693713, - "y": -11546.065795259754, - "rotation": 0.16074386768331436, - "action": "NOTHING" - }, - { - "x": 91.39669652330616, - "y": -11553.223831328502, - "rotation": 0.1572532091793257, - "action": "NOTHING" - }, - { - "x": 92.23811429179563, - "y": -11560.403717365025, - "rotation": 0.15376255067533703, - "action": "NOTHING" - }, - { - "x": 93.0609124862824, - "y": -11567.60550860282, - "rotation": 0.15027189217134837, - "action": "NOTHING" - }, - { - "x": 93.86507257763856, - "y": -11574.829260468414, - "rotation": 0.1467812336673597, - "action": "NOTHING" - }, - { - "x": 94.65057575440608, - "y": -11582.075028580866, - "rotation": 0.14329057516337104, - "action": "NOTHING" - }, - { - "x": 95.41740292347014, - "y": -11589.342868751268, - "rotation": 0.13979991665938238, - "action": "NOTHING" - }, - { - "x": 96.16553471073073, - "y": -11596.63283698224, - "rotation": 0.13630925815539371, - "action": "NOTHING" - }, - { - "x": 96.89495146177295, - "y": -11603.944989467444, - "rotation": 0.13281859965140505, - "action": "NOTHING" - }, - { - "x": 97.60563324253567, - "y": -11611.27938259108, - "rotation": 0.1293279411474164, - "action": "NOTHING" - }, - { - "x": 98.29755983997876, - "y": -11618.636072927391, - "rotation": 0.12583728264342772, - "action": "NOTHING" - }, - { - "x": 98.97071076274877, - "y": -11626.015117240178, - "rotation": 0.12234662413943906, - "action": "CARVE_LEFT" - }, - { - "x": 99.38665915006011, - "y": -11633.637085530247, - "rotation": 0.08394938059556381, - "action": "CARVE_LEFT" - }, - { - "x": 99.61250748569208, - "y": -11641.440350609237, - "rotation": 0.045552137051688556, - "action": "CARVE_LEFT" - }, - { - "x": 99.64800717918126, - "y": -11649.425646486035, - "rotation": 0.007154893507813301, - "action": "CARVE_LEFT" - }, - { - "x": 99.49288989406679, - "y": -11657.305634955364, - "rotation": 6.251942957143524, - "action": "CARVE_LEFT" - }, - { - "x": 99.1469192078929, - "y": -11665.013833791761, - "rotation": 6.213545713599649, - "action": "CARVE_LEFT" - }, - { - "x": 98.60989592485996, - "y": -11672.549536353676, - "rotation": 6.175148470055773, - "action": "CARVE_LEFT" - }, - { - "x": 97.88165798648286, - "y": -11679.912071325922, - "rotation": 6.1367512265118975, - "action": "CARVE_LEFT" - }, - { - "x": 96.96208038245074, - "y": -11687.100802635445, - "rotation": 6.098353982968022, - "action": "CARVE_LEFT" - }, - { - "x": 95.85107506168693, - "y": -11694.115129367288, - "rotation": 6.0599567394241465, - "action": "CARVE_LEFT" - }, - { - "x": 94.54859084360935, - "y": -11700.954485680737, - "rotation": 6.021559495880271, - "action": "CARVE_LEFT" - }, - { - "x": 93.05461332959042, - "y": -11707.618340725652, - "rotation": 5.983162252336395, - "action": "CARVE_LEFT" - }, - { - "x": 91.3691648146164, - "y": -11714.106198558995, - "rotation": 5.94476500879252, - "action": "CARVE_LEFT" - }, - { - "x": 89.49230419914541, - "y": -11720.41759806154, - "rotation": 5.906367765248644, - "action": "CARVE_LEFT" - }, - { - "x": 87.42412690116407, - "y": -11726.55211285477, - "rotation": 5.867970521704769, - "action": "CARVE_LEFT" - }, - { - "x": 85.164764768442, - "y": -11732.50935121796, - "rotation": 5.829573278160893, - "action": "CARVE_LEFT" - }, - { - "x": 82.71438599098391, - "y": -11738.288956005443, - "rotation": 5.791176034617018, - "action": "CARVE_LEFT" - }, - { - "x": 80.07319501367891, - "y": -11743.890604564072, - "rotation": 5.752778791073142, - "action": "CARVE_LEFT" - }, - { - "x": 77.24143244914639, - "y": -11749.314008650856, - "rotation": 5.714381547529267, - "action": "CARVE_LEFT" - }, - { - "x": 74.21937499077829, - "y": -11754.55891435078, - "rotation": 5.675984303985391, - "action": "CARVE_LEFT" - }, - { - "x": 71.0073353259773, - "y": -11759.625101994829, - "rotation": 5.637587060441516, - "action": "CARVE_LEFT" - }, - { - "x": 67.60566204959026, - "y": -11764.51238607816, - "rotation": 5.59918981689764, - "action": "CARVE_LEFT" - }, - { - "x": 64.01473957753691, - "y": -11769.220615178501, - "rotation": 5.560792573353765, - "action": "CARVE_LEFT" - }, - { - "x": 60.23498806063291, - "y": -11773.749671874693, - "rotation": 5.522395329809889, - "action": "CARVE_LEFT" - }, - { - "x": 56.26686329860725, - "y": -11778.099472665443, - "rotation": 5.483998086266014, - "action": "CARVE_LEFT" - }, - { - "x": 52.110856654313366, - "y": -11782.26996788824, - "rotation": 5.445600842722138, - "action": "CARVE_LEFT" - }, - { - "x": 47.767494968133576, - "y": -11786.261141638475, - "rotation": 5.4072035991782625, - "action": "NOTHING" - }, - { - "x": 42.963820100769986, - "y": -11789.821012085193, - "rotation": 5.410694257682251, - "action": "NOTHING" - }, - { - "x": 38.1823700218885, - "y": -11793.396429468728, - "rotation": 5.414184916186239, - "action": "NOTHING" - }, - { - "x": 33.42308741997438, - "y": -11796.987396446359, - "rotation": 5.417675574690228, - "action": "NOTHING" - }, - { - "x": 28.685915444169257, - "y": -11800.593916001591, - "rotation": 5.421166233194216, - "action": "NOTHING" - }, - { - "x": 23.9707977032017, - "y": -11804.215991443358, - "rotation": 5.424656891698205, - "action": "NOTHING" - }, - { - "x": 19.277678264320066, - "y": -11807.853626405202, - "rotation": 5.428147550202193, - "action": "NOTHING" - }, - { - "x": 14.606501652227745, - "y": -11811.506824844477, - "rotation": 5.431638208706182, - "action": "NOTHING" - }, - { - "x": 9.957212848020749, - "y": -11815.175591041536, - "rotation": 5.43512886721017, - "action": "NOTHING" - }, - { - "x": 5.3297572881276345, - "y": -11818.859929598939, - "rotation": 5.4386195257141585, - "action": "CARVE_RIGHT" - }, - { - "x": 1.3567966153557456, - "y": -11823.145460025924, - "rotation": 5.477016769258034, - "action": "CARVE_RIGHT" - }, - { - "x": -2.4248918680796248, - "y": -11827.603794429913, - "rotation": 5.51541401280191, - "action": "CARVE_RIGHT" - }, - { - "x": -6.01574767082044, - "y": -11832.235046931619, - "rotation": 5.553811256345785, - "action": "CARVE_RIGHT" - }, - { - "x": -9.416172758380146, - "y": -11837.039365475977, - "rotation": 5.592208499889661, - "action": "CARVE_RIGHT" - }, - { - "x": -12.626531642966466, - "y": -11842.016931750664, - "rotation": 5.630605743433536, - "action": "CARVE_RIGHT" - }, - { - "x": -15.64715147310243, - "y": -11847.167961104806, - "rotation": 5.669002986977412, - "action": "CARVE_RIGHT" - }, - { - "x": -18.478322123046166, - "y": -11852.492702467858, - "rotation": 5.707400230521287, - "action": "CARVE_RIGHT" - }, - { - "x": -21.120296282009786, - "y": -11857.99143826868, - "rotation": 5.745797474065163, - "action": "CARVE_RIGHT" - }, - { - "x": -23.573289543177903, - "y": -11863.664484354784, - "rotation": 5.784194717609038, - "action": "CARVE_RIGHT" - }, - { - "x": -25.83748049252612, - "y": -11869.512189911766, - "rotation": 5.822591961152914, - "action": "CARVE_RIGHT" - }, - { - "x": -27.913010797439984, - "y": -11875.534937382927, - "rotation": 5.860989204696789, - "action": "CARVE_RIGHT" - }, - { - "x": -29.799985295134817, - "y": -11881.733142389066, - "rotation": 5.899386448240665, - "action": "CARVE_RIGHT" - }, - { - "x": -31.49847208087685, - "y": -11888.10725364846, - "rotation": 5.93778369178454, - "action": "CARVE_RIGHT" - }, - { - "x": -33.008502596006075, - "y": -11894.657752897023, - "rotation": 5.976180935328416, - "action": "CARVE_RIGHT" - }, - { - "x": -34.330071715761264, - "y": -11901.385154808639, - "rotation": 6.014578178872291, - "action": "CARVE_RIGHT" - }, - { - "x": -35.46313783690762, - "y": -11908.290006915688, - "rotation": 6.052975422416167, - "action": "CARVE_RIGHT" - }, - { - "x": -36.40762296516736, - "y": -11915.372889529739, - "rotation": 6.0913726659600425, - "action": "NOTHING" - }, - { - "x": -37.43849162009674, - "y": -11922.379946386836, - "rotation": 6.094863324464031, - "action": "NOTHING" - }, - { - "x": -38.45078602559685, - "y": -11929.40839979348, - "rotation": 6.098353982968019, - "action": "NOTHING" - }, - { - "x": -39.444490906705056, - "y": -11936.458303003114, - "rotation": 6.101844641472008, - "action": "NOTHING" - }, - { - "x": -40.41959069825872, - "y": -11943.529709467488, - "rotation": 6.105335299975996, - "action": "NOTHING" - }, - { - "x": -41.376069545586205, - "y": -11950.622672836145, - "rotation": 6.108825958479985, - "action": "NOTHING" - }, - { - "x": -42.313911305196314, - "y": -11957.737246955909, - "rotation": 6.112316616983973, - "action": "NOTHING" - }, - { - "x": -43.23309954546623, - "y": -11964.87348587037, - "rotation": 6.1158072754879615, - "action": "NOTHING" - }, - { - "x": -44.13361754732791, - "y": -11972.031443819385, - "rotation": 6.11929793399195, - "action": "NOTHING" - }, - { - "x": -45.01544830495289, - "y": -11979.211175238559, - "rotation": 6.122788592495938, - "action": "NOTHING" - }, - { - "x": -45.87857452643563, - "y": -11986.412734758742, - "rotation": 6.126279250999927, - "action": "NOTHING" - }, - { - "x": -46.722978634475254, - "y": -11993.636177205524, - "rotation": 6.129769909503915, - "action": "CARVE_LEFT" - }, - { - "x": -47.67354300010593, - "y": -12000.764649234796, - "rotation": 6.09137266596004, - "action": "CARVE_LEFT" - }, - { - "x": -48.81479211269646, - "y": -12007.71936811013, - "rotation": 6.052975422416164, - "action": "CARVE_LEFT" - }, - { - "x": -50.14677318902918, - "y": -12014.499771726718, - "rotation": 6.014578178872289, - "action": "CARVE_LEFT" - }, - { - "x": -51.66949667262544, - "y": -12021.105332962155, - "rotation": 5.976180935328413, - "action": "CARVE_LEFT" - }, - { - "x": -53.38293632206788, - "y": -12027.535559592994, - "rotation": 5.937783691784538, - "action": "CARVE_LEFT" - }, - { - "x": -55.28702929912388, - "y": -12033.78999421146, - "rotation": 5.899386448240662, - "action": "CARVE_LEFT" - }, - { - "x": -57.38167625667067, - "y": -12039.868214142372, - "rotation": 5.860989204696787, - "action": "CARVE_LEFT" - }, - { - "x": -59.666741426422426, - "y": -12045.769831360245, - "rotation": 5.822591961152911, - "action": "CARVE_LEFT" - }, - { - "x": -62.142052706459864, - "y": -12051.49449240657, - "rotation": 5.784194717609036, - "action": "CARVE_LEFT" - }, - { - "x": -64.80740174856273, - "y": -12057.04187830729, - "rotation": 5.74579747406516, - "action": "CARVE_LEFT" - }, - { - "x": -67.66254404534561, - "y": -12062.411704490456, - "rotation": 5.7074002305212845, - "action": "CARVE_LEFT" - }, - { - "x": -70.70719901719752, - "y": -12067.603720704074, - "rotation": 5.669002986977409, - "action": "CARVE_LEFT" - }, - { - "x": -73.9410500990256, - "y": -12072.617710934122, - "rotation": 5.6306057434335335, - "action": "CARVE_LEFT" - }, - { - "x": -77.36374482680347, - "y": -12077.45349332277, - "rotation": 5.592208499889658, - "action": "CARVE_LEFT" - }, - { - "x": -80.97489492392458, - "y": -12082.110920086763, - "rotation": 5.553811256345782, - "action": "CARVE_LEFT" - }, - { - "x": -84.77407638736102, - "y": -12086.589877436008, - "rotation": 5.515414012801907, - "action": "CARVE_LEFT" - }, - { - "x": -88.76082957362813, - "y": -12090.890285492327, - "rotation": 5.477016769258031, - "action": "CARVE_LEFT" - }, - { - "x": -92.93465928455547, - "y": -12095.012098208399, - "rotation": 5.438619525714156, - "action": "CARVE_LEFT" - }, - { - "x": -97.29503485286443, - "y": -12098.955303286886, - "rotation": 5.40022228217028, - "action": "NOTHING" - }, - { - "x": -102.11764555723398, - "y": -12102.465390127812, - "rotation": 5.403712940674269, - "action": "NOTHING" - }, - { - "x": -106.91806347258634, - "y": -12105.990958993852, - "rotation": 5.407203599178257, - "action": "NOTHING" - }, - { - "x": -111.69634638536297, - "y": -12109.532012166042, - "rotation": 5.410694257682246, - "action": "NOTHING" - }, - { - "x": -116.45255162034192, - "y": -12113.088552252471, - "rotation": 5.414184916186234, - "action": "NOTHING" - }, - { - "x": -121.18673604170941, - "y": -12116.660582187467, - "rotation": 5.4176755746902225, - "action": "NOTHING" - }, - { - "x": -125.898956054129, - "y": -12120.248105230783, - "rotation": 5.421166233194211, - "action": "NOTHING" - }, - { - "x": -130.58926760380848, - "y": -12123.851124966795, - "rotation": 5.424656891698199, - "action": "NOTHING" - }, - { - "x": -135.25772617956426, - "y": -12127.469645303696, - "rotation": 5.428147550202188, - "action": "NOTHING" - }, - { - "x": -139.90438681388366, - "y": -12131.103670472685, - "rotation": 5.431638208706176, - "action": "NOTHING" - }, - { - "x": -144.52930408398458, - "y": -12134.753205027173, - "rotation": 5.435128867210165, - "action": "NOTHING" - }, - { - "x": -149.13253211287304, - "y": -12138.418253841977, - "rotation": 5.438619525714153, - "action": "CARVE_RIGHT" - }, - { - "x": -153.08471680191323, - "y": -12142.681373750014, - "rotation": 5.477016769258029, - "action": "CARVE_RIGHT" - }, - { - "x": -156.84665446277788, - "y": -12147.116423377334, - "rotation": 5.515414012801904, - "action": "CARVE_RIGHT" - }, - { - "x": -160.41878098084294, - "y": -12151.723520064585, - "rotation": 5.55381125634578, - "action": "CARVE_RIGHT" - }, - { - "x": -163.8014947080781, - "y": -12156.502814967878, - "rotation": 5.592208499889655, - "action": "CARVE_RIGHT" - }, - { - "x": -166.9951565528463, - "y": -12161.454492977336, - "rotation": 5.630605743433531, - "action": "CARVE_RIGHT" - }, - { - "x": -170.0000900695016, - "y": -12166.578772635807, - "rotation": 5.669002986977406, - "action": "CARVE_RIGHT" - }, - { - "x": -172.81658154778566, - "y": -12171.875906057772, - "rotation": 5.707400230521282, - "action": "CARVE_RIGHT" - }, - { - "x": -175.44488010202372, - "y": -12177.346178848446, - "rotation": 5.745797474065157, - "action": "CARVE_RIGHT" - }, - { - "x": -177.88519776011995, - "y": -12182.989910023034, - "rotation": 5.784194717609033, - "action": "CARVE_RIGHT" - }, - { - "x": -180.13770955235296, - "y": -12188.807451926203, - "rotation": 5.8225919611529084, - "action": "CARVE_RIGHT" - }, - { - "x": -182.2025535999718, - "y": -12194.799190151703, - "rotation": 5.860989204696784, - "action": "CARVE_RIGHT" - }, - { - "x": -184.0798312035929, - "y": -12200.965543462196, - "rotation": 5.8993864482406595, - "action": "CARVE_RIGHT" - }, - { - "x": -185.76960693139836, - "y": -12207.30696370925, - "rotation": 5.937783691784535, - "action": "CARVE_RIGHT" - }, - { - "x": -187.27190870713602, - "y": -12213.823935753515, - "rotation": 5.9761809353284105, - "action": "CARVE_RIGHT" - }, - { - "x": -188.58672789792175, - "y": -12220.516977385087, - "rotation": 6.014578178872286, - "action": "CARVE_RIGHT" - }, - { - "x": -189.71401940184433, - "y": -12227.386639244047, - "rotation": 6.052975422416162, - "action": "CARVE_RIGHT" - }, - { - "x": -190.65370173537346, - "y": -12234.433504741175, - "rotation": 6.091372665960037, - "action": "CARVE_RIGHT" - }, - { - "x": -191.40565712057125, - "y": -12241.658189978856, - "rotation": 6.129769909503913, - "action": "CARVE_RIGHT" - }, - { - "x": -191.96973157210763, - "y": -12249.061343672145, - "rotation": 6.168167153047788, - "action": "CARVE_RIGHT" - }, - { - "x": -192.34573498408005, - "y": -12256.643647070028, - "rotation": 6.206564396591664, - "action": "CARVE_RIGHT" - }, - { - "x": -192.53344121663798, - "y": -12264.405813876854, - "rotation": 6.244961640135539, - "action": "CARVE_RIGHT" - }, - { - "x": -192.53258818291107, - "y": -12272.3470058403, - "rotation": 0.00017357649982852053, - "action": "CARVE_RIGHT" - }, - { - "x": -192.34290265846525, - "y": -12280.118841683794, - "rotation": 0.038570820043703775, - "action": "CARVE_RIGHT" - }, - { - "x": -191.9641487358145, - "y": -12287.720579761344, - "rotation": 0.07696806358757903, - "action": "CARVE_RIGHT" - }, - { - "x": -191.3961277348736, - "y": -12295.151513838557, - "rotation": 0.11536530713145429, - "action": "CARVE_RIGHT" - }, - { - "x": -190.63867811361234, - "y": -12302.410973008215, - "rotation": 0.15376255067532954, - "action": "CARVE_RIGHT" - }, - { - "x": -189.69167537891065, - "y": -12309.498321606045, - "rotation": 0.1921597942192048, - "action": "CARVE_RIGHT" - }, - { - "x": -188.55503199761438, - "y": -12316.412959126668, - "rotation": 0.23055703776308004, - "action": "CARVE_RIGHT" - }, - { - "x": -187.2286973077914, - "y": -12323.154320139753, - "rotation": 0.2689542813069553, - "action": "CARVE_RIGHT" - }, - { - "x": -185.71265743018716, - "y": -12329.721874206334, - "rotation": 0.30735152485083056, - "action": "CARVE_RIGHT" - }, - { - "x": -184.00693517987972, - "y": -12336.115125795342, - "rotation": 0.3457487683947058, - "action": "CARVE_RIGHT" - }, - { - "x": -182.1115899781336, - "y": -12342.333614200305, - "rotation": 0.38414601193858106, - "action": "CARVE_RIGHT" - }, - { - "x": -180.02671776445203, - "y": -12348.37691345624, - "rotation": 0.4225432554824563, - "action": "CARVE_RIGHT" - }, - { - "x": -177.75245090882734, - "y": -12354.24463225674, - "rotation": 0.46094049902633155, - "action": "CARVE_RIGHT" - }, - { - "x": -175.28895812418875, - "y": -12359.936413871226, - "rotation": 0.4993377425702068, - "action": "CARVE_RIGHT" - }, - { - "x": -172.63644437904745, - "y": -12365.451936062413, - "rotation": 0.5377349861140821, - "action": "CARVE_RIGHT" - }, - { - "x": -169.79515081033827, - "y": -12370.790911003935, - "rotation": 0.5761322296579574, - "action": "CARVE_RIGHT" - }, - { - "x": -166.76535463645786, - "y": -12375.953085198167, - "rotation": 0.6145294732018327, - "action": "CARVE_RIGHT" - }, - { - "x": -163.54736907049852, - "y": -12380.938239394236, - "rotation": 0.652926716745708, - "action": "CARVE_RIGHT" - }, - { - "x": -160.14154323367762, - "y": -12385.746188506206, - "rotation": 0.6913239602895833, - "action": "CARVE_RIGHT" - }, - { - "x": -156.5482620689621, - "y": -12390.376781531448, - "rotation": 0.7297212038334586, - "action": "CARVE_RIGHT" - }, - { - "x": -152.7679462548873, - "y": -12394.829901469202, - "rotation": 0.7681184473773339, - "action": "NOTHING" - }, - { - "x": -148.5885437783514, - "y": -12398.9099582567, - "rotation": 0.7646277888733453, - "action": "NOTHING" - }, - { - "x": -144.43004499047356, - "y": -12403.005884884582, - "rotation": 0.7611371303693566, - "action": "NOTHING" - }, - { - "x": -140.29240558350807, - "y": -12407.117693267593, - "rotation": 0.7576464718653679, - "action": "NOTHING" - }, - { - "x": -136.17558168029154, - "y": -12411.245395623871, - "rotation": 0.7541558133613793, - "action": "NOTHING" - }, - { - "x": -132.07952983323946, - "y": -12415.389004474195, - "rotation": 0.7506651548573906, - "action": "NOTHING" - }, - { - "x": -128.00420702334517, - "y": -12419.548532641218, - "rotation": 0.7471744963534019, - "action": "NOTHING" - }, - { - "x": -123.94957065918096, - "y": -12423.723993248728, - "rotation": 0.7436838378494133, - "action": "NOTHING" - }, - { - "x": -119.91557857590128, - "y": -12427.915399720883, - "rotation": 0.7401931793454246, - "action": "NOTHING" - }, - { - "x": -115.90218903424831, - "y": -12432.122765781469, - "rotation": 0.736702520841436, - "action": "NOTHING" - }, - { - "x": -111.90936071955963, - "y": -12436.346105453144, - "rotation": 0.7332118623374473, - "action": "NOTHING" - }, - { - "x": -107.93705274077813, - "y": -12440.585433056698, - "rotation": 0.7297212038334586, - "action": "NOTHING" - }, - { - "x": -103.98522462946407, - "y": -12444.8407632103, - "rotation": 0.72623054532947, - "action": "NOTHING" - }, - { - "x": -100.05383633880938, - "y": -12449.112110828764, - "rotation": 0.7227398868254813, - "action": "NOTHING" - }, - { - "x": -96.14284824265404, - "y": -12453.399491122798, - "rotation": 0.7192492283214926, - "action": "NOTHING" - }, - { - "x": -92.25222113450478, - "y": -12457.702919598269, - "rotation": 0.715758569817504, - "action": "NOTHING" - }, - { - "x": -88.38191622655579, - "y": -12462.02241205546, - "rotation": 0.7122679113135153, - "action": "NOTHING" - }, - { - "x": -84.53189514871173, - "y": -12466.357984588338, - "rotation": 0.7087772528095266, - "action": "NOTHING" - }, - { - "x": -80.70211994761281, - "y": -12470.709653583819, - "rotation": 0.705286594305538, - "action": "NOTHING" - }, - { - "x": -76.89255308566212, - "y": -12475.07743572103, - "rotation": 0.7017959358015493, - "action": "NOTHING" - }, - { - "x": -73.10315744005493, - "y": -12479.46134797058, - "rotation": 0.6983052772975606, - "action": "CARVE_LEFT" - }, - { - "x": -69.88134420732389, - "y": -12484.368070469307, - "rotation": 0.6599080337536853, - "action": "CARVE_LEFT" - }, - { - "x": -66.8478448290609, - "y": -12489.446946871665, - "rotation": 0.62151079020981, - "action": "CARVE_LEFT" - }, - { - "x": -64.00236758855797, - "y": -12494.698224382322, - "rotation": 0.5831135466659347, - "action": "CARVE_LEFT" - }, - { - "x": -61.34465795702326, - "y": -12500.122183708037, - "rotation": 0.5447163031220594, - "action": "CARVE_LEFT" - }, - { - "x": -58.87449850455818, - "y": -12505.719138976912, - "rotation": 0.5063190595781841, - "action": "CARVE_LEFT" - }, - { - "x": -56.59170881133458, - "y": -12511.48943765782, - "rotation": 0.4679218160343089, - "action": "CARVE_LEFT" - }, - { - "x": -54.4961453789714, - "y": -12517.43346048001, - "rotation": 0.42952457249043363, - "action": "CARVE_LEFT" - }, - { - "x": -52.58770154211053, - "y": -12523.55162135291, - "rotation": 0.3911273289465584, - "action": "NOTHING" - }, - { - "x": -50.485700068359094, - "y": -12529.492186441807, - "rotation": 0.3876366704425697, - "action": "NOTHING" - }, - { - "x": -48.40218651594787, - "y": -12535.451537969559, - "rotation": 0.38414601193858106, - "action": "NOTHING" - }, - { - "x": -46.33715746345769, - "y": -12541.429716432465, - "rotation": 0.3806553534345924, - "action": "NOTHING" - }, - { - "x": -44.2906098242336, - "y": -12547.426762558194, - "rotation": 0.3771646949306037, - "action": "NOTHING" - }, - { - "x": -42.26254084559395, - "y": -12553.442717305197, - "rotation": 0.37367403642661506, - "action": "NOTHING" - }, - { - "x": -40.252948108041345, - "y": -12559.477621862114, - "rotation": 0.3701833779226264, - "action": "NOTHING" - }, - { - "x": -38.26182952447524, - "y": -12565.531517647187, - "rotation": 0.36669271941863774, - "action": "NOTHING" - }, - { - "x": -36.2891833394064, - "y": -12571.604446307676, - "rotation": 0.36320206091464907, - "action": "NOTHING" - }, - { - "x": -34.335008128173044, - "y": -12577.696449719273, - "rotation": 0.3597114024106604, - "action": "NOTHING" - }, - { - "x": -32.39930279615874, - "y": -12583.807569985514, - "rotation": 0.35622074390667174, - "action": "NOTHING" - }, - { - "x": -30.48206657801209, - "y": -12589.937849437201, - "rotation": 0.3527300854026831, - "action": "NOTHING" - }, - { - "x": -28.583299036868084, - "y": -12596.087330631819, - "rotation": 0.3492394268986944, - "action": "NOTHING" - }, - { - "x": -26.703000063571253, - "y": -12602.256056352955, - "rotation": 0.34574876839470575, - "action": "NOTHING" - }, - { - "x": -24.841169875900526, - "y": -12608.444069609723, - "rotation": 0.3422581098907171, - "action": "NOTHING" - }, - { - "x": -22.99780901779582, - "y": -12614.651413636182, - "rotation": 0.3387674513867284, - "action": "NOTHING" - }, - { - "x": -21.17291835858635, - "y": -12620.878131890764, - "rotation": 0.33527679288273976, - "action": "NOTHING" - }, - { - "x": -19.366499092220675, - "y": -12627.124268055697, - "rotation": 0.3317861343787511, - "action": "NOTHING" - }, - { - "x": -17.578552736498438, - "y": -12633.389866036436, - "rotation": 0.32829547587476243, - "action": "NOTHING" - }, - { - "x": -15.809081132303842, - "y": -12639.674969961083, - "rotation": 0.32480481737077377, - "action": "NOTHING" - }, - { - "x": -14.05808644284083, - "y": -12645.979624179827, - "rotation": 0.3213141588667851, - "action": "NOTHING" - }, - { - "x": -12.325571152869966, - "y": -12652.303873264365, - "rotation": 0.31782350036279644, - "action": "NOTHING" - }, - { - "x": -10.61153806794702, - "y": -12658.647762007344, - "rotation": 0.3143328418588078, - "action": "NOTHING" - }, - { - "x": -8.915990313663261, - "y": -12665.011335421785, - "rotation": 0.3108421833548191, - "action": "NOTHING" - }, - { - "x": -7.2389313348874325, - "y": -12671.394638740525, - "rotation": 0.30735152485083045, - "action": "NOTHING" - }, - { - "x": -5.5803648950094304, - "y": -12677.797717415648, - "rotation": 0.3038608663468418, - "action": "NOTHING" - }, - { - "x": -3.9402950751856647, - "y": -12684.220617117926, - "rotation": 0.3003702078428531, - "action": "CARVE_RIGHT" - }, - { - "x": -2.2752331222948516, - "y": -12690.621852299875, - "rotation": 0.33876745138672837, - "action": "CARVE_RIGHT" - }, - { - "x": -0.4212223242498794, - "y": -12696.849095200294, - "rotation": 0.3771646949306036, - "action": "CARVE_RIGHT" - }, - { - "x": 1.6216505080674255, - "y": -12702.901911137658, - "rotation": 0.41556193847447886, - "action": "CARVE_RIGHT" - }, - { - "x": 3.8532621105906237, - "y": -12708.779900110507, - "rotation": 0.4539591820183541, - "action": "NOTHING" - }, - { - "x": 6.313974220594071, - "y": -12714.446436930468, - "rotation": 0.45046852351436545, - "action": "NOTHING" - }, - { - "x": 8.75584070575545, - "y": -12720.131146796055, - "rotation": 0.4469778650103768, - "action": "NOTHING" - }, - { - "x": 11.178871926319971, - "y": -12725.834065479006, - "rotation": 0.4434872065063881, - "action": "NOTHING" - }, - { - "x": 13.58307789120544, - "y": -12731.55522899471, - "rotation": 0.43999654800239946, - "action": "NOTHING" - }, - { - "x": 15.968468258830264, - "y": -12737.294673601578, - "rotation": 0.4365058894984108, - "action": "NOTHING" - }, - { - "x": 18.335052337939622, - "y": -12743.052435800435, - "rotation": 0.43301523099442213, - "action": "NOTHING" - }, - { - "x": 20.682839088429795, - "y": -12748.828552333895, - "rotation": 0.42952457249043346, - "action": "NOTHING" - }, - { - "x": 23.011837122170657, - "y": -12754.62306018575, - "rotation": 0.4260339139864448, - "action": "NOTHING" - }, - { - "x": 25.322054703826353, - "y": -12760.435996580354, - "rotation": 0.42254325548245614, - "action": "NOTHING" - }, - { - "x": 27.613499751674127, - "y": -12766.267398982014, - "rotation": 0.4190525969784675, - "action": "NOTHING" - }, - { - "x": 29.886179838421334, - "y": -12772.117305094373, - "rotation": 0.4155619384744788, - "action": "NOTHING" - }, - { - "x": 32.14010219202065, - "y": -12777.985752859804, - "rotation": 0.41207127997049015, - "action": "NOTHING" - }, - { - "x": 34.37527369648343, - "y": -12783.872780458803, - "rotation": 0.4085806214665015, - "action": "NOTHING" - }, - { - "x": 36.591700892691314, - "y": -12789.778426309382, - "rotation": 0.4050899629625128, - "action": "NOTHING" - }, - { - "x": 38.78938997920595, - "y": -12795.702729066456, - "rotation": 0.40159930445852415, - "action": "NOTHING" - }, - { - "x": 40.968346813076984, - "y": -12801.64572762125, - "rotation": 0.3981086459545355, - "action": "NOTHING" - }, - { - "x": 43.1285769106482, - "y": -12807.60746110069, - "rotation": 0.3946179874505468, - "action": "CARVE_LEFT" - }, - { - "x": 44.8838740230263, - "y": -12813.945338705076, - "rotation": 0.3562207439066716, - "action": "CARVE_LEFT" - }, - { - "x": 46.45030437144781, - "y": -12820.459810280669, - "rotation": 0.31782350036279633, - "action": "CARVE_LEFT" - }, - { - "x": 47.827874572658565, - "y": -12827.151379942972, - "rotation": 0.2794262568189211, - "action": "CARVE_LEFT" - }, - { - "x": 49.016554736363425, - "y": -12834.020584691878, - "rotation": 0.24102901327504583, - "action": "CARVE_LEFT" - }, - { - "x": 50.01627855272165, - "y": -12841.067994332292, - "rotation": 0.20263176973117059, - "action": "CARVE_LEFT" - }, - { - "x": 50.826943379645684, - "y": -12848.29421139496, - "rotation": 0.16423452618729534, - "action": "CARVE_LEFT" - }, - { - "x": 51.44841032990357, - "y": -12855.699871057457, - "rotation": 0.1258372826434201, - "action": "CARVE_LEFT" - }, - { - "x": 51.88050435802556, - "y": -12863.285641065373, - "rotation": 0.08744003909954484, - "action": "CARVE_LEFT" - }, - { - "x": 52.1230143470153, - "y": -12871.052221653656, - "rotation": 0.04904279555566959, - "action": "CARVE_LEFT" - }, - { - "x": 52.175693194865964, - "y": -12879.000345468146, - "rotation": 0.010645552011794332, - "action": "CARVE_LEFT" - }, - { - "x": 52.038270643384145, - "y": -12886.875537456654, - "rotation": 6.255433615647505, - "action": "CARVE_LEFT" - }, - { - "x": 51.710505109824076, - "y": -12894.579497213952, - "rotation": 6.21703637210363, - "action": "CARVE_LEFT" - }, - { - "x": 51.19219225101093, - "y": -12902.111513179776, - "rotation": 6.178639128559754, - "action": "CARVE_LEFT" - }, - { - "x": 50.48316487396963, - "y": -12909.470909132433, - "rotation": 6.140241885015879, - "action": "CARVE_LEFT" - }, - { - "x": 49.58329284675463, - "y": -12916.65704410454, - "rotation": 6.101844641472003, - "action": "CARVE_LEFT" - }, - { - "x": 48.49248300948044, - "y": -12923.66931229896, - "rotation": 6.063447397928128, - "action": "CARVE_LEFT" - }, - { - "x": 47.210679085552265, - "y": -12930.507143004916, - "rotation": 6.025050154384252, - "action": "CARVE_LEFT" - }, - { - "x": 45.73786159309653, - "y": -12937.170000514305, - "rotation": 5.986652910840377, - "action": "CARVE_LEFT" - }, - { - "x": 44.074047756590666, - "y": -12943.65738403819, - "rotation": 5.948255667296501, - "action": "CARVE_LEFT" - }, - { - "x": 42.21929141869186, - "y": -12949.968827623483, - "rotation": 5.909858423752626, - "action": "CARVE_LEFT" - }, - { - "x": 40.17368295226427, - "y": -12956.103900069817, - "rotation": 5.87146118020875, - "action": "CARVE_LEFT" - }, - { - "x": 37.93734917260433, - "y": -12962.062204846598, - "rotation": 5.833063936664875, - "action": "CARVE_LEFT" - }, - { - "x": 35.51045324986364, - "y": -12967.84338001025, - "rotation": 5.794666693120999, - "action": "CARVE_LEFT" - }, - { - "x": 32.893194621669096, - "y": -12973.44709812164, - "rotation": 5.756269449577124, - "action": "CARVE_LEFT" - }, - { - "x": 30.085808905939814, - "y": -12978.873066163695, - "rotation": 5.717872206033248, - "action": "CARVE_LEFT" - }, - { - "x": 27.088567813900333, - "y": -12984.121025459192, - "rotation": 5.679474962489373, - "action": "CARVE_LEFT" - }, - { - "x": 23.90177906328983, - "y": -12989.190751588747, - "rotation": 5.641077718945497, - "action": "CARVE_LEFT" - }, - { - "x": 20.525786291766778, - "y": -12994.08205430898, - "rotation": 5.6026804754016215, - "action": "CARVE_LEFT" - }, - { - "x": 16.960968970508734, - "y": -12998.79477747086, - "rotation": 5.564283231857746, - "action": "CARVE_LEFT" - }, - { - "x": 13.207742318006748, - "y": -13003.32879893824, - "rotation": 5.5258859883138705, - "action": "CARVE_LEFT" - }, - { - "x": 9.266557214054037, - "y": -13007.684030506578, - "rotation": 5.487488744769995, - "action": "NOTHING" - }, - { - "x": 4.908851615857289, - "y": -13011.649595879166, - "rotation": 5.490979403273983, - "action": "NOTHING" - }, - { - "x": 0.5724865739232321, - "y": -13015.630975819617, - "rotation": 5.494470061777972, - "action": "NOTHING" - }, - { - "x": -3.742585877062978, - "y": -13019.628179683641, - "rotation": 5.49796072028196, - "action": "NOTHING" - }, - { - "x": -8.036413263267606, - "y": -13023.641217136785, - "rotation": 5.501451378785949, - "action": "NOTHING" - }, - { - "x": -12.309042672730666, - "y": -13027.670098153658, - "rotation": 5.504942037289937, - "action": "NOTHING" - }, - { - "x": -16.560520756385984, - "y": -13031.714833017166, - "rotation": 5.508432695793926, - "action": "NOTHING" - }, - { - "x": -20.790893729079023, - "y": -13035.775432317736, - "rotation": 5.511923354297914, - "action": "NOTHING" - }, - { - "x": -25.000207370582448, - "y": -13039.851906952556, - "rotation": 5.5154140128019025, - "action": "NOTHING" - }, - { - "x": -29.188507026609447, - "y": -13043.944268124802, - "rotation": 5.518904671305891, - "action": "NOTHING" - }, - { - "x": -33.35583760982483, - "y": -13048.052527342885, - "rotation": 5.522395329809879, - "action": "NOTHING" - }, - { - "x": -37.50224360085388, - "y": -13052.176696419678, - "rotation": 5.525885988313868, - "action": "NOTHING" - }, - { - "x": -41.62776904928897, - "y": -13056.316787471762, - "rotation": 5.529376646817856, - "action": "CARVE_RIGHT" - }, - { - "x": -45.15002150705407, - "y": -13061.011872240559, - "rotation": 5.567773890361732, - "action": "CARVE_RIGHT" - }, - { - "x": -48.48194199016932, - "y": -13065.880117733082, - "rotation": 5.606171133905607, - "action": "CARVE_RIGHT" - }, - { - "x": -51.62388154875485, - "y": -13070.921717766914, - "rotation": 5.644568377449483, - "action": "CARVE_RIGHT" - }, - { - "x": -54.57615390142301, - "y": -13076.136899791893, - "rotation": 5.682965620993358, - "action": "CARVE_RIGHT" - }, - { - "x": -57.339035524625885, - "y": -13081.52592480906, - "rotation": 5.721362864537234, - "action": "CARVE_RIGHT" - }, - { - "x": -59.91276574180214, - "y": -13087.089087289804, - "rotation": 5.759760108081109, - "action": "CARVE_RIGHT" - }, - { - "x": -62.29754681232361, - "y": -13092.826715095169, - "rotation": 5.798157351624985, - "action": "CARVE_RIGHT" - }, - { - "x": -64.49354402024208, - "y": -13098.739169395361, - "rotation": 5.83655459516886, - "action": "CARVE_RIGHT" - }, - { - "x": -66.50088576283659, - "y": -13104.826844589425, - "rotation": 5.874951838712736, - "action": "CARVE_RIGHT" - }, - { - "x": -68.31966363896186, - "y": -13111.090168225104, - "rotation": 5.9133490822566115, - "action": "CARVE_RIGHT" - }, - { - "x": -69.94993253719808, - "y": -13117.52960091889, - "rotation": 5.951746325800487, - "action": "CARVE_RIGHT" - }, - { - "x": -71.3917107238027, - "y": -13124.14563627624, - "rotation": 5.9901435693443625, - "action": "CARVE_RIGHT" - }, - { - "x": -72.64497993046443, - "y": -13130.938800811982, - "rotation": 6.028540812888238, - "action": "CARVE_RIGHT" - }, - { - "x": -73.70968544186003, - "y": -13137.909653870896, - "rotation": 6.066938056432114, - "action": "CARVE_RIGHT" - }, - { - "x": -74.58573618301428, - "y": -13145.058787548482, - "rotation": 6.105335299975989, - "action": "CARVE_RIGHT" - }, - { - "x": -75.27300480646349, - "y": -13152.386826611893, - "rotation": 6.143732543519865, - "action": "CARVE_RIGHT" - }, - { - "x": -75.77132777922311, - "y": -13159.894428421063, - "rotation": 6.18212978706374, - "action": "CARVE_RIGHT" - }, - { - "x": -76.08050546955971, - "y": -13167.582282849999, - "rotation": 6.220527030607616, - "action": "CARVE_RIGHT" - }, - { - "x": -76.20030223356781, - "y": -13175.451112208255, - "rotation": 6.258924274151491, - "action": "CARVE_RIGHT" - }, - { - "x": -76.13044980784866, - "y": -13183.371933782853, - "rotation": 0.014136210515780512, - "action": "CARVE_RIGHT" - }, - { - "x": -75.87069209660552, - "y": -13191.122140910025, - "rotation": 0.05253345405965577, - "action": "CARVE_RIGHT" - }, - { - "x": -75.42081027882469, - "y": -13198.701008241582, - "rotation": 0.09093069760353102, - "action": "CARVE_RIGHT" - }, - { - "x": -74.78062271882453, - "y": -13206.107845801125, - "rotation": 0.12932794114740628, - "action": "CARVE_RIGHT" - }, - { - "x": -73.94998487700576, - "y": -13213.341998899712, - "rotation": 0.16772518469128153, - "action": "CARVE_RIGHT" - }, - { - "x": -72.92878922080247, - "y": -13220.402848051712, - "rotation": 0.20612242823515678, - "action": "CARVE_RIGHT" - }, - { - "x": -71.71696513583366, - "y": -13227.289808890851, - "rotation": 0.24451967177903203, - "action": "CARVE_RIGHT" - }, - { - "x": -70.31447883725463, - "y": -13234.00233208645, - "rotation": 0.2829169153229073, - "action": "CARVE_RIGHT" - }, - { - "x": -68.72133328130789, - "y": -13240.539903259836, - "rotation": 0.32131415886678255, - "action": "CARVE_RIGHT" - }, - { - "x": -66.93756807707325, - "y": -13246.902042900963, - "rotation": 0.3597114024106578, - "action": "CARVE_RIGHT" - }, - { - "x": -64.96325939841648, - "y": -13253.088306285199, - "rotation": 0.39810864595453305, - "action": "CARVE_RIGHT" - }, - { - "x": -62.798519896136206, - "y": -13259.09828339031, - "rotation": 0.4365058894984083, - "action": "CARVE_RIGHT" - }, - { - "x": -60.443498610308644, - "y": -13264.931598813631, - "rotation": 0.47490313304228354, - "action": "CARVE_RIGHT" - }, - { - "x": -57.89838088282971, - "y": -13270.587911689416, - "rotation": 0.5133003765861588, - "action": "CARVE_RIGHT" - }, - { - "x": -55.163388270154044, - "y": -13276.066915606378, - "rotation": 0.5516976201300341, - "action": "CARVE_RIGHT" - }, - { - "x": -52.238778456230555, - "y": -13281.368338525417, - "rotation": 0.5900948636739094, - "action": "CARVE_RIGHT" - }, - { - "x": -49.124845165634106, - "y": -13286.491942697528, - "rotation": 0.6284921072177847, - "action": "CARVE_RIGHT" - }, - { - "x": -45.82191807689283, - "y": -13291.43752458189, - "rotation": 0.66688935076166, - "action": "CARVE_RIGHT" - }, - { - "x": -42.330362736010706, - "y": -13296.204914764146, - "rotation": 0.7052865943055353, - "action": "CARVE_RIGHT" - }, - { - "x": -38.65058047018499, - "y": -13300.793977874864, - "rotation": 0.7436838378494106, - "action": "CARVE_RIGHT" - }, - { - "x": -34.783008301718006, - "y": -13305.204612508176, - "rotation": 0.7820810813932859, - "action": "CARVE_RIGHT" - }, - { - "x": -30.728118862122955, - "y": -13309.436751140609, - "rotation": 0.8204783249371612, - "action": "CARVE_RIGHT" - }, - { - "x": -26.486420306423287, - "y": -13313.490360050091, - "rotation": 0.8588755684810365, - "action": "CARVE_RIGHT" - }, - { - "x": -22.05845622764522, - "y": -13317.365439235138, - "rotation": 0.8972728120249118, - "action": "NOTHING" - }, - { - "x": -17.160895703866682, - "y": -13320.800402827159, - "rotation": 0.8937821535209232, - "action": "NOTHING" - }, - { - "x": -12.28567487463329, - "y": -13324.250803465651, - "rotation": 0.8902914950169345, - "action": "NOTHING" - }, - { - "x": -7.4327343371728505, - "y": -13327.716642260853, - "rotation": 0.8868008365129458, - "action": "NOTHING" - }, - { - "x": -2.6020151540664864, - "y": -13331.197920652889, - "rotation": 0.8833101780089572, - "action": "CARVE_LEFT" - }, - { - "x": 1.5538632517675222, - "y": -13335.298738462847, - "rotation": 0.8449129344650819, - "action": "CARVE_LEFT" - }, - { - "x": 5.5184862405554895, - "y": -13339.571854365307, - "rotation": 0.8065156909212066, - "action": "CARVE_LEFT" - }, - { - "x": 9.292329534747953, - "y": -13344.017349832315, - "rotation": 0.7681184473773313, - "action": "CARVE_LEFT" - }, - { - "x": 12.87583122754835, - "y": -13348.635340238288, - "rotation": 0.729721203833456, - "action": "CARVE_LEFT" - }, - { - "x": 16.26939187292848, - "y": -13353.425974778367, - "rotation": 0.6913239602895807, - "action": "CARVE_LEFT" - }, - { - "x": 19.473374575441852, - "y": -13358.389436386937, - "rotation": 0.6529267167457053, - "action": "CARVE_LEFT" - }, - { - "x": 22.4881050798353, - "y": -13363.525941656337, - "rotation": 0.61452947320183, - "action": "CARVE_LEFT" - }, - { - "x": 25.313871860459358, - "y": -13368.835740755761, - "rotation": 0.5761322296579547, - "action": "CARVE_LEFT" - }, - { - "x": 27.950926210477785, - "y": -13374.319117350335, - "rotation": 0.5377349861140794, - "action": "CARVE_LEFT" - }, - { - "x": 30.399482330876715, - "y": -13379.97638852037, - "rotation": 0.4993377425702042, - "action": "CARVE_LEFT" - }, - { - "x": 32.659717419273804, - "y": -13385.807904680814, - "rotation": 0.46094049902632894, - "action": "CARVE_LEFT" - }, - { - "x": 34.73177175852789, - "y": -13391.814049500867, - "rotation": 0.4225432554824537, - "action": "CARVE_LEFT" - }, - { - "x": 36.615748805149515, - "y": -13397.99523982379, - "rotation": 0.38414601193857845, - "action": "CARVE_LEFT" - }, - { - "x": 38.31171527751277, - "y": -13404.351925586894, - "rotation": 0.3457487683947032, - "action": "CARVE_LEFT" - }, - { - "x": 39.81970124386892, - "y": -13410.884589741705, - "rotation": 0.30735152485082795, - "action": "CARVE_LEFT" - }, - { - "x": 41.139700210162204, - "y": -13417.59374817431, - "rotation": 0.2689542813069527, - "action": "CARVE_LEFT" - }, - { - "x": 42.27166920764822, - "y": -13424.47994962588, - "rotation": 0.23055703776307745, - "action": "CARVE_LEFT" - }, - { - "x": 43.2155288803154, - "y": -13431.543775613387, - "rotation": 0.1921597942192022, - "action": "CARVE_LEFT" - }, - { - "x": 43.97116357210985, - "y": -13438.785840350478, - "rotation": 0.15376255067532696, - "action": "CARVE_LEFT" - }, - { - "x": 44.53842141396421, - "y": -13446.206790668546, - "rotation": 0.11536530713145171, - "action": "CARVE_LEFT" - }, - { - "x": 44.917114410630674, - "y": -13453.80730593797, - "rotation": 0.07696806358757646, - "action": "CARVE_LEFT" - }, - { - "x": 45.107018527318886, - "y": -13461.588097989532, - "rotation": 0.03857082004370121, - "action": "CARVE_LEFT" - }, - { - "x": 45.10787377613887, - "y": -13469.54991103602, - "rotation": 0.00017357649982595313, - "action": "CARVE_LEFT" - }, - { - "x": 44.9194084759033, - "y": -13477.343467370252, - "rotation": 6.244961640135537, - "action": "CARVE_LEFT" - }, - { - "x": 44.5413881474351, - "y": -13484.9664429331, - "rotation": 6.206564396591661, - "action": "CARVE_LEFT" - }, - { - "x": 43.97361553500038, - "y": -13492.418132867373, - "rotation": 6.1681671530477855, - "action": "CARVE_LEFT" - }, - { - "x": 43.21593051697225, - "y": -13499.697867639296, - "rotation": 6.12976990950391, - "action": "CARVE_LEFT" - }, - { - "x": 42.268210016695654, - "y": -13506.805012954286, - "rotation": 6.0913726659600345, - "action": "CARVE_LEFT" - }, - { - "x": 41.130367913552696, - "y": -13513.738969672917, - "rotation": 6.052975422416159, - "action": "CARVE_LEFT" - }, - { - "x": 39.80235495422818, - "y": -13520.499173727068, - "rotation": 6.014578178872283, - "action": "CARVE_LEFT" - }, - { - "x": 38.284158664174825, - "y": -13527.08509603627, - "rotation": 5.976180935328408, - "action": "CARVE_LEFT" - }, - { - "x": 36.57580325927778, - "y": -13533.496242424226, - "rotation": 5.937783691784532, - "action": "CARVE_LEFT" - }, - { - "x": 34.677349557717925, - "y": -13539.732153535535, - "rotation": 5.899386448240657, - "action": "CARVE_LEFT" - }, - { - "x": 32.58889489203367, - "y": -13545.792404752588, - "rotation": 5.860989204696781, - "action": "CARVE_LEFT" - }, - { - "x": 30.31057302138067, - "y": -13551.676606112658, - "rotation": 5.822591961152906, - "action": "CARVE_LEFT" - }, - { - "x": 27.84255404398913, - "y": -13557.384402225172, - "rotation": 5.78419471760903, - "action": "NOTHING" - }, - { - "x": 25.119497934045246, - "y": -13562.856041100498, - "rotation": 5.787685376113019, - "action": "NOTHING" - }, - { - "x": 22.415613172416972, - "y": -13568.345466167986, - "rotation": 5.791176034617007, - "action": "NOTHING" - }, - { - "x": 19.73088427352994, - "y": -13573.852709692908, - "rotation": 5.794666693120996, - "action": "NOTHING" - }, - { - "x": 17.06529611533153, - "y": -13579.377804193246, - "rotation": 5.798157351624984, - "action": "NOTHING" - }, - { - "x": 14.418833938435567, - "y": -13584.920782439047, - "rotation": 5.8016480101289725, - "action": "NOTHING" - }, - { - "x": 11.791483345268912, - "y": -13590.481677451784, - "rotation": 5.805138668632961, - "action": "CARVE_RIGHT" - }, - { - "x": 9.616787196805774, - "y": -13596.461730742227, - "rotation": 5.843535912176836, - "action": "CARVE_RIGHT" - }, - { - "x": 7.631884597757774, - "y": -13602.618065865023, - "rotation": 5.881933155720712, - "action": "CARVE_RIGHT" - }, - { - "x": 5.836686505661087, - "y": -13608.951112722065, - "rotation": 5.9203303992645875, - "action": "CARVE_RIGHT" - }, - { - "x": 4.2311405834193545, - "y": -13615.461334279467, - "rotation": 5.958727642808463, - "action": "CARVE_RIGHT" - }, - { - "x": 2.815231111361328, - "y": -13622.149226487802, - "rotation": 5.9971248863523385, - "action": "CARVE_RIGHT" - }, - { - "x": 1.588978899496202, - "y": -13629.015318202508, - "rotation": 6.035522129896214, - "action": "CARVE_RIGHT" - }, - { - "x": 0.5524411999661609, - "y": -13636.060171104484, - "rotation": 6.07391937344009, - "action": "CARVE_RIGHT" - }, - { - "x": -0.294288380304226, - "y": -13643.284379620856, - "rotation": 6.112316616983965, - "action": "CARVE_RIGHT" - }, - { - "x": -0.951079966762257, - "y": -13650.688570845936, - "rotation": 6.150713860527841, - "action": "CARVE_RIGHT" - }, - { - "x": -1.4177675041853468, - "y": -13658.273404462338, - "rotation": 6.189111104071716, - "action": "CARVE_RIGHT" - }, - { - "x": -1.6941488434437706, - "y": -13666.039572662292, - "rotation": 6.227508347615592, - "action": "CARVE_RIGHT" - }, - { - "x": -1.7799858280682492, - "y": -13673.98780006913, - "rotation": 6.265905591159467, - "action": "CARVE_RIGHT" - }, - { - "x": -1.6750117590185152, - "y": -13681.923875761831, - "rotation": 0.021117527523756507, - "action": "CARVE_RIGHT" - }, - { - "x": -1.3789813278581222, - "y": -13689.688091868633, - "rotation": 0.05951477106763176, - "action": "CARVE_RIGHT" - }, - { - "x": -0.8916864738469799, - "y": -13697.279733327352, - "rotation": 0.09791201461150702, - "action": "CARVE_RIGHT" - }, - { - "x": -0.21295629455292575, - "y": -13704.69812042199, - "rotation": 0.13630925815538228, - "action": "CARVE_RIGHT" - }, - { - "x": 0.6573430433355869, - "y": -13711.942608698462, - "rotation": 0.17470650169925753, - "action": "CARVE_RIGHT" - }, - { - "x": 1.7193083929961186, - "y": -13719.012588880509, - "rotation": 0.21310374524313278, - "action": "CARVE_RIGHT" - }, - { - "x": 2.972999716258627, - "y": -13725.9074867858, - "rotation": 0.25150098878700805, - "action": "CARVE_RIGHT" - }, - { - "x": 4.4184401721920326, - "y": -13732.626763242228, - "rotation": 0.2898982323308833, - "action": "CARVE_RIGHT" - }, - { - "x": 6.055616205491404, - "y": -13739.16991400439, - "rotation": 0.32829547587475855, - "action": "CARVE_RIGHT" - }, - { - "x": 7.884477634666187, - "y": -13745.536469670247, - "rotation": 0.3666927194186338, - "action": "CARVE_RIGHT" - }, - { - "x": 9.904937740029911, - "y": -13751.725995597988, - "rotation": 0.40508996296250904, - "action": "CARVE_RIGHT" - }, - { - "x": 12.116873351491806, - "y": -13757.73809182306, - "rotation": 0.4434872065063843, - "action": "CARVE_RIGHT" - }, - { - "x": 14.520124936150747, - "y": -13763.5723929754, - "rotation": 0.48188445005025954, - "action": "CARVE_RIGHT" - }, - { - "x": 17.114496685691964, - "y": -13769.228568196848, - "rotation": 0.5202816935941348, - "action": "CARVE_RIGHT" - }, - { - "x": 19.899756603586933, - "y": -13774.706321058735, - "rotation": 0.5586789371380101, - "action": "CARVE_RIGHT" - }, - { - "x": 22.875636592096892, - "y": -13780.005389479677, - "rotation": 0.5970761806818854, - "action": "CARVE_RIGHT" - }, - { - "x": 26.04183253908038, - "y": -13785.125545643532, - "rotation": 0.6354734242257607, - "action": "CARVE_RIGHT" - }, - { - "x": 29.398004404605253, - "y": -13790.066595917555, - "rotation": 0.673870667769636, - "action": "CARVE_RIGHT" - }, - { - "x": 32.94377630736555, - "y": -13794.828380770728, - "rotation": 0.7122679113135113, - "action": "CARVE_RIGHT" - }, - { - "x": 36.678736610903734, - "y": -13799.410774692284, - "rotation": 0.7506651548573866, - "action": "CARVE_RIGHT" - }, - { - "x": 40.602438009638554, - "y": -13803.813686110398, - "rotation": 0.7890623984012619, - "action": "CARVE_RIGHT" - }, - { - "x": 44.71439761469916, - "y": -13808.037057311076, - "rotation": 0.8274596419451372, - "action": "CARVE_RIGHT" - }, - { - "x": 49.01409703956571, - "y": -13812.080864357216, - "rotation": 0.8658568854890125, - "action": "CARVE_RIGHT" - }, - { - "x": 53.500982485517, - "y": -13815.94511700786, - "rotation": 0.9042541290328878, - "action": "CARVE_RIGHT" - }, - { - "x": 58.174464826885476, - "y": -13819.62985863761, - "rotation": 0.9426513725767631, - "action": "CARVE_RIGHT" - }, - { - "x": 63.033919696120066, - "y": -13823.135166156251, - "rotation": 0.9810486161206384, - "action": "CARVE_RIGHT" - }, - { - "x": 68.07868756865726, - "y": -13826.461149928526, - "rotation": 1.0194458596645137, - "action": "CARVE_RIGHT" - }, - { - "x": 73.3080738476008, - "y": -13829.607953694114, - "rotation": 1.057843103208389, - "action": "NOTHING" - }, - { - "x": 79.0939106922203, - "y": -13832.232049909991, - "rotation": 1.0543524447044004, - "action": "NOTHING" - }, - { - "x": 84.85523450502173, - "y": -13834.871427955743, - "rotation": 1.0508617862004117, - "action": "CARVE_LEFT" - }, - { - "x": 89.84621078801632, - "y": -13838.216502010597, - "rotation": 1.0124645426565364, - "action": "CARVE_LEFT" - }, - { - "x": 94.64365018314815, - "y": -13841.733715139895, - "rotation": 0.9740672991126611, - "action": "CARVE_LEFT" - }, - { - "x": 99.2481928377951, - "y": -13845.423000659064, - "rotation": 0.9356700555687858, - "action": "CARVE_LEFT" - }, - { - "x": 103.66044087715085, - "y": -13849.284326142375, - "rotation": 0.8972728120249105, - "action": "CARVE_LEFT" - }, - { - "x": 107.8809584951221, - "y": -13853.317693340485, - "rotation": 0.8588755684810352, - "action": "CARVE_LEFT" - }, - { - "x": 111.91027204502196, - "y": -13857.523138098164, - "rotation": 0.8204783249371599, - "action": "CARVE_LEFT" - }, - { - "x": 115.74887013005949, - "y": -13861.900730272208, - "rotation": 0.7820810813932846, - "action": "CARVE_LEFT" - }, - { - "x": 119.3972036936263, - "y": -13866.45057364953, - "rotation": 0.7436838378494093, - "action": "CARVE_LEFT" - }, - { - "x": 122.85568610938029, - "y": -13871.172805865448, - "rotation": 0.705286594305534, - "action": "CARVE_LEFT" - }, - { - "x": 126.12469327112717, - "y": -13876.067598322143, - "rotation": 0.6668893507616587, - "action": "CARVE_LEFT" - }, - { - "x": 129.20456368250015, - "y": -13881.135156107315, - "rotation": 0.6284921072177834, - "action": "CARVE_LEFT" - }, - { - "x": 132.0955985464381, - "y": -13886.375717913015, - "rotation": 0.5900948636739081, - "action": "CARVE_LEFT" - }, - { - "x": 134.79806185446293, - "y": -13891.789555954658, - "rotation": 0.5516976201300328, - "action": "CARVE_LEFT" - }, - { - "x": 137.3121804757562, - "y": -13897.37697589022, - "rotation": 0.5133003765861575, - "action": "CARVE_LEFT" - }, - { - "x": 139.63814424603584, - "y": -13903.138316739625, - "rotation": 0.4749031330422822, - "action": "CARVE_LEFT" - }, - { - "x": 141.776106056233, - "y": -13909.073950804303, - "rotation": 0.43650588949840696, - "action": "CARVE_LEFT" - }, - { - "x": 143.72618194096978, - "y": -13915.184283586934, - "rotation": 0.3981086459545317, - "action": "CARVE_LEFT" - }, - { - "x": 145.48845116683805, - "y": -13921.469753711375, - "rotation": 0.35971140241065647, - "action": "CARVE_LEFT" - }, - { - "x": 147.06295632048, - "y": -13927.930832842769, - "rotation": 0.3213141588667812, - "action": "CARVE_LEFT" - }, - { - "x": 148.44970339647057, - "y": -13934.568025607821, - "rotation": 0.28291691532290597, - "action": "CARVE_LEFT" - }, - { - "x": 149.64866188500253, - "y": -13941.381869515279, - "rotation": 0.24451967177903072, - "action": "CARVE_LEFT" - }, - { - "x": 150.65976485937423, - "y": -13948.372934876563, - "rotation": 0.20612242823515547, - "action": "CARVE_LEFT" - }, - { - "x": 151.4829090632809, - "y": -13955.541824726604, - "rotation": 0.16772518469128023, - "action": "CARVE_LEFT" - }, - { - "x": 152.11795499790958, - "y": -13962.889174744843, - "rotation": 0.12932794114740498, - "action": "CARVE_LEFT" - }, - { - "x": 152.5647270088381, - "y": -13970.415653176407, - "rotation": 0.09093069760352973, - "action": "CARVE_LEFT" - }, - { - "x": 152.82301337273893, - "y": -13978.121960753477, - "rotation": 0.052533454059654476, - "action": "CARVE_LEFT" - }, - { - "x": 152.89256638388773, - "y": -13986.008830616822, - "rotation": 0.014136210515779221, - "action": "CARVE_LEFT" - }, - { - "x": 152.77311217902943, - "y": -13993.855159037617, - "rotation": 6.25892427415149, - "action": "CARVE_LEFT" - }, - { - "x": 152.46440193350466, - "y": -14001.53139022277, - "rotation": 6.220527030607615, - "action": "CARVE_LEFT" - }, - { - "x": 151.9662240807591, - "y": -14009.036805692278, - "rotation": 6.182129787063739, - "action": "CARVE_LEFT" - }, - { - "x": 151.27840422292894, - "y": -14016.370722322246, - "rotation": 6.143732543519864, - "action": "CARVE_LEFT" - }, - { - "x": 150.40080504162756, - "y": -14023.532492260592, - "rotation": 6.105335299975988, - "action": "CARVE_LEFT" - }, - { - "x": 149.3333262089329, - "y": -14030.521502842928, - "rotation": 6.066938056432113, - "action": "CARVE_LEFT" - }, - { - "x": 148.07590429857527, - "y": -14037.33717650865, - "rotation": 6.028540812888237, - "action": "CARVE_LEFT" - }, - { - "x": 146.62851269732485, - "y": -14043.9789707172, - "rotation": 5.990143569344362, - "action": "CARVE_LEFT" - }, - { - "x": 144.9911615165788, - "y": -14050.44637786452, - "rotation": 5.951746325800486, - "action": "CARVE_LEFT" - }, - { - "x": 143.1638975041473, - "y": -14056.738925199697, - "rotation": 5.913349082256611, - "action": "CARVE_LEFT" - }, - { - "x": 141.14680395623805, - "y": -14062.856174741792, - "rotation": 5.874951838712735, - "action": "CARVE_LEFT" - }, - { - "x": 138.9400006296393, - "y": -14068.797723196853, - "rotation": 5.8365545951688595, - "action": "CARVE_LEFT" - }, - { - "x": 136.54364365410015, - "y": -14074.563201875122, - "rotation": 5.798157351624984, - "action": "CARVE_LEFT" - }, - { - "x": 133.95792544490845, - "y": -14080.152276608422, - "rotation": 5.7597601080811085, - "action": "CARVE_LEFT" - }, - { - "x": 131.1830746156655, - "y": -14085.564647667723, - "rotation": 5.721362864537233, - "action": "CARVE_LEFT" - }, - { - "x": 128.2193558912571, - "y": -14090.800049680907, - "rotation": 5.6829656209933574, - "action": "CARVE_LEFT" - }, - { - "x": 125.06707002102073, - "y": -14095.858251550706, - "rotation": 5.644568377449482, - "action": "CARVE_LEFT" - }, - { - "x": 121.72655369210834, - "y": -14100.739056372833, - "rotation": 5.606171133905606, - "action": "CARVE_LEFT" - }, - { - "x": 118.19817944304424, - "y": -14105.442301354286, - "rotation": 5.567773890361731, - "action": "CARVE_LEFT" - }, - { - "x": 114.48235557747773, - "y": -14109.967857731846, - "rotation": 5.529376646817855, - "action": "CARVE_LEFT" - }, - { - "x": 110.57952607813019, - "y": -14114.315630690753, - "rotation": 5.49097940327398, - "action": "CARVE_LEFT" - }, - { - "x": 106.4901705209359, - "y": -14118.48555928356, - "rotation": 5.452582159730104, - "action": "CARVE_LEFT" - }, - { - "x": 102.21480398937655, - "y": -14122.477616349179, - "rotation": 5.414184916186229, - "action": "CARVE_LEFT" - }, - { - "x": 97.75397698900863, - "y": -14126.291808432105, - "rotation": 5.375787672642353, - "action": "CARVE_LEFT" - }, - { - "x": 93.10827536218365, - "y": -14129.92817570181, - "rotation": 5.337390429098478, - "action": "CARVE_LEFT" - }, - { - "x": 88.27832020296044, - "y": -14133.386791872343, - "rotation": 5.298993185554602, - "action": "NOTHING" - }, - { - "x": 82.93504352966544, - "y": -14136.363723897502, - "rotation": 5.302483844058591, - "action": "CARVE_RIGHT" - }, - { - "x": 78.31820454640504, - "y": -14140.006721795213, - "rotation": 5.340881087602466, - "action": "CARVE_RIGHT" - }, - { - "x": 73.89287004745964, - "y": -14143.821002185909, - "rotation": 5.379278331146342, - "action": "CARVE_RIGHT" - }, - { - "x": 69.65847243297614, - "y": -14147.806563713155, - "rotation": 5.417675574690217, - "action": "CARVE_RIGHT" - }, - { - "x": 65.61448195093016, - "y": -14151.963439121246, - "rotation": 5.456072818234093, - "action": "CARVE_RIGHT" - }, - { - "x": 61.76040660662134, - "y": -14156.291695173102, - "rotation": 5.494470061777968, - "action": "CARVE_RIGHT" - }, - { - "x": 58.095792072371886, - "y": -14160.791432568352, - "rotation": 5.532867305321844, - "action": "CARVE_RIGHT" - }, - { - "x": 54.620221597427786, - "y": -14165.4627858616, - "rotation": 5.571264548865719, - "action": "CARVE_RIGHT" - }, - { - "x": 51.33331591806243, - "y": -14170.30592338088, - "rotation": 5.609661792409595, - "action": "CARVE_RIGHT" - }, - { - "x": 48.23473316788202, - "y": -14175.321047146284, - "rotation": 5.64805903595347, - "action": "CARVE_RIGHT" - }, - { - "x": 45.3241687883325, - "y": -14180.508392788792, - "rotation": 5.686456279497346, - "action": "CARVE_RIGHT" - }, - { - "x": 42.60135543940745, - "y": -14185.868229469264, - "rotation": 5.724853523041221, - "action": "CARVE_RIGHT" - }, - { - "x": 40.06606291055655, - "y": -14191.400859797635, - "rotation": 5.763250766585097, - "action": "CARVE_RIGHT" - }, - { - "x": 37.718098031794234, - "y": -14197.106619752274, - "rotation": 5.8016480101289725, - "action": "CARVE_RIGHT" - }, - { - "x": 35.55730458500797, - "y": -14202.985878599535, - "rotation": 5.840045253672848, - "action": "CARVE_RIGHT" - }, - { - "x": 33.58356321546592, - "y": -14209.039038813493, - "rotation": 5.8784424972167235, - "action": "CARVE_RIGHT" - }, - { - "x": 31.796791343523356, - "y": -14215.266535995848, - "rotation": 5.916839740760599, - "action": "CARVE_RIGHT" - }, - { - "x": 30.19694307652756, - "y": -14221.668838796022, - "rotation": 5.955236984304475, - "action": "CARVE_RIGHT" - }, - { - "x": 28.784009120920672, - "y": -14228.246448831433, - "rotation": 5.99363422784835, - "action": "CARVE_RIGHT" - }, - { - "x": 27.55801669454014, - "y": -14234.999900607943, - "rotation": 6.032031471392226, - "action": "CARVE_RIGHT" - }, - { - "x": 26.519029439116274, - "y": -14241.929761440497, - "rotation": 6.070428714936101, - "action": "CARVE_RIGHT" - }, - { - "x": 25.667147332966533, - "y": -14249.036631373927, - "rotation": 6.108825958479977, - "action": "CARVE_RIGHT" - }, - { - "x": 25.002506603886083, - "y": -14256.321143103947, - "rotation": 6.147223202023852, - "action": "CARVE_RIGHT" - }, - { - "x": 24.525279642234246, - "y": -14263.783961898323, - "rotation": 6.185620445567728, - "action": "CARVE_RIGHT" - }, - { - "x": 24.235674914216343, - "y": -14271.425785518215, - "rotation": 6.224017689111603, - "action": "CARVE_RIGHT" - }, - { - "x": 24.133936875360618, - "y": -14279.247344139705, - "rotation": 6.262414932655479, - "action": "CARVE_RIGHT" - }, - { - "x": 24.220340743443575, - "y": -14287.08891704467, - "rotation": 0.017626869019768066, - "action": "CARVE_RIGHT" - }, - { - "x": 24.495144734840967, - "y": -14294.76133756612, - "rotation": 0.05602411256364332, - "action": "CARVE_RIGHT" - }, - { - "x": 24.958569784403327, - "y": -14302.263878275502, - "rotation": 0.09442135610751858, - "action": "CARVE_RIGHT" - }, - { - "x": 25.61079963492436, - "y": -14309.595847122497, - "rotation": 0.13281859965139384, - "action": "CARVE_RIGHT" - }, - { - "x": 26.451980926408023, - "y": -14316.756587350676, - "rotation": 0.17121584319526909, - "action": "CARVE_RIGHT" - }, - { - "x": 27.48222328513479, - "y": -14323.745477413333, - "rotation": 0.20961308673914433, - "action": "CARVE_RIGHT" - }, - { - "x": 28.701599412527433, - "y": -14330.561930889524, - "rotation": 0.24801033028301958, - "action": "CARVE_RIGHT" - }, - { - "x": 30.110145173816857, - "y": -14337.205396400275, - "rotation": 0.28640757382689486, - "action": "CARVE_RIGHT" - }, - { - "x": 31.707859686508357, - "y": -14343.675357524993, - "rotation": 0.3248048173707701, - "action": "CARVE_RIGHT" - }, - { - "x": 33.49470540864874, - "y": -14349.971332718056, - "rotation": 0.36320206091464535, - "action": "CARVE_RIGHT" - }, - { - "x": 35.470608226894775, - "y": -14356.09287522559, - "rotation": 0.4015993044585206, - "action": "CARVE_RIGHT" - }, - { - "x": 37.635457544383314, - "y": -14362.039573002437, - "rotation": 0.43999654800239585, - "action": "CARVE_RIGHT" - }, - { - "x": 39.989106368403654, - "y": -14367.81104862931, - "rotation": 0.4783937915462711, - "action": "CARVE_RIGHT" - }, - { - "x": 42.53137139787241, - "y": -14373.406959230126, - "rotation": 0.5167910350901463, - "action": "CARVE_RIGHT" - }, - { - "x": 45.26203311061146, - "y": -14378.826996389533, - "rotation": 0.5551882786340216, - "action": "CARVE_RIGHT" - }, - { - "x": 48.180835850429276, - "y": -14384.070886070616, - "rotation": 0.593585522177897, - "action": "CARVE_RIGHT" - }, - { - "x": 51.28748791400615, - "y": -14389.13838853279, - "rotation": 0.6319827657217723, - "action": "CARVE_RIGHT" - }, - { - "x": 54.58166163758372, - "y": -14394.02929824988, - "rotation": 0.6703800092656476, - "action": "CARVE_RIGHT" - }, - { - "x": 58.06299348345918, - "y": -14398.743443828374, - "rotation": 0.7087772528095229, - "action": "CARVE_RIGHT" - }, - { - "x": 61.7310841262846, - "y": -14403.28068792588, - "rotation": 0.7471744963533982, - "action": "CARVE_RIGHT" - }, - { - "x": 65.58549853917188, - "y": -14407.640927169745, - "rotation": 0.7855717398972735, - "action": "CARVE_RIGHT" - }, - { - "x": 69.6257660796036, - "y": -14411.82409207586, - "rotation": 0.8239689834411488, - "action": "CARVE_RIGHT" - }, - { - "x": 73.85138057515027, - "y": -14415.830146967664, - "rotation": 0.8623662269850241, - "action": "CARVE_RIGHT" - }, - { - "x": 78.2618004089945, - "y": -14419.65908989531, - "rotation": 0.9007634705288994, - "action": "NOTHING" - }, - { - "x": 83.14004479338534, - "y": -14423.049623491948, - "rotation": 0.8972728120249107, - "action": "NOTHING" - }, - { - "x": 87.99612669668429, - "y": -14426.455495549417, - "rotation": 0.893782153520922, - "action": "NOTHING" - }, - { - "x": 92.83010526976014, - "y": -14429.876707293299, - "rotation": 0.8902914950169334, - "action": "NOTHING" - }, - { - "x": 97.64203919886427, - "y": -14433.313260278588, - "rotation": 0.8868008365129447, - "action": "CARVE_LEFT" - }, - { - "x": 101.78250955272304, - "y": -14437.36629079071, - "rotation": 0.8484035929690694, - "action": "CARVE_LEFT" - }, - { - "x": 105.7332211410186, - "y": -14441.590298637479, - "rotation": 0.8100063494251941, - "action": "CARVE_LEFT" - }, - { - "x": 109.49464766748405, - "y": -14445.98536704307, - "rotation": 0.7716091058813188, - "action": "CARVE_LEFT" - }, - { - "x": 113.06722521301526, - "y": -14450.551613128304, - "rotation": 0.7332118623374435, - "action": "CARVE_LEFT" - }, - { - "x": 116.45135232566989, - "y": -14455.289187829016, - "rotation": 0.6948146187935682, - "action": "CARVE_LEFT" - }, - { - "x": 119.64739011046414, - "y": -14460.198275814586, - "rotation": 0.6564173752496929, - "action": "CARVE_LEFT" - }, - { - "x": 122.65566231896801, - "y": -14465.279095406679, - "rotation": 0.6180201317058176, - "action": "SLIDE_LEFT" - }, - { - "x": 124.47078404632222, - "y": -14471.400985713306, - "rotation": 0.5639149248939934, - "action": "SLIDE_LEFT" - }, - { - "x": 126.0985324242794, - "y": -14477.633509602656, - "rotation": 0.5098097180821692, - "action": "SLIDE_LEFT" - }, - { - "x": 127.54187078637172, - "y": -14483.974759729184, - "rotation": 0.455704511270345, - "action": "SLIDE_LEFT" - }, - { - "x": 128.8037062058637, - "y": -14490.422879334521, - "rotation": 0.40159930445852077, - "action": "SLIDE_LEFT" - }, - { - "x": 129.8868896305667, - "y": -14496.976062125348, - "rotation": 0.34749409764669653, - "action": "SLIDE_LEFT" - }, - { - "x": 130.7942160173504, - "y": -14503.632552151563, - "rotation": 0.2933888908348723, - "action": "SLIDE_LEFT" - }, - { - "x": 131.52842446635174, - "y": -14510.390643684708, - "rotation": 0.2392836840230481, - "action": "SLIDE_LEFT" - }, - { - "x": 132.09219835488227, - "y": -14517.248681096678, - "rotation": 0.18517847721122388, - "action": "SLIDE_LEFT" - }, - { - "x": 132.48816547103436, - "y": -14524.205058738704, - "rotation": 0.13107327039939967, - "action": "SLIDE_LEFT" - }, - { - "x": 132.71889814698702, - "y": -14531.258220820604, - "rotation": 0.07696806358757546, - "action": "SLIDE_LEFT" - }, - { - "x": 132.78691339201174, - "y": -14538.406661290312, - "rotation": 0.02286285677575125, - "action": "CARVE_LEFT" - }, - { - "x": 132.71752461606582, - "y": -14545.560941741089, - "rotation": 6.267650920411462, - "action": "CARVE_LEFT" - }, - { - "x": 132.4764038038484, - "y": -14552.562796681614, - "rotation": 6.229253676867587, - "action": "CARVE_LEFT" - }, - { - "x": 132.06326801133247, - "y": -14559.4114389392, - "rotation": 6.190856433323711, - "action": "CARVE_LEFT" - }, - { - "x": 131.47787165338343, - "y": -14566.106116878065, - "rotation": 6.152459189779836, - "action": "CARVE_LEFT" - }, - { - "x": 130.72000641409235, - "y": -14572.646114314608, - "rotation": 6.11406194623596, - "action": "CARVE_LEFT" - }, - { - "x": 129.78950115731092, - "y": -14579.030750432865, - "rotation": 6.075664702692085, - "action": "CARVE_LEFT" - }, - { - "x": 128.6862218373877, - "y": -14585.259379700172, - "rotation": 6.037267459148209, - "action": "CARVE_LEFT" - }, - { - "x": 127.41007141010535, - "y": -14591.331391782996, - "rotation": 5.998870215604334, - "action": "CARVE_LEFT" - }, - { - "x": 125.96098974381819, - "y": -14597.246211462976, - "rotation": 5.960472972060458, - "action": "CARVE_LEFT" - }, - { - "x": 124.33895353078992, - "y": -14603.003298553134, - "rotation": 5.922075728516583, - "action": "CARVE_LEFT" - }, - { - "x": 122.5439761987308, - "y": -14608.602147814287, - "rotation": 5.883678484972707, - "action": "CARVE_LEFT" - }, - { - "x": 120.57610782253407, - "y": -14614.042288871635, - "rotation": 5.8452812414288315, - "action": "CARVE_LEFT" - }, - { - "x": 118.43543503621102, - "y": -14619.323286131548, - "rotation": 5.806883997884956, - "action": "CARVE_LEFT" - }, - { - "x": 116.12208094502445, - "y": -14624.444738698536, - "rotation": 5.7684867543410805, - "action": "CARVE_LEFT" - }, - { - "x": 113.63620503781993, - "y": -14629.40628029239, - "rotation": 5.730089510797205, - "action": "CARVE_LEFT" - }, - { - "x": 110.97800309955453, - "y": -14634.20757916554, - "rotation": 5.691692267253329, - "action": "CARVE_LEFT" - }, - { - "x": 108.14770712402252, - "y": -14638.848338020567, - "rotation": 5.653295023709454, - "action": "CARVE_LEFT" - }, - { - "x": 105.14558522677775, - "y": -14643.328293927914, - "rotation": 5.614897780165578, - "action": "CARVE_LEFT" - }, - { - "x": 101.97194155825213, - "y": -14647.64721824379, - "rotation": 5.576500536621703, - "action": "NOTHING" - }, - { - "x": 98.46379682433354, - "y": -14651.6549548683, - "rotation": 5.579991195125691, - "action": "NOTHING" - }, - { - "x": 94.97374735119341, - "y": -14655.678031183967, - "rotation": 5.58348185362968, - "action": "NOTHING" - }, - { - "x": 91.5017627881827, - "y": -14659.71646830233, - "rotation": 5.586972512133668, - "action": "NOTHING" - }, - { - "x": 88.04781318118452, - "y": -14663.770287613499, - "rotation": 5.590463170637657, - "action": "NOTHING" - }, - { - "x": 84.61186897168812, - "y": -14667.839510785465, - "rotation": 5.593953829141645, - "action": "NOTHING" - }, - { - "x": 81.19390099586501, - "y": -14671.924159763394, - "rotation": 5.5974444876456335, - "action": "NOTHING" - }, - { - "x": 77.793880483647, - "y": -14676.024256768938, - "rotation": 5.600935146149622, - "action": "NOTHING" - }, - { - "x": 74.41177905780644, - "y": -14680.139824299546, - "rotation": 5.60442580465361, - "action": "NOTHING" - }, - { - "x": 71.04756873303836, - "y": -14684.270885127762, - "rotation": 5.607916463157599, - "action": "NOTHING" - }, - { - "x": 67.70122191504468, - "y": -14688.417462300544, - "rotation": 5.611407121661587, - "action": "NOTHING" - }, - { - "x": 64.37271139962048, - "y": -14692.57957913857, - "rotation": 5.614897780165576, - "action": "NOTHING" - }, - { - "x": 61.06201037174229, - "y": -14696.757259235554, - "rotation": 5.618388438669564, - "action": "NOTHING" - }, - { - "x": 57.769092404658316, - "y": -14700.950526457562, - "rotation": 5.621879097173553, - "action": "NOTHING" - }, - { - "x": 54.49393145898081, - "y": -14705.159404942327, - "rotation": 5.625369755677541, - "action": "NOTHING" - }, - { - "x": 51.236501881780335, - "y": -14709.383919098565, - "rotation": 5.6288604141815295, - "action": "NOTHING" - }, - { - "x": 47.99677840568211, - "y": -14713.624093605298, - "rotation": 5.632351072685518, - "action": "NOTHING" - }, - { - "x": 44.774736147964305, - "y": -14717.879953411173, - "rotation": 5.635841731189506, - "action": "NOTHING" - }, - { - "x": 41.57035060965839, - "y": -14722.151523733784, - "rotation": 5.639332389693495, - "action": "CARVE_RIGHT" - }, - { - "x": 38.85870126241502, - "y": -14726.878507455078, - "rotation": 5.67772963323737, - "action": "CARVE_RIGHT" - }, - { - "x": 36.31912975951121, - "y": -14731.76451351466, - "rotation": 5.716126876781246, - "action": "CARVE_RIGHT" - }, - { - "x": 33.951453307297086, - "y": -14736.80988654868, - "rotation": 5.754524120325121, - "action": "CARVE_RIGHT" - }, - { - "x": 31.755526022788537, - "y": -14742.015004444836, - "rotation": 5.792921363868997, - "action": "CARVE_RIGHT" - }, - { - "x": 29.73123884528963, - "y": -14747.380278262193, - "rotation": 5.8313186074128724, - "action": "CARVE_RIGHT" - }, - { - "x": 27.878519448213485, - "y": -14752.90615215121, - "rotation": 5.869715850956748, - "action": "CARVE_RIGHT" - }, - { - "x": 26.197332151101303, - "y": -14758.59310327393, - "rotation": 5.9081130945006235, - "action": "CARVE_RIGHT" - }, - { - "x": 24.687677831839157, - "y": -14764.441641724357, - "rotation": 5.946510338044499, - "action": "CARVE_RIGHT" - }, - { - "x": 23.349593839072, - "y": -14770.452310449009, - "rotation": 5.9849075815883745, - "action": "CARVE_RIGHT" - }, - { - "x": 22.183153904814596, - "y": -14776.625685167655, - "rotation": 6.02330482513225, - "action": "CARVE_RIGHT" - }, - { - "x": 21.18846805725884, - "y": -14782.962374294224, - "rotation": 6.061702068676126, - "action": "CARVE_RIGHT" - }, - { - "x": 20.36568253377713, - "y": -14789.463018857901, - "rotation": 6.100099312220001, - "action": "CARVE_RIGHT" - }, - { - "x": 19.714979694121272, - "y": -14796.128292424395, - "rotation": 6.138496555763877, - "action": "CARVE_RIGHT" - }, - { - "x": 19.23657793381663, - "y": -14802.958901017388, - "rotation": 6.176893799307752, - "action": "CARVE_RIGHT" - }, - { - "x": 18.93073159775093, - "y": -14809.955583040153, - "rotation": 6.215291042851628, - "action": "CARVE_RIGHT" - }, - { - "x": 18.79773089395747, - "y": -14817.119109197369, - "rotation": 6.253688286395503, - "action": "CARVE_RIGHT" - }, - { - "x": 18.837900496969876, - "y": -14824.375655075393, - "rotation": 0.00890022275979252, - "action": "CARVE_RIGHT" - }, - { - "x": 19.051560739356923, - "y": -14831.47810042005, - "rotation": 0.047297466303667775, - "action": "CARVE_RIGHT" - }, - { - "x": 19.438994507031055, - "y": -14838.4256581965, - "rotation": 0.08569470984754303, - "action": "NOTHING" - }, - { - "x": 19.852322856327085, - "y": -14845.355989194328, - "rotation": 0.08220405134355437, - "action": "NOTHING" - }, - { - "x": 20.248467060394642, - "y": -14852.309015640813, - "rotation": 0.0787133928395657, - "action": "NOTHING" - }, - { - "x": 20.627396337054137, - "y": -14859.284800493073, - "rotation": 0.07522273433557704, - "action": "NOTHING" - }, - { - "x": 20.989079652990508, - "y": -14866.283406878743, - "rotation": 0.07173207583158837, - "action": "NOTHING" - }, - { - "x": 21.333485724353846, - "y": -14873.304898095525, - "rotation": 0.06824141732759971, - "action": "NOTHING" - }, - { - "x": 21.66058301735866, - "y": -14880.349337610744, - "rotation": 0.06475075882361105, - "action": "NOTHING" - }, - { - "x": 21.970339748881816, - "y": -14887.416789060913, - "rotation": 0.06126010031962239, - "action": "NOTHING" - }, - { - "x": 22.262723887059106, - "y": -14894.507316251285, - "rotation": 0.05776944181563373, - "action": "NOTHING" - }, - { - "x": 22.537703151880503, - "y": -14901.620983155417, - "rotation": 0.054278783311645075, - "action": "NOTHING" - }, - { - "x": 22.795245015784072, - "y": -14908.757853914723, - "rotation": 0.05078812480765642, - "action": "NOTHING" - }, - { - "x": 23.03531670424854, - "y": -14915.917992838045, - "rotation": 0.04729746630366776, - "action": "NOTHING" - }, - { - "x": 23.257885196384535, - "y": -14923.101464401212, - "rotation": 0.043806807799679104, - "action": "NOTHING" - }, - { - "x": 23.462917225524507, - "y": -14930.308333246601, - "rotation": 0.04031614929569045, - "action": "NOTHING" - }, - { - "x": 23.650379279811318, - "y": -14937.538664182708, - "rotation": 0.03682549079170179, - "action": "NOTHING" - }, - { - "x": 23.8202376027855, - "y": -14944.792522183707, - "rotation": 0.03333483228771313, - "action": "NOTHING" - }, - { - "x": 23.97245819397121, - "y": -14952.069972389023, - "rotation": 0.029844173783724472, - "action": "NOTHING" - }, - { - "x": 24.107006809460856, - "y": -14959.371080102897, - "rotation": 0.026353515279735812, - "action": "NOTHING" - }, - { - "x": 24.223848962498412, - "y": -14966.695910793955, - "rotation": 0.02286285677574715, - "action": "NOTHING" - }, - { - "x": 24.32294992406143, - "y": -14974.044530094776, - "rotation": 0.01937219827175849, - "action": "NOTHING" - }, - { - "x": 24.404274723441727, - "y": -14981.417003801467, - "rotation": 0.01588153976776983, - "action": "NOTHING" - }, - { - "x": 24.467788148824777, - "y": -14988.813397873235, - "rotation": 0.012390881263781172, - "action": "NOTHING" - }, - { - "x": 24.513454747867808, - "y": -14996.233778431955, - "rotation": 0.008900222759792513, - "action": "NOTHING" - }, - { - "x": 24.541238828276576, - "y": -15003.678211761748, - "rotation": 0.005409564255803854, - "action": "NOTHING" - }, - { - "x": 24.55110445838087, - "y": -15011.146764308556, - "rotation": 0.001918905751815195, - "action": "NOTHING" - }, - { - "x": 24.543015513123947, - "y": -15018.62448108384, - "rotation": 6.2816135544274125, - "action": "NOTHING" - } - ] -} diff --git a/src/public/tracks/adelboden.json b/src/public/tracks/adelboden.json deleted file mode 100644 index 031080f..0000000 --- a/src/public/tracks/adelboden.json +++ /dev/null @@ -1,417 +0,0 @@ -{ - "name": "adelboden", - "builderVersion": 4, - "style": "SL", - "date": "2024-04-09T19:28:37.496Z", - "gates": [ - { - "x": 70.35448755265884, - "y": -132, - "color": "red", - "width": 112.6655900440129, - "gateNumber": 1, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -42.480755119361405, - "y": -272.3793286939861, - "color": "blue", - "width": 107.38447366840259, - "gateNumber": 2, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 10.082944105399626, - "y": -387.8901733067985, - "color": "red", - "width": 101.80630873905126, - "gateNumber": 3, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -181.91705589460037, - "y": -525.4475135101369, - "color": "blue", - "width": 111.3918910113205, - "gateNumber": 4, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 10.082944105399633, - "y": -638.3580996936105, - "color": "red", - "width": 92.08734279029491, - "gateNumber": 5, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -100.19729771443686, - "y": -741.603981681899, - "color": "blue", - "width": 96.75796264796979, - "gateNumber": 6, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 50.1354522179763, - "y": -866.3664855702033, - "color": "red", - "width": 99.07256461096638, - "gateNumber": 7, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -117.9673857756221, - "y": -971.4383809413308, - "color": "blue", - "width": 95.32405822979953, - "gateNumber": 8, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 74.0326142243779, - "y": -1087.433809087588, - "color": "red", - "width": 92.29244409707769, - "gateNumber": 9, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -35.94095280974503, - "y": -1212.7802660935313, - "color": "blue", - "width": 106.76676798621114, - "gateNumber": 10, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 16.166635824550095, - "y": -1363.9981903570788, - "color": "red", - "width": 90.10535286514244, - "gateNumber": 11, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -9.041273480069995, - "y": -1504.7593895381876, - "color": "blue", - "width": 112.85523663094325, - "gateNumber": 12, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 182.95872651993, - "y": -1627.0012237137737, - "color": "red", - "width": 100.32617225153413, - "gateNumber": 13, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -9.041273480070004, - "y": -1752.6273579374963, - "color": "blue", - "width": 107.38347246124613, - "gateNumber": 14, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 94.24145973967275, - "y": -1883.0062583302447, - "color": "red", - "width": 98.28814424437617, - "gateNumber": 15, - "isFinal": false, - "sectorNumber": 1 - }, - { - "x": -97.75854026032725, - "y": -2038.973607811476, - "color": "blue", - "width": 104.95509495935511, - "gateNumber": 16, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 44.51400376742046, - "y": -2181.9060130015714, - "color": "red", - "width": 108.47959801426629, - "gateNumber": 17, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -147.48599623257954, - "y": -2285.392547611979, - "color": "blue", - "width": 108.5866194546927, - "gateNumber": 18, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 44.51400376742046, - "y": -2413.911299849034, - "color": "red", - "width": 109.73958246685855, - "gateNumber": 19, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -31.878907492749693, - "y": -2543.9616933973602, - "color": "blue", - "width": 102.31875526783115, - "gateNumber": 20, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 126.05618346640493, - "y": -2693.0027046251817, - "color": "red", - "width": 99.04199998175477, - "gateNumber": 21, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -65.94381653359507, - "y": -2841.851571930828, - "color": "blue", - "width": 106.715334759982, - "gateNumber": 22, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 107.57350422452485, - "y": -2949.365440549581, - "color": "red", - "width": 101.03411928346536, - "gateNumber": 23, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -84.42649577547515, - "y": -3074.3766653867665, - "color": "blue", - "width": 93.67231797746852, - "gateNumber": 24, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 107.57350422452485, - "y": -3223.8413135286155, - "color": "red", - "width": 112.4188582442653, - "gateNumber": 25, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -19.203689854557588, - "y": -3353.2363168205216, - "color": "blue", - "width": 90.70217522511393, - "gateNumber": 26, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 59.74280008286062, - "y": -3456.635655885424, - "color": "red", - "width": 113.24740661934311, - "gateNumber": 27, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -41.03918870809659, - "y": -3594.91039288491, - "color": "blue", - "width": 111.14012625157335, - "gateNumber": 28, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 135.88063218569212, - "y": -3745.3304627106613, - "color": "red", - "width": 112.29841329879113, - "gateNumber": 29, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -56.11936781430788, - "y": -3847.512338352161, - "color": "blue", - "width": 110.24819392224984, - "gateNumber": 30, - "isFinal": false, - "sectorNumber": 2 - }, - { - "x": 135.88063218569212, - "y": -3953.8784202098477, - "color": "red", - "width": 103.6121518378012, - "gateNumber": 31, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -56.11936781430788, - "y": -4109.364932402725, - "color": "blue", - "width": 94.05711510707458, - "gateNumber": 32, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 88.49958687491234, - "y": -4255.641126119649, - "color": "red", - "width": 101.55282250840294, - "gateNumber": 33, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -103.50041312508766, - "y": -4379.139759228307, - "color": "blue", - "width": 91.3197293536896, - "gateNumber": 34, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 88.49958687491234, - "y": -4490.434669519474, - "color": "red", - "width": 95.3267157161814, - "gateNumber": 35, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -103.50041312508766, - "y": -4615.910226591372, - "color": "blue", - "width": 105.46804135513703, - "gateNumber": 36, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 2.3159191005787254, - "y": -4773.926243147004, - "color": "red", - "width": 101.94386383726986, - "gateNumber": 37, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -53.509418049849614, - "y": -4892.744625349362, - "color": "blue", - "width": 90.00639132100743, - "gateNumber": 38, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 87.3316962163565, - "y": -5001.3332690131965, - "color": "red", - "width": 101.27441621181337, - "gateNumber": 39, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -104.6683037836435, - "y": -5147.132966774162, - "color": "blue", - "width": 91.58863894699252, - "gateNumber": 40, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 10.892977700952143, - "y": -5300.356269415778, - "color": "red", - "width": 105.70015722135342, - "gateNumber": 41, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -113.0193643138957, - "y": -5460.042796206134, - "color": "blue", - "width": 107.94510386864016, - "gateNumber": 42, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 78.9806356861043, - "y": -5567.3084052104805, - "color": "red", - "width": 100.38101221929891, - "gateNumber": 43, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -113.0193643138957, - "y": -5673.802640325397, - "color": "blue", - "width": 103.28890569876954, - "gateNumber": 44, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -325, - "y": -5788.348904138373, - "color": "red", - "width": 650, - "gateNumber": 46, - "isFinal": true, - "sectorNumber": 3 - } - ], - "records": [ - { "player": "Mathieu Hugas", "date": "2024-04-09T19:29:22.891Z", "timing": 43651.5 }, - { "player": "Emilie Hugas", "date": "2024-04-09T19:31:27.948Z", "timing": 43653.39999985695 } - ] -} diff --git a/src/public/tracks/davos.json b/src/public/tracks/davos.json deleted file mode 100644 index 1c51535..0000000 --- a/src/public/tracks/davos.json +++ /dev/null @@ -1,453 +0,0 @@ -{ - "name": "davos", - "builderVersion": 4, - "style": "GS", - "date": "2024-04-09T19:44:38.234Z", - "gates": [ - { - "x": -60.549073792043096, - "y": -165, - "color": "red", - "width": 107.95628417683842, - "gateNumber": 1, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 131.4509262079569, - "y": -343.6484286402565, - "color": "blue", - "width": 117.09305588265657, - "gateNumber": 2, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -28.54166120163827, - "y": -468.19580658392226, - "color": "red", - "width": 117.36546893618494, - "gateNumber": 3, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 134.46375112329696, - "y": -625.3996593053105, - "color": "blue", - "width": 118.35851370817605, - "gateNumber": 4, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -12.911463112224759, - "y": -802.3174015976499, - "color": "red", - "width": 111.33365371208636, - "gateNumber": 5, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 160.95429653961614, - "y": -946.0908960788756, - "color": "blue", - "width": 114.18813346845577, - "gateNumber": 6, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -31.045703460383862, - "y": -1080.198066378166, - "color": "red", - "width": 114.37876301499783, - "gateNumber": 7, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 99.48934511320775, - "y": -1230.2175985227013, - "color": "blue", - "width": 98.59697905939203, - "gateNumber": 8, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -92.51065488679225, - "y": -1356.09857885292, - "color": "red", - "width": 101.70177583918579, - "gateNumber": 9, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 1.0839952443321452, - "y": -1484.550689394959, - "color": "blue", - "width": 101.88065527024932, - "gateNumber": 10, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -74.0076450954634, - "y": -1685.4275477744345, - "color": "red", - "width": 111.02153412686442, - "gateNumber": 11, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 89.05128724848261, - "y": -1817.673721489432, - "color": "blue", - "width": 104.12376177543936, - "gateNumber": 12, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -101.13660944041214, - "y": -1953.5580384034972, - "color": "red", - "width": 114.21352251963022, - "gateNumber": 13, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 90.86339055958786, - "y": -2125.1705158774, - "color": "blue", - "width": 100.19167415273728, - "gateNumber": 14, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -26.949020588380453, - "y": -2304.8677516511625, - "color": "red", - "width": 117.80285190396462, - "gateNumber": 15, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 66.09421330568463, - "y": -2489.46098568622, - "color": "blue", - "width": 106.10705520841341, - "gateNumber": 16, - "isFinal": false, - "sectorNumber": 1 - }, - { - "x": -125.90578669431537, - "y": -2651.9346680920466, - "color": "red", - "width": 98.74422271598426, - "gateNumber": 17, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 66.09421330568463, - "y": -2803.5131635582807, - "color": "blue", - "width": 113.73277790417256, - "gateNumber": 18, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -125.90578669431537, - "y": -2935.49121285615, - "color": "red", - "width": 118.80269994675447, - "gateNumber": 19, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 66.09421330568463, - "y": -3106.754951712419, - "color": "blue", - "width": 114.42544038665253, - "gateNumber": 20, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -125.90578669431537, - "y": -3239.4407177959333, - "color": "red", - "width": 102.8590033280925, - "gateNumber": 21, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 66.09421330568463, - "y": -3426.222283855732, - "color": "blue", - "width": 105.95744361853079, - "gateNumber": 22, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -13.283940124488868, - "y": -3568.081940079345, - "color": "red", - "width": 113.71057808891575, - "gateNumber": 23, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -71.44198304123658, - "y": -3744.7553901356378, - "color": "blue", - "width": 108.1495562839912, - "gateNumber": 24, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 110.45783622590186, - "y": -3941.2914789440492, - "color": "red", - "width": 114.0505209488843, - "gateNumber": 25, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -81.54216377409814, - "y": -4078.6874175129115, - "color": "blue", - "width": 112.02838027418991, - "gateNumber": 26, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 110.45783622590186, - "y": -4221.508013608808, - "color": "red", - "width": 102.94681426023223, - "gateNumber": 27, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -81.54216377409814, - "y": -4350.608322123767, - "color": "blue", - "width": 108.74787278812752, - "gateNumber": 28, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 40.55486913528092, - "y": -4494.520098739815, - "color": "red", - "width": 116.42357156685266, - "gateNumber": 29, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -151.4451308647191, - "y": -4676.908551635399, - "color": "blue", - "width": 100.90763356098829, - "gateNumber": 30, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 15.434997052588683, - "y": -4801.352191077587, - "color": "red", - "width": 107.645494381267, - "gateNumber": 31, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -60.026198997886624, - "y": -4943.070019676977, - "color": "blue", - "width": 112.54384141014776, - "gateNumber": 32, - "isFinal": false, - "sectorNumber": 2 - }, - { - "x": 131.97380100211336, - "y": -5144.9592403240895, - "color": "red", - "width": 103.35688039966305, - "gateNumber": 33, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -60.02619899788664, - "y": -5275.212241656937, - "color": "blue", - "width": 111.3001033550372, - "gateNumber": 34, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 131.97380100211336, - "y": -5481.891233874316, - "color": "red", - "width": 116.09758860714021, - "gateNumber": 35, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -60.02619899788664, - "y": -5639.271535847859, - "color": "blue", - "width": 97.46037277682123, - "gateNumber": 36, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 74.96632491476865, - "y": -5812.626291132027, - "color": "red", - "width": 102.67505163019564, - "gateNumber": 37, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -117.03367508523135, - "y": -5942.331762466764, - "color": "blue", - "width": 103.67316502652541, - "gateNumber": 38, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 74.96632491476865, - "y": -6103.776310496054, - "color": "red", - "width": 98.42182967515697, - "gateNumber": 39, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -117.03367508523135, - "y": -6295.851112852075, - "color": "blue", - "width": 97.16699606857159, - "gateNumber": 40, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 74.96632491476865, - "y": -6487.1157596096255, - "color": "red", - "width": 115.14531275269368, - "gateNumber": 41, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -117.03367508523135, - "y": -6651.326662828357, - "color": "blue", - "width": 104.15586358473809, - "gateNumber": 42, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 74.96632491476865, - "y": -6789.004578392468, - "color": "red", - "width": 114.93506565441496, - "gateNumber": 43, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -117.03367508523135, - "y": -6974.876388871851, - "color": "blue", - "width": 104.54258491468624, - "gateNumber": 44, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 61.462822785912216, - "y": -7177.749242865332, - "color": "red", - "width": 101.52525696770174, - "gateNumber": 45, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -130.5371772140878, - "y": -7322.702131389835, - "color": "blue", - "width": 101.87717507091719, - "gateNumber": 46, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 61.46282278591221, - "y": -7488.240830464094, - "color": "red", - "width": 118.8443046776583, - "gateNumber": 47, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -130.5371772140878, - "y": -7694.967526851489, - "color": "blue", - "width": 97.17850639270358, - "gateNumber": 48, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -325, - "y": -7832.193968840432, - "color": "red", - "width": 650, - "gateNumber": 50, - "isFinal": true, - "sectorNumber": 3 - } - ], - "records": [ - { "player": "Mathieu Hugas", "date": "2024-04-09T19:48:18.776Z", "timing": 50350.09999990463 }, - { "player": "Emilie Hugas", "date": "2024-04-09T19:49:19.960Z", "timing": 51367.89999985695 } - ] -} diff --git a/src/public/tracks/soelden.json b/src/public/tracks/soelden.json deleted file mode 100644 index 5b2a81f..0000000 --- a/src/public/tracks/soelden.json +++ /dev/null @@ -1,489 +0,0 @@ -{ - "name": "soelden", - "builderVersion": 4, - "style": "GS", - "date": "2024-04-09T19:21:55.161Z", - "gates": [ - { - "x": 65.65532863708354, - "y": -165, - "color": "red", - "width": 99.13357189271618, - "gateNumber": 1, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -57.07027561644736, - "y": -292.3369959201985, - "color": "blue", - "width": 100.20096646638466, - "gateNumber": 2, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 134.92972438355264, - "y": -482.0208801737208, - "color": "red", - "width": 109.34941495552067, - "gateNumber": 3, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -13.879614297147668, - "y": -652.5649863398717, - "color": "blue", - "width": 108.79542331326894, - "gateNumber": 4, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 117.50008931029248, - "y": -801.3491377427836, - "color": "red", - "width": 107.31613537991278, - "gateNumber": 5, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -74.49991068970752, - "y": -959.5983106118067, - "color": "blue", - "width": 106.45319854216442, - "gateNumber": 6, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 117.50008931029248, - "y": -1145.6496694421744, - "color": "red", - "width": 111.51360038499121, - "gateNumber": 7, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -74.49991068970752, - "y": -1270.2322775724826, - "color": "blue", - "width": 117.54173467014525, - "gateNumber": 8, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 49.59067188989103, - "y": -1458.4295958710643, - "color": "red", - "width": 100.99698930145368, - "gateNumber": 9, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -54.298641011491725, - "y": -1648.7134587812945, - "color": "blue", - "width": 112.40958691799753, - "gateNumber": 10, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 122.42105044535319, - "y": -1798.5055575170718, - "color": "red", - "width": 110.43661724954335, - "gateNumber": 11, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -69.57894955464681, - "y": -1927.901810429291, - "color": "blue", - "width": 116.69627123811374, - "gateNumber": 12, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 94.61961786063425, - "y": -2130.228745439394, - "color": "red", - "width": 97.88817161079075, - "gateNumber": 13, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -45.26137035172098, - "y": -2309.757831059875, - "color": "blue", - "width": 109.9407522554182, - "gateNumber": 14, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 91.43862071397774, - "y": -2455.7529509623323, - "color": "red", - "width": 103.67543179354367, - "gateNumber": 15, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -100.56137928602226, - "y": -2617.3094157758183, - "color": "blue", - "width": 103.36280374304263, - "gateNumber": 16, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 10.65158903725327, - "y": -2785.078203368974, - "color": "red", - "width": 113.98521763970852, - "gateNumber": 17, - "isFinal": false, - "sectorNumber": 1 - }, - { - "x": -27.15059954210519, - "y": -2990.929249608913, - "color": "blue", - "width": 106.37258404855858, - "gateNumber": 18, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 61.1950847438179, - "y": -3129.643644114321, - "color": "red", - "width": 105.0680394386385, - "gateNumber": 19, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -130.80491525618208, - "y": -3311.4358499865293, - "color": "blue", - "width": 110.03814384049743, - "gateNumber": 20, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 61.195084743817915, - "y": -3506.72304622571, - "color": "red", - "width": 105.10785816623073, - "gateNumber": 21, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -9.004303092135268, - "y": -3647.340815490101, - "color": "blue", - "width": 111.08037169202687, - "gateNumber": 22, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 18.014878593537226, - "y": -3774.580052705905, - "color": "red", - "width": 112.33332131288286, - "gateNumber": 23, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -173.98512140646278, - "y": -3980.9658779370757, - "color": "blue", - "width": 118.83932861667017, - "gateNumber": 24, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 17.04501503366108, - "y": -4148.8398707769165, - "color": "red", - "width": 108.04488061739943, - "gateNumber": 25, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -49.073217224253504, - "y": -4345.6656837469745, - "color": "blue", - "width": 116.01142869817659, - "gateNumber": 26, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 142.9267827757465, - "y": -4480.78467675102, - "color": "red", - "width": 101.33506899461639, - "gateNumber": 27, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -49.07321722425351, - "y": -4605.507530291302, - "color": "blue", - "width": 118.9430278810992, - "gateNumber": 28, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 142.9267827757465, - "y": -4749.312300236793, - "color": "red", - "width": 109.63395022454537, - "gateNumber": 29, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -49.07321722425351, - "y": -4906.351441814508, - "color": "blue", - "width": 117.19146665748868, - "gateNumber": 30, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 65.38035835786606, - "y": -5043.314924178978, - "color": "red", - "width": 112.82550628039138, - "gateNumber": 31, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -44.17578159018479, - "y": -5205.14458461759, - "color": "blue", - "width": 99.5304690045155, - "gateNumber": 32, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 6.948003797529261, - "y": -5373.208158327787, - "color": "red", - "width": 99.60414878970177, - "gateNumber": 33, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -119.52241169811519, - "y": -5502.185897128081, - "color": "blue", - "width": 117.4532559014225, - "gateNumber": 34, - "isFinal": false, - "sectorNumber": 2 - }, - { - "x": 24.641475295028584, - "y": -5709.422562020068, - "color": "red", - "width": 98.19898600330961, - "gateNumber": 35, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -167.35852470497142, - "y": -5839.7612524709975, - "color": "blue", - "width": 117.29145814001198, - "gateNumber": 36, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 3.061240176355185, - "y": -6026.564960628753, - "color": "red", - "width": 112.75116372187225, - "gateNumber": 37, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -188.9387598236448, - "y": -6227.242306892194, - "color": "blue", - "width": 105.77180910358355, - "gateNumber": 38, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 3.0612401763551986, - "y": -6421.899562011636, - "color": "red", - "width": 113.28031178967858, - "gateNumber": 39, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -13.613562172491717, - "y": -6559.383998874941, - "color": "blue", - "width": 110.37626136067688, - "gateNumber": 40, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 153.54078431072583, - "y": -6713.930496430992, - "color": "red", - "width": 107.57875228501251, - "gateNumber": 41, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -4.444320940846697, - "y": -6868.131747651789, - "color": "blue", - "width": 98.37954372074971, - "gateNumber": 42, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 30.526695970818214, - "y": -7059.29688646657, - "color": "red", - "width": 110.97528359428198, - "gateNumber": 43, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -161.47330402918178, - "y": -7195.0580999752665, - "color": "blue", - "width": 112.99064643492841, - "gateNumber": 44, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 30.526695970818224, - "y": -7315.65637370761, - "color": "red", - "width": 105.43323294278186, - "gateNumber": 45, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -49.295656057117576, - "y": -7461.066912717724, - "color": "blue", - "width": 108.2528104933, - "gateNumber": 46, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 74.44097649770728, - "y": -7659.610347997119, - "color": "red", - "width": 113.63617464773667, - "gateNumber": 47, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -117.55902350229272, - "y": -7789.713791365199, - "color": "blue", - "width": 102.2712014575379, - "gateNumber": 48, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 74.44097649770728, - "y": -7978.698937221064, - "color": "red", - "width": 109.23673756330761, - "gateNumber": 49, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -117.55902350229272, - "y": -8136.501943196948, - "color": "blue", - "width": 97.95650811183833, - "gateNumber": 50, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -144.28735249049967, - "y": -8258.818218956134, - "color": "red", - "width": 97.07822531070808, - "gateNumber": 51, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 28.38696109509962, - "y": -8424.972781589056, - "color": "blue", - "width": 103.73853248800101, - "gateNumber": 52, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -325, - "y": -8596.556637925107, - "color": "red", - "width": 650, - "gateNumber": 54, - "isFinal": true, - "sectorNumber": 3 - } - ], - "records": [ - { "player": "Emilie Hugas", "date": "2024-04-09T19:27:37.311Z", "timing": 48852.10000014305 }, - { "player": "Mathieu Hugas", "date": "2024-04-09T19:26:44.290Z", "timing": 50667.59999990463 } - ] -} diff --git a/src/public/tracks/wengen.json b/src/public/tracks/wengen.json deleted file mode 100644 index 8c099ee..0000000 --- a/src/public/tracks/wengen.json +++ /dev/null @@ -1,462 +0,0 @@ -{ - "name": "wengen", - "builderVersion": 4, - "style": "SG", - "date": "2024-04-09T19:32:34.208Z", - "gates": [ - { - "x": 79.08839201734604, - "y": -246, - "color": "red", - "width": 143.50965510139642, - "gateNumber": 1, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -123.64638753992506, - "y": -488.44715280629146, - "color": "blue", - "width": 119.87316302702123, - "gateNumber": 2, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 86.35361246007494, - "y": -787.2973827794572, - "color": "red", - "width": 141.1090934655659, - "gateNumber": 3, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -109.02860345555177, - "y": -1076.3655797154604, - "color": "blue", - "width": 128.58409056622042, - "gateNumber": 4, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 27.31217586431888, - "y": -1361.4510810203685, - "color": "red", - "width": 122.59341852325791, - "gateNumber": 5, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -182.68782413568113, - "y": -1656.136160660921, - "color": "blue", - "width": 135.75892452963706, - "gateNumber": 6, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 27.312175864318874, - "y": -1920.513197080451, - "color": "red", - "width": 136.1311663609587, - "gateNumber": 7, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -182.68782413568113, - "y": -2199.595117214825, - "color": "blue", - "width": 114.88108333386243, - "gateNumber": 8, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 27.312175864318874, - "y": -2450.0691145484047, - "color": "red", - "width": 114.89821843253128, - "gateNumber": 9, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -182.68782413568113, - "y": -2660.173841599732, - "color": "blue", - "width": 122.14016686071241, - "gateNumber": 10, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 27.312175864318874, - "y": -2938.2120984349226, - "color": "red", - "width": 142.0259520752937, - "gateNumber": 11, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -112.62946787857143, - "y": -3160.083921159896, - "color": "blue", - "width": 143.02930319153768, - "gateNumber": 12, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 0.7372278104490474, - "y": -3418.1495649942203, - "color": "red", - "width": 137.24432674986426, - "gateNumber": 13, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -19.97650619554899, - "y": -3710.218767361778, - "color": "blue", - "width": 142.1905117969802, - "gateNumber": 14, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -229.97650619554898, - "y": -3927.0131438476074, - "color": "red", - "width": 120.13086404559786, - "gateNumber": 15, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -19.97650619554898, - "y": -4174.083036050976, - "color": "blue", - "width": 115.565129093166, - "gateNumber": 16, - "isFinal": false, - "sectorNumber": 1 - }, - { - "x": 188.5326508245485, - "y": -4413.382113172084, - "color": "red", - "width": 121.46785607774079, - "gateNumber": 17, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -17.84722437227017, - "y": -4650.477138323328, - "color": "blue", - "width": 137.48515868200622, - "gateNumber": 18, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 33.904212413460804, - "y": -4876.513350712328, - "color": "red", - "width": 115.3905373851142, - "gateNumber": 19, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -176.0957875865392, - "y": -5171.6062217339695, - "color": "blue", - "width": 131.03901854305747, - "gateNumber": 20, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 33.90421241346081, - "y": -5418.431947251608, - "color": "red", - "width": 133.80035848124285, - "gateNumber": 21, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -63.37107694183809, - "y": -5652.189021435297, - "color": "blue", - "width": 143.2300088483099, - "gateNumber": 22, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 34.59550906924704, - "y": -5887.491170212613, - "color": "red", - "width": 119.90328233285868, - "gateNumber": 23, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -175.40449093075296, - "y": -6138.32946573324, - "color": "blue", - "width": 131.46934478072498, - "gateNumber": 24, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 34.59550906924704, - "y": -6360.743107741298, - "color": "red", - "width": 138.7011663008209, - "gateNumber": 25, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -97.72421162103257, - "y": -6640.685598263205, - "color": "blue", - "width": 127.44604953660075, - "gateNumber": 26, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -251.12160880605134, - "y": -6892.073538744284, - "color": "red", - "width": 126.95543055066847, - "gateNumber": 27, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -325, - "y": -7148.76041854702, - "color": "blue", - "width": 131.88044507087494, - "gateNumber": 28, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -115, - "y": -7447.909081912426, - "color": "red", - "width": 137.82177565805262, - "gateNumber": 29, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 72.250504949036, - "y": -7738.872447634133, - "color": "blue", - "width": 133.57601961341183, - "gateNumber": 30, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -137.74949505096401, - "y": -8001.492316285469, - "color": "red", - "width": 137.03112497341527, - "gateNumber": 31, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 72.25050494903599, - "y": -8272.651691568448, - "color": "blue", - "width": 123.80645732149831, - "gateNumber": 32, - "isFinal": false, - "sectorNumber": 2 - }, - { - "x": -137.74949505096401, - "y": -8473.2869824795, - "color": "red", - "width": 127.367595724847, - "gateNumber": 33, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 72.25050494903599, - "y": -8702.557715086996, - "color": "blue", - "width": 143.54591445615125, - "gateNumber": 34, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -82.46691579610568, - "y": -8976.981866232698, - "color": "red", - "width": 120.84844171822283, - "gateNumber": 35, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 6.322332443521714, - "y": -9182.591599744857, - "color": "blue", - "width": 117.64310721652654, - "gateNumber": 36, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -115.88757565746869, - "y": -9465.911834189556, - "color": "red", - "width": 126.86770566723216, - "gateNumber": 37, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 94.11242434253131, - "y": -9718.755038188936, - "color": "blue", - "width": 131.81749286509415, - "gateNumber": 38, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -115.88757565746869, - "y": -9977.224640523686, - "color": "red", - "width": 140.35841750192455, - "gateNumber": 39, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 59.07692494346857, - "y": -10249.3932476957, - "color": "blue", - "width": 134.6462587380944, - "gateNumber": 40, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -150.92307505653145, - "y": -10479.782485514668, - "color": "red", - "width": 120.9105927769254, - "gateNumber": 41, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 59.076924943468555, - "y": -10778.207114529256, - "color": "blue", - "width": 131.43815324442573, - "gateNumber": 42, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -131.9353982901027, - "y": -11062.115174190405, - "color": "red", - "width": 118.35692561800303, - "gateNumber": 43, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 51.01588280433684, - "y": -11329.599615479436, - "color": "blue", - "width": 130.78830454300268, - "gateNumber": 44, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -158.98411719566315, - "y": -11599.152864108037, - "color": "red", - "width": 130.72111093286594, - "gateNumber": 45, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 51.015882804336854, - "y": -11795.80820303852, - "color": "blue", - "width": 129.65953555326914, - "gateNumber": 46, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -9.95517994389044, - "y": -12006.912271744466, - "color": "red", - "width": 141.04630212430683, - "gateNumber": 47, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 63.96467900435194, - "y": -12222.79790974996, - "color": "blue", - "width": 133.16175318573048, - "gateNumber": 48, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -110.40069451997385, - "y": -12491.753173745508, - "color": "red", - "width": 119.40758366958683, - "gateNumber": 49, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -325, - "y": -12712.116102071246, - "color": "red", - "width": 650, - "gateNumber": 51, - "isFinal": true, - "sectorNumber": 3 - } - ], - "records": [ - { "player": "Emilie Hugas", "date": "2024-04-09T19:35:23.958Z", "timing": 51801.5 }, - { "player": "Mathieu Hugas", "date": "2024-04-09T19:33:27.775Z", "timing": 52017.800000190735 } - ] -} diff --git a/src/public/tracks/zermatt.json b/src/public/tracks/zermatt.json deleted file mode 100644 index f66f672..0000000 --- a/src/public/tracks/zermatt.json +++ /dev/null @@ -1,498 +0,0 @@ -{ - "name": "zermatt", - "builderVersion": 4, - "style": "DH", - "date": "2024-04-09T19:38:41.747Z", - "gates": [ - { - "x": -42.72846396883702, - "y": -285, - "color": "red", - "width": 139.0394186410745, - "gateNumber": 1, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 107.60860367240208, - "y": -547.0533458830923, - "color": "red", - "width": 132.30177553539178, - "gateNumber": 2, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 33.482680744490644, - "y": -813.6691768189007, - "color": "red", - "width": 133.18697993480563, - "gateNumber": 3, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -146.51731925550936, - "y": -1099.6959527061188, - "color": "red", - "width": 132.754960555396, - "gateNumber": 4, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 33.48268074449064, - "y": -1353.0962432043443, - "color": "red", - "width": 140.41416677365933, - "gateNumber": 5, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -79.541366243296, - "y": -1615.8157856406938, - "color": "red", - "width": 128.77159044870118, - "gateNumber": 6, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 21.13111501207314, - "y": -1895.98365608163, - "color": "red", - "width": 142.0944237856736, - "gateNumber": 7, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -158.86888498792686, - "y": -2182.276017007446, - "color": "red", - "width": 137.71580781778258, - "gateNumber": 8, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 21.13111501207314, - "y": -2459.732037101755, - "color": "red", - "width": 143.05602838865005, - "gateNumber": 9, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -158.86888498792686, - "y": -2729.2735707508223, - "color": "red", - "width": 135.7516173721242, - "gateNumber": 10, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 21.13111501207314, - "y": -3044.0773245420346, - "color": "red", - "width": 145.07224585179353, - "gateNumber": 11, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -158.86888498792686, - "y": -3307.0179855641236, - "color": "red", - "width": 135.33079576084802, - "gateNumber": 12, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 21.13111501207314, - "y": -3597.3398077136135, - "color": "red", - "width": 131.161483142442, - "gateNumber": 13, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -158.86888498792686, - "y": -3884.4838802560253, - "color": "red", - "width": 123.18001430459138, - "gateNumber": 14, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 21.13111501207314, - "y": -4182.695716637591, - "color": "red", - "width": 132.2652954154795, - "gateNumber": 15, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -158.86888498792686, - "y": -4491.818823383403, - "color": "red", - "width": 147.94908361353725, - "gateNumber": 16, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 21.13111501207314, - "y": -4746.53146811991, - "color": "red", - "width": 124.91239430676613, - "gateNumber": 17, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -158.86888498792686, - "y": -5017.998077734754, - "color": "red", - "width": 124.4516051469363, - "gateNumber": 18, - "isFinal": false, - "sectorNumber": 1 - }, - { - "x": 4.849085974283202, - "y": -5292.946978315986, - "color": "red", - "width": 125.85868086602943, - "gateNumber": 19, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -104.90267040537844, - "y": -5595.112384228673, - "color": "red", - "width": 137.42930815802072, - "gateNumber": 20, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 75.09732959462156, - "y": -5847.4260465016205, - "color": "red", - "width": 142.81720276697516, - "gateNumber": 21, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -104.90267040537844, - "y": -6115.934674496324, - "color": "red", - "width": 122.12451648600715, - "gateNumber": 22, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 27.679343416608194, - "y": -6427.158125677876, - "color": "red", - "width": 146.04091749862624, - "gateNumber": 23, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -152.3206565833918, - "y": -6715.992500050106, - "color": "red", - "width": 146.2108365845073, - "gateNumber": 24, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -164.48605801633693, - "y": -6974.367603321069, - "color": "red", - "width": 124.5563407717678, - "gateNumber": 25, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 15.513941983663074, - "y": -7233.5100925306015, - "color": "red", - "width": 123.2228476181305, - "gateNumber": 26, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -66.27192067543729, - "y": -7496.96923684427, - "color": "red", - "width": 143.90364682512146, - "gateNumber": 27, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 18.528731208316188, - "y": -7802.1139901640945, - "color": "red", - "width": 134.0343026003748, - "gateNumber": 28, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -161.47126879168383, - "y": -8068.375944718488, - "color": "red", - "width": 141.57722508770468, - "gateNumber": 29, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 18.528731208316174, - "y": -8330.399575182113, - "color": "red", - "width": 128.71542608478003, - "gateNumber": 30, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -159.6576853245885, - "y": -8631.359604050424, - "color": "red", - "width": 138.44036274079008, - "gateNumber": 31, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 20.3423146754115, - "y": -8891.21339987841, - "color": "red", - "width": 143.22817691709938, - "gateNumber": 32, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -159.6576853245885, - "y": -9172.385890050766, - "color": "red", - "width": 145.02315412431454, - "gateNumber": 33, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 20.3423146754115, - "y": -9433.803682719099, - "color": "red", - "width": 138.19661875079424, - "gateNumber": 34, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -43.7205358510476, - "y": -9738.09701940314, - "color": "red", - "width": 137.36080842727836, - "gateNumber": 35, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 49.727519134447746, - "y": -10049.560808862805, - "color": "red", - "width": 121.93352927713032, - "gateNumber": 36, - "isFinal": false, - "sectorNumber": 2 - }, - { - "x": -130.27248086555227, - "y": -10321.573540288284, - "color": "red", - "width": 140.30457779743895, - "gateNumber": 37, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 49.72751913444773, - "y": -10579.84748849852, - "color": "red", - "width": 139.0880922155315, - "gateNumber": 38, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -130.27248086555227, - "y": -10888.573905636622, - "color": "red", - "width": 123.92832670171276, - "gateNumber": 39, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 49.72751913444773, - "y": -11148.607691490099, - "color": "red", - "width": 122.07545291796984, - "gateNumber": 40, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -11.047368056405215, - "y": -11434.858382549668, - "color": "red", - "width": 143.19780474466035, - "gateNumber": 41, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 65.11575851874318, - "y": -11695.62094948033, - "color": "red", - "width": 140.59726288070013, - "gateNumber": 42, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -114.88424148125682, - "y": -11960.327692289895, - "color": "red", - "width": 134.40028311878268, - "gateNumber": 43, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -282.5459688786326, - "y": -12276.956945082022, - "color": "red", - "width": 137.6458899630023, - "gateNumber": 44, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -102.5459688786326, - "y": -12592.213571846922, - "color": "red", - "width": 121.08636323447712, - "gateNumber": 45, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 5.966600942704859, - "y": -12900.516339359694, - "color": "red", - "width": 123.13258532430093, - "gateNumber": 46, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -174.03339905729513, - "y": -13172.191542115936, - "color": "red", - "width": 126.063247671926, - "gateNumber": 47, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 5.966600942704872, - "y": -13432.656569021232, - "color": "red", - "width": 136.51407593285276, - "gateNumber": 48, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -66.13894737568253, - "y": -13714.736468369332, - "color": "red", - "width": 141.66383245805727, - "gateNumber": 49, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 101.42948166738542, - "y": -13970.339953295057, - "color": "red", - "width": 146.37925969924976, - "gateNumber": 50, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -78.57051833261458, - "y": -14252.823859397438, - "color": "red", - "width": 144.18448206476495, - "gateNumber": 51, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": 101.42948166738542, - "y": -14504.831863705062, - "color": "red", - "width": 143.32318758836928, - "gateNumber": 52, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -78.57051833261458, - "y": -14762.574912793352, - "color": "red", - "width": 134.7096799266682, - "gateNumber": 53, - "isFinal": false, - "sectorNumber": 0 - }, - { - "x": -325, - "y": -15064.420755299989, - "color": "red", - "width": 650, - "gateNumber": 55, - "isFinal": true, - "sectorNumber": 3 - } - ], - "records": [ - { "player": "Emilie Hugas", "date": "2024-04-09T19:42:43.076Z", "timing": 50388.59999990463 }, - { "player": "Mathieu Hugas", "date": "2024-04-09T19:41:49.457Z", "timing": 51437 } - ] -} diff --git a/src/resources.ts b/src/resources.ts deleted file mode 100644 index 5f8a3f0..0000000 --- a/src/resources.ts +++ /dev/null @@ -1,98 +0,0 @@ -import { ImageSource, Sound } from 'excalibur'; -import skier from './images/sprites/skier.png'; -import skierCarving from './images/sprites/skier_carving.png'; -import skierSliding from './images/sprites/skier_sliding.png'; -import skierBraking from './images/sprites/skier_braking.png'; - -import globalRecordGhost from './images/sprites/globalRecordGhost.png'; -import globalRecordGhostCarving from './images/sprites/globalRecordGhost_carving.png'; -import globalRecordGhostSliding from './images/sprites/globalRecordGhost_sliding.png'; -import globalRecordGhostBraking from './images/sprites/globalRecordGhost_braking.png'; - -import eventRecordGhost from './images/sprites/eventRecordGhost.png'; -import eventRecordGhostCarving from './images/sprites/eventRecordGhost_carving.png'; -import eventRecordGhostSliding from './images/sprites/eventRecordGhost_sliding.png'; -import eventRecordGhostBraking from './images/sprites/eventRecordGhost_braking.png'; - -import startingGate from './images/sprites/starting_gate.png'; -import startingHouse from './images/sprites/starting_house.png'; -import poleRed from './images/sprites/pole_red.png'; -import poleBlue from './images/sprites/pole_blue.png'; -import poleSlRed from './images/sprites/pole_sl_red.png'; -import poleSlBlue from './images/sprites/pole_sl_blue.png'; -import poleCheckRed from './images/sprites/pole_check_red.png'; -import poleCheckBlue from './images/sprites/pole_check_blue.png'; -import finalGate from './images/sprites/final_gate.png'; - -import spectator1 from './images/sprites/spectator_1.png'; -import spectator2 from './images/sprites/spectator_2.png'; -import spectator3 from './images/sprites/spectator_3.png'; -import spectator4 from './images/sprites/spectator_4.png'; - -import winterSound from './sounds/winter.mp3'; -import startRaceSound from './sounds/start_race.mp3'; -import finishRaceSound from './sounds/finish_race.mp3'; -import gateMissedSound from './sounds/gate_missed.mp3'; -import poleHittingSound from './sounds/pole_hitting.mp3'; -import turningSound from './sounds/turning.mp3'; -import spectators from './sounds/spectators.mp3'; -import spectators2Sound from './sounds/spectators2.mp3'; -import spectators3Sound from './sounds/spectators3.mp3'; -import spectators4Sound from './sounds/spectators4.mp3'; -import spectatorsIntenseSound from './sounds/spectators_intense.mp3'; -import spectatorHitSound from './sounds/spectator_hit.mp3'; -import spectatorHit2Sound from './sounds/spectator_hit2.mp3'; -import spectatorHit3Sound from './sounds/spectator_hit3.mp3'; -import spectatorsBellsSound from './sounds/spectators_bells.mp3'; -import spectatorsBells2Sound from './sounds/spectators_bells2.mp3'; - -const Resources = { - Skier: new ImageSource(skier), - SkierCarving: new ImageSource(skierCarving), - SkierSliding: new ImageSource(skierSliding), - SkierBraking: new ImageSource(skierBraking), - - GlobalGhostSkier: new ImageSource(globalRecordGhost), - GlobalGhostSkierCarving: new ImageSource(globalRecordGhostCarving), - GlobalGhostSkierSliding: new ImageSource(globalRecordGhostSliding), - GlobalGhostSkierBraking: new ImageSource(globalRecordGhostBraking), - - EventRecordGhost: new ImageSource(eventRecordGhost), - EventRecordGhostCarving: new ImageSource(eventRecordGhostCarving), - EventRecordGhostSliding: new ImageSource(eventRecordGhostSliding), - EventRecordGhostBraking: new ImageSource(eventRecordGhostBraking), - - StartingGate: new ImageSource(startingGate), - StartingHouse: new ImageSource(startingHouse), - PoleRed: new ImageSource(poleRed), - PoleBlue: new ImageSource(poleBlue), - PoleSlRed: new ImageSource(poleSlRed), - PoleSlBlue: new ImageSource(poleSlBlue), - PoleCheckRed: new ImageSource(poleCheckRed), - PoleCheckBlue: new ImageSource(poleCheckBlue), - FinalGate: new ImageSource(finalGate), - - Spectator1: new ImageSource(spectator1), - Spectator2: new ImageSource(spectator2), - Spectator3: new ImageSource(spectator3), - Spectator4: new ImageSource(spectator4), - - WinterSound: new Sound(winterSound), - FinishRaceSound: new Sound(finishRaceSound), - StartRaceSound: new Sound(startRaceSound), - GateMissedSound: new Sound(gateMissedSound), - PoleHittingSound: new Sound(poleHittingSound), - TurningSound: new Sound(turningSound), - SpectatorsSound: new Sound(spectators), - Spectators2Sound: new Sound(spectators2Sound), - Spectators3Sound: new Sound(spectators3Sound), - Spectators4Sound: new Sound(spectators4Sound), - SpectatorsIntenseSound: new Sound(spectatorsIntenseSound), - SpectatorHitSound: new Sound(spectatorHitSound), - SpectatorHit2Sound: new Sound(spectatorHit2Sound), - SpectatorHit3Sound: new Sound(spectatorHit3Sound), - SpectatorsBellsSound: new Sound(spectatorsBellsSound), - SpectatorsBells2Sound: new Sound(spectatorsBells2Sound), -}; - -export { Resources }; diff --git a/src/scenes/event-manager.ts b/src/scenes/event-manager.ts deleted file mode 100644 index b2f1c57..0000000 --- a/src/scenes/event-manager.ts +++ /dev/null @@ -1,199 +0,0 @@ -import { Engine, Scene, SceneActivationContext } from 'excalibur'; -import { EventConfig } from '../models/event-config'; -import { RaceResult } from '../models/race-result'; -import { format } from 'date-fns'; -import { Config } from '../config'; -import { TrackManager } from '../utils/track-manager'; -import { Game } from '../game'; -import { Race } from './race'; - -export class EventManager extends Scene { - private eventConfig!: EventConfig; - private trackManager!: TrackManager; - - private eventManagerUi = document.getElementById('event-manager')!; - private backButtonUi = document.getElementById('back-to-setup-button')!; - private skier1Label = document.getElementById('skier-1-label')!; - private skier2Label = document.getElementById('skier-2-label')!; - private lastResultsContainer = document.getElementById('last-results-container')!; - private actualRankingContainer = document.getElementById('actual-ranking-container')!; - private nextRacesContainer = document.getElementById('next-races-container')!; - private startRaceButton = document.getElementById('start-race-button')! as HTMLButtonElement; - - constructor(engine: Engine) { - super(); - this.engine = engine; - this.listenAction(); - this.listenBackButtonClicked(); - } - - onActivate( - _context: SceneActivationContext<{ eventConfig?: EventConfig; raceResult?: RaceResult }>, - ): void { - this.trackManager = (this.engine as Game).trackManager; - if (_context.data?.eventConfig) { - this.eventConfig = _context.data?.eventConfig!; - } - - if (_context.data?.raceResult) { - this.eventConfig.updateRaceResult(_context.data.raceResult); - } - - this.prepareManager(this.eventConfig); - } - - onDeactivate(_context: SceneActivationContext): void { - this.cleanManager(); - } - - onPreUpdate(engine: Engine): void { - if ( - (engine as Game).gamepadsManager.wasButtonPressed(Config.GAMEPAD_START_BUTTON) && - this.eventConfig?.getNextRace() - ) { - this.startRace(); - } - } - - public prepareManager(eventConfig: EventConfig): void { - this.eventConfig = eventConfig; - this.startRaceButton.innerText = this.eventConfig.getNextRace() ? 'Race' : 'Back to menu'; - this.eventManagerUi.style.display = 'flex'; - this.skier1Label.innerText = eventConfig.skier1Name; - this.skier2Label.innerText = eventConfig.skier2Name; - this.lastResultsContainer.innerHTML = - this.prepareLastResultsTable(eventConfig) || - '
No result for the moment
'; - this.actualRankingContainer.innerHTML = - this.prepareActualRankingTable(eventConfig) || - '
No ranking for the moment
'; - this.nextRacesContainer.innerHTML = - this.prepareNextRacesTable(eventConfig) || '
No race to come
'; - (this.engine as Game).gameSetupManager.showGameSetupButton(); - } - - public cleanManager(): void { - this.eventManagerUi.style.display = 'none'; - this.startRaceButton.removeEventListener('click', () => {}); - } - - private listenBackButtonClicked(): void { - this.backButtonUi.addEventListener('click', () => { - this.backToMenu(); - }); - } - - private startRace(): void { - (this.engine as Game).gameSetupManager.hideGameSetupButton(); - this.engine.addScene('race', new Race(this.engine)); - this.engine.goToScene('race', { - eventId: this.eventConfig.eventId, - raceConfig: this.eventConfig.getNextRace(), - }); - } - - private prepareLastResultsTable(eventConfig: EventConfig): string { - return eventConfig.racesResults - .filter(raceResult => raceResult.isStarted()) - .map(raceResult => { - const skier1RecordPosition = raceResult.skier1Timing - ? ` (${this.trackManager.getRecordPosition( - raceResult.trackName, - raceResult.skier1Timing, - )})` - : ''; - const skier2RecordPosition = raceResult.skier2Timing - ? ` (${this.trackManager.getRecordPosition( - raceResult.trackName, - raceResult.skier2Timing, - )})` - : ''; - - return `
-
Race ${raceResult.raceNumber}
-
${raceResult.getFullTrackName()}
-
${ - raceResult.skier1Timing ? format(raceResult.skier1Timing, Config.FORMAT_TIMING) : '' - }${skier1RecordPosition}
-
${ - raceResult.isCompleted() - ? `(${format( - Math.abs(raceResult.skier1Timing! - raceResult.skier2Timing!), - Config.FORMAT_TIMING, - )})` - : '' - }
-
${ - raceResult.skier2Timing ? format(raceResult.skier2Timing, Config.FORMAT_TIMING) : '' - }${skier2RecordPosition}
-
`; - }) - .join(''); - } - - private prepareActualRankingTable(eventConfig: EventConfig): string { - const rankings = eventConfig.getActualRankings(); - return rankings - .filter(ranking => ranking.time > 0) - .map((ranking, index) => { - return ` -
-
${index + 1}
-
${ranking.skierName}
-
${ranking.victories}
-
${format(ranking.time, Config.FORMAT_TIMING)}
-
${ - index > 0 - ? `+ ${format(Math.abs(ranking.time - rankings[0].time), Config.FORMAT_TIMING)}` - : '' - }
-
- `; - }) - .join(''); - } - - private prepareNextRacesTable(eventConfig: EventConfig): string { - return eventConfig.racesResults - .filter(raceResult => !raceResult.isCompleted()) - .map((raceResult, index) => { - let trackRecord = `${this.trackManager.getRecord(eventConfig.trackName) || ''}`; - trackRecord = trackRecord ? format(+trackRecord, Config.FORMAT_TIMING) : ''; - let result = ''; - if (!raceResult.skier1Timing) { - result += ` -
-
Race ${raceResult.raceNumber}
-
${raceResult.getFullTrackName()}
-
${raceResult.skier1Name}
-
${trackRecord}
-
`; - } - if (!raceResult.skier2Timing) { - result += ` -
-
Race ${raceResult.raceNumber}
-
${raceResult.getFullTrackName()}
-
${raceResult.skier2Name}
-
${trackRecord}
-
`; - } - return result; - }) - .join(''); - } - - private backToMenu(): void { - this.engine.goToScene('eventSetup'); - } - - private listenAction(): void { - this.startRaceButton.addEventListener('click', () => { - if (this.eventConfig?.getNextRace()) { - this.startRace(); - } else { - this.backToMenu(); - } - }); - } -} diff --git a/src/scenes/event-setup.ts b/src/scenes/event-setup.ts deleted file mode 100644 index b259302..0000000 --- a/src/scenes/event-setup.ts +++ /dev/null @@ -1,125 +0,0 @@ -import { Engine, Scene, SceneActivationContext } from 'excalibur'; -import { EventConfig } from '../models/event-config'; -import { Game } from '../game'; -import { TrackStyles } from '../models/track-styles.enum'; -import { Config } from '../config'; - -import { Subject, debounceTime, tap } from 'rxjs'; -import { StorageManager } from '../utils/storage-manager'; - -export class EventSetup extends Scene { - private backButtonUi = document.getElementById('back-to-welcome-button')!; - private raceSetupUi = document.getElementById('event-setup')!; - private trackInput = document.getElementById('track-input')! as HTMLInputElement; - private trackStyleSelect = document.getElementById('track-style-select')! as HTMLInputElement; - private skier1Input = document.getElementById('skier-1-input')! as HTMLInputElement; - private skier2Input = document.getElementById('skier-2-input')! as HTMLInputElement; - private racesNumberInput = document.getElementById('races-number-input')! as HTMLInputElement; - private setupCompletedButton = document.getElementById('setup-completed-button')! as HTMLButtonElement; - - private trackNameChanged = new Subject(); - - constructor(engine: Engine) { - super(); - this.engine = engine; - this.listenSetupCompleted(); - this.listenTrackInput(); - this.listenBackButtonClicked(); - } - - onActivate(_context: SceneActivationContext): void { - this.prepareRaceSetup(); - } - - onDeactivate(_context: SceneActivationContext): void { - this.cleanRaceSetup(); - } - - onPreUpdate(engine: Engine): void { - if ((engine as Game).gamepadsManager.wasButtonPressed(Config.GAMEPAD_START_BUTTON)) { - this.completeSetup(); - } - } - - private prepareRaceSetup(): void { - this.loadSetup(); - this.raceSetupUi.style.display = 'flex'; - (this.engine as Game).gameSetupManager.showGameSetupButton(); - this.selectTrack(this.trackInput.value); - } - - private cleanRaceSetup(): void { - this.raceSetupUi.style.display = 'none'; - } - - private listenBackButtonClicked(): void { - this.backButtonUi.addEventListener('click', () => { - (this.engine as Game).welcomeUiManager.showWelcomeUi(); - }); - } - - private listenSetupCompleted(): void { - this.setupCompletedButton.addEventListener('click', () => { - this.completeSetup(); - }); - } - - private listenTrackInput(): void { - this.trackNameChanged - .pipe( - debounceTime(200), - tap(trackName => this.selectTrack(trackName)), - ) - .subscribe(); - - this.trackInput.addEventListener('input', event => { - this.trackNameChanged.next((event.target as HTMLInputElement).value); - }); - } - - private completeSetup(): void { - const trackName = this.trackInput.value.toLowerCase() || Config.DEFAULT_TRACKS[0]; - const trackStyle = this.trackStyleSelect.value as TrackStyles; - const skier1Name = this.skier1Input.value || 'Skier 1'; - const skier2Name = this.skier2Input.value || 'Skier 2'; - const numberOfRaces = +this.racesNumberInput.value || 1; - - const eventConfig = new EventConfig( - trackName, - (this.engine as Game).trackManager.getTrackStyle(trackName) || trackStyle, - skier1Name, - skier2Name !== skier1Name ? skier2Name : `${skier2Name} 2`, - numberOfRaces, - ); - this.persistSetup(skier1Name, skier2Name); - this.cleanEventGhost(); - this.engine.goToScene('eventManager', { eventConfig: eventConfig }); - } - - private cleanEventGhost(): void { - localStorage.removeItem('event_ghost'); - } - - private loadSetup(): void { - const skier1 = localStorage.getItem('setup_skier1'); - const skier2 = localStorage.getItem('setup_skier2'); - this.skier1Input.value = skier1 || ''; - this.skier2Input.value = skier2 || ''; - } - - private persistSetup(skier1: string, skier2: string) { - StorageManager.save('setup_skier1', skier1); - StorageManager.save('setup_skier2', skier2); - } - - private selectTrack(trackName: string): void { - const track = (this.engine as Game).trackManager.getTrackFromLocalStorage(trackName); - - if (track) { - this.trackStyleSelect.value = track.style; - this.trackStyleSelect.disabled = true; - } else { - this.trackStyleSelect.disabled = false; - } - } -} diff --git a/src/scenes/race.ts b/src/scenes/race.ts deleted file mode 100644 index 465a3d4..0000000 --- a/src/scenes/race.ts +++ /dev/null @@ -1,395 +0,0 @@ -import { Actor, Engine, Scene, SceneActivationContext, Timer, vec } from 'excalibur'; -import { Skier } from '../actors/skier'; -import { Gate } from '../actors/gate'; -import { RaceUiManager } from '../utils/race-ui-manager'; -import { Game } from '../game'; -import { Config } from '../config'; -import { StockableRecord } from '../models/stockable-record'; -import { EventRaceResult } from '../models/event-race-result'; -import { RaceResult } from '../models/race-result'; -import { Resources } from '../resources'; -import { TrackStyles } from '../models/track-styles.enum'; -import { SkierConfig } from '../models/skier-config'; -import { Track } from '../models/track'; -import { SkierPositioning } from '../models/skier-positioning'; -import { SkierActions } from '../models/skier-actions.enum'; -import { SkierGraphics } from '../utils/skier-graphics'; -import { StockableGhost } from '../models/stockable-ghost'; -import { TimedSector } from '../models/timed-sector'; -import { StartingHouse } from '../actors/starting-house'; -import { TouchManager } from '../utils/touch-manager'; -import { StorageManager } from '../utils/storage-manager'; -import { SpectatorGroup } from '../actors/spectator-group'; - -export class Race extends Scene { - public skier?: Skier; - public touchManager: TouchManager; - - private uiManager = new RaceUiManager(); - private uiTimer = new Timer({ - interval: 60, - repeats: true, - fcn: () => { - this.updateRacingUi(); - }, - }); - - private raceConfig?: EventRaceResult; - private track?: Track; - private skierCameraGhost?: Actor; - private skierPositions: SkierPositioning[] = []; - private gates: Gate[] = []; - private startingHouse?: StartingHouse; - private startTime?: number; - private endTime?: number; - private timedSectors: TimedSector[] = []; - private result?: RaceResult; - - // Ghost - private globalRecordGhostDatas?: StockableGhost; - private globalRecordGhost?: Actor; - private eventRecordGhostDatas?: StockableGhost; - private eventRecordGhost?: Actor; - - constructor(engine: Engine) { - super(); - this.engine = engine; - this.touchManager = new TouchManager(engine); - - this.listenBackToEventManagerClicked(); - } - - onPreUpdate(_engine: Engine, _delta: number): void { - if (this.skier?.racing) { - if ( - _engine.input.keyboard.wasPressed(Config.KEYBOARD_RESTART_KEY) || - (_engine as Game).gamepadsManager.wasButtonPressed(Config.GAMEPAD_EXIT_BUTTON) - ) { - this.returnToEventManager(); - } - - this.updateSkierCameraGhost(); - this.saveSkierPosition(); - this.updateGhostsPosition(); - } else if (this.skier?.finish && this.result) { - if ((_engine as Game).gamepadsManager.wasButtonPressed(Config.GAMEPAD_START_BUTTON)) { - this.returnToEventManager(this.result); - } - } - } - - onActivate(_context: SceneActivationContext<{ eventId: string; raceConfig: EventRaceResult }>): void { - if (_context.data?.raceConfig) { - this.raceConfig = _context.data.raceConfig; - this.uiManager.buildUi(this.raceConfig.getFullTrackName()); - this.prepareRace( - this.raceConfig.trackName, - this.raceConfig.trackStyle, - this.raceConfig.getNextSkierName()!, - ); - } else { - this.returnToEventManager(); - } - } - - onDeactivate(_context: SceneActivationContext): void { - this.cleanRace(); - } - - public setupCamera(): void { - this.camera.strategy.elasticToActor(this.skierCameraGhost!, 0.12, 0.2); - this.camera.zoom = Config.CAMERA_ZOOM; - } - - public startRace(): void { - this.uiManager.hideGhostsUi(); - this.uiManager.displayRacingUi(); - this.startTime = this.engine.clock.now(); - this.uiTimer.start(); - this.listenStopRaceEvent(); - this.skier!.startRace(); - (this.engine as Game).soundPlayer.playSound(Resources.StartRaceSound, 0.3); - this.startingHouse?.openGate(); - } - - public stopRace(): void { - this.endTime = this.engine.clock.now(); - this.skier!.finishRace(); - this.uiTimer.stop(); - const timing = this.endTime - this.startTime!; - - this.globalRecordGhost?.kill(); - this.eventRecordGhost?.kill(); - - const missedGates = this.gates.filter(gate => !gate.passed).length; - this.result = new RaceResult( - this.raceConfig?.raceNumber!, - this.skier?.skierName!, - new Date(), - timing, - ); - const globalResult = (this.engine as Game).trackManager.saveRecord( - this.raceConfig!.trackName, - new StockableRecord(this.result), - ); - - if (globalResult?.position === 1) { - const eventRecordGhostDatas = new StockableGhost( - new Date(), - this.raceConfig!.eventId, - this.raceConfig!.trackName, - this.track!.builderVersion, - this.raceConfig!.trackStyle, - this.skier!.skierName, - timing, - this.timedSectors, - this.skierPositions, - ); - this.updateGlobalRecordGhost(eventRecordGhostDatas); - } - - if (!this.eventRecordGhostDatas || timing < this.eventRecordGhostDatas.totalTime!) { - const eventRecordGhostDatas = new StockableGhost( - new Date(), - this.raceConfig!.eventId, - this.raceConfig!.trackName, - this.track!.builderVersion, - this.raceConfig!.trackStyle, - this.skier!.skierName, - timing, - this.timedSectors, - this.skierPositions, - ); - this.updateEventRecordGhost(eventRecordGhostDatas); - } - - if (globalResult) { - this.uiManager.displayResultUi(globalResult, missedGates); - } - - this.uiManager.backToManagerButton.addEventListener( - 'click', - () => this.returnToEventManager(this.result), - { once: true }, - ); - - (this.engine as Game).soundPlayer.playSound(Resources.FinishRaceSound, Config.FINISH_SOUND_VOLUME); - } - - public addPenalty(): void { - this.startTime! -= Config.MISSED_GATE_PENALTY_TIME; - (this.engine as Game).soundPlayer.playSound( - Resources.GateMissedSound, - Config.GATE_MISSED_SOUND_VOLUME, - ); - this.uiManager.flashTimer(this.engine); - } - - public setSector(sectorNumber: number): void { - const timeSector = new TimedSector(sectorNumber, this.engine.clock.now() - this.startTime!); - this.timedSectors.push(timeSector); - this.displaySectorDifference(timeSector); - } - - public updateSkierCameraGhost(): void { - this.skierCameraGhost!.pos = vec(0, this.skier!.pos.y + Config.FRONT_GHOST_DISTANCE); - } - - public returnToEventManager(raceResult?: RaceResult): void { - Resources.FinishRaceSound.stop(); - this.killActors(); - this.engine.goToScene('eventManager', raceResult ? { raceResult: raceResult } : {}); - this.engine.removeScene('race'); - } - - private listenBackToEventManagerClicked(): void { - this.uiManager.backToEventButton.addEventListener('click', () => this.returnToEventManager(), { - once: true, - }); - } - - private displaySectorDifference(timedSector: TimedSector): void { - const skierSectorTime = timedSector.time; - const globalRecordSectorTime = this.globalRecordGhostDatas?.getSectorTime(timedSector.sectorNumber); - const eventRecordSectorTime = this.eventRecordGhostDatas?.getSectorTime(timedSector.sectorNumber); - if (globalRecordSectorTime || eventRecordSectorTime) { - this.uiManager.displayGhostSectorTiming( - this.engine, - skierSectorTime, - globalRecordSectorTime, - eventRecordSectorTime, - ); - } - } - - private saveSkierPosition(): void { - this.skierPositions?.push( - new SkierPositioning( - this.skier!.pos.x, - this.skier!.pos.y, - this.skier!.rotation, - this.skier!.getSkierCurrentAction(this.engine), - ), - ); - } - - private updateGhostsPosition(): void { - if (this.globalRecordGhost && this.globalRecordGhostDatas?.positions?.length) { - this.updateGhostPosition(this.globalRecordGhost, this.globalRecordGhostDatas.positions, 'global'); - } - if (this.eventRecordGhost && this.eventRecordGhostDatas?.positions?.length) { - this.updateGhostPosition(this.eventRecordGhost, this.eventRecordGhostDatas.positions, 'event'); - } - } - - private updateGhostPosition(ghost: Actor, positions: SkierPositioning[], type: 'global' | 'event'): void { - const position = positions.splice(0, 1)[0]; - if ((this.engine as Game).gameSetupManager.getGameSetup().ghosts) { - ghost.pos = vec(position.x, position.y); - ghost.rotation = position.rotation; - this.updateGhostGraphics(ghost, position.action, type); - } else { - ghost.graphics.visible = false; - } - } - - private updateGhostGraphics(ghost: Actor, action: SkierActions, type: 'global' | 'event'): void { - if (!ghost.graphics.visible) { - ghost.graphics.visible = true; - } - const graphic = SkierGraphics.getSpriteForAction( - type === 'global' ? 'globalRecordGhost' : 'eventRecordGhost', - action, - ); - ghost.graphics.use(graphic.sprite); - ghost.graphics.flipHorizontal = !!graphic.flipHorizontal; - } - - private prepareRace(trackName: string, askedTrackStyle: TrackStyles, skierName: string): void { - this.addTimer(this.uiTimer); - this.track = this.buildTrack(trackName, askedTrackStyle); - this.skier = new Skier(skierName, this.getSkierConfig(this.track.style)); - this.add(this.skier); - this.startingHouse = new StartingHouse(); - this.add(this.startingHouse); - - if ((this.engine as Game).gameSetupManager.getGameSetup().spectators) { - this.buildSpectatorGroups(this.track.gates); - } - - this.skierCameraGhost = new Actor({ - width: 1, - height: 1, - pos: vec(this.skier.pos.x, this.skier.pos.y + Config.FRONT_GHOST_DISTANCE), - }); - this.setupCamera(); - this.add(this.skierCameraGhost); - - const globalRecordGhostJson = localStorage.getItem(`ghost_${this.track.name}`); - const globalRecordGhostDatas: StockableGhost | null = globalRecordGhostJson - ? Object.assign(new StockableGhost(), JSON.parse(globalRecordGhostJson)) - : null; - if (globalRecordGhostDatas && globalRecordGhostDatas.trackVersion === this.track.builderVersion) { - this.globalRecordGhostDatas = globalRecordGhostDatas; - this.globalRecordGhost = new Actor({ width: 30, height: 50, pos: vec(0, 0) }); - this.add(this.globalRecordGhost); - } - const eventRecordGhostJson = localStorage.getItem('event_ghost'); - const eventRecordGhostDatas: StockableGhost | null = eventRecordGhostJson - ? Object.assign(new StockableGhost(), JSON.parse(eventRecordGhostJson)) - : null; - if (eventRecordGhostDatas) { - this.eventRecordGhostDatas = eventRecordGhostDatas; - if (this.eventRecordGhostDatas?.totalTime !== this.globalRecordGhostDatas?.totalTime) { - this.eventRecordGhost = new Actor({ width: 30, height: 50, pos: vec(0, 0) }); - this.add(this.eventRecordGhost); - } - } - - this.uiManager.displayGhostsTiming( - this.globalRecordGhostDatas?.totalTime, - this.eventRecordGhostDatas?.totalTime, - ); - (this.engine as Game).soundPlayer.playSound( - Resources.WinterSound, - Config.RACE_AMBIANCE_SOUND_VOLUME, - true, - ); - } - - private cleanRace(): void { - this.startTime = undefined; - this.endTime = undefined; - this.uiManager.hideUi(); - this.gates = []; - this.raceConfig = undefined; - this.track = undefined; - (this.engine as Game).soundPlayer.stopSound(Resources.WinterSound); - (this.engine as Game).soundPlayer.stopSound(Resources.TurningSound); - this.clear(); - } - - private killActors(): void { - for (const actor of this.actors) { - actor.kill(); - } - } - - private buildSpectatorGroups(gates: Gate[]): void { - for (const gate of gates.filter(g => !g.isFinalGate)) { - const hasSpectatorGroup = Math.random() <= 0.2; - - if (hasSpectatorGroup) { - const xPosition = Config.DISPLAY_WIDTH / 2; - const left = Math.random() < 0.5; - - const group = new SpectatorGroup( - this.engine, - vec(left ? -xPosition : xPosition - Config.DISPLAY_MIN_MARGIN, gate.pos.y), - 3 + ~~(Math.random() * Config.SPECTATORS_MAX_DENSITY), - left ? 'left' : 'right', - ); - - this.add(group); - } - } - } - - private updateGlobalRecordGhost(ghostDatas: StockableGhost): void { - StorageManager.save(`ghost_${ghostDatas.trackName}`, JSON.stringify(ghostDatas)); - } - - private updateEventRecordGhost(ghostDatas: StockableGhost): void { - StorageManager.save('event_ghost', JSON.stringify(ghostDatas)); - } - - private listenStopRaceEvent(): void { - this.gates?.find(gate => gate.isFinalGate)!.on('stoprace', () => this.stopRace()); - } - - private updateRacingUi(): void { - this.uiManager.updateRacingUi(this.skier!.speed, this.engine.clock.now() - this.startTime!); - } - - private buildTrack(trackName: string, trackStyle: TrackStyles): Track { - const track = (this.engine as Game).trackManager.loadTrack(trackName, trackStyle); - for (const gate of track.gates) { - this.gates?.push(gate); - this.add(gate); - } - return track; - } - - private getSkierConfig(trackStyle: TrackStyles): SkierConfig { - if (trackStyle === TrackStyles.SL) { - return Config.SL_SKIER_CONFIG; - } - if (trackStyle === TrackStyles.GS) { - return Config.GS_SKIER_CONFIG; - } - if (trackStyle === TrackStyles.SG) { - return Config.SG_SKIER_CONFIG; - } - return Config.DH_SKIER_CONFIG; - } -} diff --git a/src/scss/game.scss b/src/scss/game.scss deleted file mode 100644 index 9a77f5c..0000000 --- a/src/scss/game.scss +++ /dev/null @@ -1,715 +0,0 @@ -@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap'); - -$background: #b0d4dd; -$primary: #4a8291; -$primaryA100: #4a8291ce; -$primarySemi: #4c829087; -$accent: #3d3378; -$greenLine: #6aff9091; -$text: white; -$textA100: #ffffffce; -$secondary-text: #cecece; -$lineBackground: #ffffff29; -$tableBackground: #ffffff0a; -$errorSemi: #f5090987; - -$globalGhostA100: #EA19D540; -$globalGhost: #65005b; -$eventGhostA100: #1951ea40; -$eventGhost: #201d9c; - -$greenSectorA100: #43EA1940; -$greenSector: #128f00; -$redSectorA100: #bb0f0f40; -$redSector: #960909; - -html body { - padding: 0; - margin: 0; - font-family: 'Inter', sans-serif; - color: $primary; -} - -.ui-container { - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - height: 100dvh; - width: 100vw; - background-color: $background; - overflow: hidden; - - .hud-container { - display: flex; - justify-content: center; - position: relative; - border-radius: 10px; - overflow: hidden; - max-width: 100%; - - @media only screen and (max-width: 800px) { - border-radius: 0; - } - - #back-to-welcome-button, - #back-to-setup-button { - cursor: pointer; - margin-right: .5rem; - } - - .actions-toolbar { - position: absolute; - right: 0; - width: 200px; - padding: 1rem; - gap: 1rem; - display: flex; - align-items: center; - justify-content: flex-end; - color: $text; - z-index: 10; - - #game-setup-button { - cursor: pointer; - display: none; - } - } - - .dialog { - display: flex; - flex-direction: column; - padding-bottom: 1rem; - width: calc(100% - 2rem); - height: calc(100% - 2rem); - padding: 1rem; - border: none; - color: $text; - background-color: $primary; - - .dialog-content { - overflow: hidden; - flex: 1 1 auto; - padding: 1rem; - overflow-y: auto; - } - - .dialog-actions { - padding: 1rem; - } - } - - #welcome { - display: none; - position: absolute; - width: 100%; - height: 100%; - z-index: 2; - - .title { - font-size: 1.3rem; - margin-bottom: 0; - padding: .5rem; - } - - .section-title { - font-size: 1rem; - padding: .5rem; - background-color: $lineBackground; - border-radius: 4px; - margin-bottom: .5rem; - } - - .section-subtitle { - font-size: 0.9srem; - padding: .3rem .6rem; - background-color: $tableBackground; - } - - p { - margin-top: 0; - line-height: 1.5rem; - font-size: 0.8rem; - padding: 0 .7rem; - - a, - a.focus, - a.active, - a.visited { - color: white; - padding: 0.4rem; - background-color: $accent; - border-radius: 4px; - text-decoration: none; - font-size: 0.7rem; - } - } - - small { - font-size: 0.7rem; - } - - ol, ul { - padding-top: 0; - padding-bottom: 0; - margin: 0; - font-size: 0.8rem; - line-height: 1.1rem; - - strong { - font-weight: 400; - } - - li { - margin-bottom: .4rem; - } - } - - .table-container { - width: 100%; - overflow-x: auto; - - table { - width: 100%; - text-align: left; - background-color: $tableBackground; - border-radius: 4px; - padding: 0 .5rem; - margin-bottom: 1rem; - - th { - font-size: .9rem; - padding: .5rem 0; - font-weight: inherit; - min-width: 120px; - background: none; - - &.controls { - width: 120px; - } - } - - td { - font-size: 0.8rem; - } - } - } - } - - #game-setup { - display: none; - width: 100%; - height: 100%; - background-color: rgba(0,0,0,0.8); - position: absolute; - align-items: center; - justify-content: center; - overflow-y: auto; - z-index: 11; - - .dialog { - background-color: $accent; - opacity: 1; - width: 300px; - max-width: 90vw; - height: 350px; - max-height: 90vh; - border-radius: 10px; - - .title { - margin-bottom: 1rem; - } - - .dialog-content { - font-size: 1.2rem; - display: flex; - flex-direction: column; - gap: 1rem; - - .form-line { - display: flex; - flex-shrink: 0; - gap: 1rem; - flex-wrap: wrap; - justify-content: space-between; - align-items: center; - overflow: hidden; - - button { - margin-top: 1rem; - border-radius: 4px; - padding: .5rem; - font-size: .8rem; - background-color: $redSector !important; - color: $textA100; - } - - input { - cursor: pointer; - height: 1.5rem; - width: 1.5rem; - } - } - } - - .dialog-actions { - button { - font-size: 1.2rem; - color: $textA100 !important; - background-color: $primary !important; - } - } - } - } - - #event-setup { - display: none; - position: absolute; - width: 100%; - height: 100%; - align-items: center; - justify-content: center; - - .dialog { - font-size: 1.3rem; - - - .title { - margin-bottom: 2rem; - } - - .dialog-content { - font-size: 1.7rem; - display: flex; - flex-direction: column; - gap: 1rem; - - .form-line { - display: flex; - flex-shrink: 0; - gap: 1rem; - flex-wrap: wrap; - justify-content: space-between; - align-items: center; - overflow: hidden; - - .label { - min-width: 350px; - } - } - } - } - - select, - input, - input:active, - input:focus { - display: flex; - flex: 1 1 auto; - font-size: 1.3rem; - padding: 0.5rem 1rem !important; - color: $text; - background-color: transparent; - border: 2px solid $text; - border-radius: 4px; - outline: none; - min-width: 0; - - - &[type="number"] { - max-width: 100px; - } - - - } - - select { - appearance: none; - background-color: $primary; - - &:disabled { - opacity: 0.3; - } - } - - } - - #event-manager { - display: none; - position: absolute; - width: 100%; - height: 100%; - align-items: center; - justify-content: center; - - .dialog { - font-size: 1.3rem; - - .title { - margin-bottom: 0.5rem; - } - - .dialog-content { - display: flex; - flex: 1 1 auto; - flex-direction: column; - justify-content: space-between; - - .info-tables { - display: flex; - flex-direction: column; - flex: 1 1 auto; - overflow: hidden; - } - - .section-title { - font-size: 0.9rem; - margin-top: 0.5rem; - } - - .races-table { - display: flex; - flex-direction: column; - min-height: 100px; - max-height: 40%; - overflow-x: auto; - overflow-y: hidden; - - #last-results-container, - #next-races-container, - #actual-ranking-container { - display: flex; - flex-direction: column; - max-height: 100%; - overflow-y: auto; - overflow-x: hidden; - border-radius: 5px; - } - } - - .placeholder { - display: flex; - font-size: 0.8rem; - justify-content: center; - padding: 0.5rem; - color: $secondary-text; - } - - - .header-line, - .result-line { - - display: flex; - justify-content: space-between; - gap: 0.5rem; - - &.header-line { - display: flex; - justify-content: space-between; - padding: 0.3rem 1rem; - font-size: 0.75rem; - color: $secondary-text; - } - - &.result-line { - display: flex; - justify-content: space-between; - padding: 0.3rem 1rem; - font-size: 0.75rem; - background-color: #ffffff29; - - &.next, - &.first { - background-color: $greenLine; - } - } - - div { - &.number { - width: 60px; - } - - width: 150px; - overflow: hidden; - - &.winner { - font-weight: bold; - color: $greenLine; - } - } - } - - button { - margin-top: 1rem; - } - - - } - } - } - - button { - cursor: pointer; - font-size: 1.8rem; - font-weight: 400; - border-radius: 10px; - width: 100%; - padding: 1rem; - color: $text; - border: 0; - background-color: $accent !important; - } - - .game-container { - width: 800px; - max-width: 100%; - height: 800px; - max-height: 100%; - - .start-button { - font-weight: 200; - border: none; - background-color: $accent !important; - font-size: 1.5rem; - width: 300px; - } - } - - #result { - position: absolute; - top: 50px; - left: 0; - width: calc(100% - 2rem); - max-height: 60%; - padding: 1rem; - display: none; - flex-direction: column; - align-items: center; - justify-content: center; - gap: 1rem; - background-color: $primaryA100; - - #position { - font-size: 4rem; - color: $text; - } - - #timing { - font-size: 2rem; - font-style: italic; - color: $text; - } - - .results-table { - display: flex; - flex-direction: column; - width: 100%; - justify-content: center; - overflow-y: hidden; - overflow-x: auto; - font-family: monospace; - - #results-container { - display: flex; - flex-direction: column; - height: 300px; - overflow-y: auto; - } - - .header-line, - .result-line { - display: flex; - justify-content: space-between; - gap: .5rem; - padding: .5rem; - display: flex; - font-size: 0.75rem; - color: $textA100; - - i.fa-solid { - font-size: 0.75rem; - } - - div:first-child { - width: 75px; - } - - div { - width: 150px; - - &.time { - text-align: right; - } - } - } - - .result-line { - color: $text; - background-color: $lineBackground; - - &.current { - background-color: $greenLine; - } - } - - } - - button#back-to-manager { - margin-top: 1rem; - font-size: 1.8rem; - width: 200px; - } - - } - - #race-hud-header-container { - position: absolute; - display: none; - align-items: center; - justify-content: space-between; - width: calc(100% - 2rem); - padding: 1rem; - font-size: 1.1rem; - font-family: monospace; - - i { - cursor: pointer; - } - - #track-name { - display: flex; - flex: 1 1 auto; - justify-content: flex-end; - } - } - - #global-ghost-timing-container, - #event-ghost-timing-container, - #speedometer, - #timer { - display: none; - width: 90px; - align-items: center; - justify-content: end; - position: absolute; - bottom: 0; - color: $primarySemi; - font-size: 1.1rem; - padding: 0.25rem 0.5rem; - height: 40px; - font-family: monospace; - - &#global-ghost-timing-container, - &#event-ghost-timing-container { - height: 40px; - width: 160px; - font-size: 1rem; - padding: 0; - display: flex; - border-radius: 5px 0px 0px 5px; - position: absolute; - right: -160px; - - transition: 200ms ease-in-out right; - - overflow: hidden; - - >span { - &.timer-header { - display: flex; - flex: 0 0 auto; - align-items: center; - justify-content: center; - height: 40px; - width: 60px; - gap: .1rem; - } - - &.timer-value { - display: flex; - flex: 0 0 auto; - width: 100px; - height: 40px; - align-items: center; - justify-content: center; - } - } - - &.visible { - right: 0; - } - - &.slow-sector { - .timer-value { - background-color: $redSectorA100 !important; - color: $redSector !important; - } - } - - &.fast-sector { - .timer-value { - background-color: $greenSectorA100 !important; - color: $greenSector !important; - } - } - - &#global-ghost-timing-container { - bottom: 100px; - - .timer-header, - .timer-value { - background-color: $globalGhostA100; - color: $globalGhost; - } - } - - &#event-ghost-timing-container { - bottom: 50px; - - .timer-header, - .timer-value { - background-color: $eventGhostA100; - color: $eventGhost; - } - } - } - - &#speedometer { - left: 0; - } - - &#timer { - right: 0; - } - } - } - - .footer { - display: flex; - justify-content: center; - align-items: center; - padding: 2rem; - } -} - -small { - font-size: small; -} - -::placeholder { - color: $secondary-text; -} - -i.fa-solid { - font-size: 1.2rem; -} - -::-webkit-scrollbar { - width: 0px; -} - -html { - -webkit-user-select: none; - -ms-user-select: none; - user-select: none; -} \ No newline at end of file diff --git a/src/styles.scss b/src/styles.scss new file mode 100644 index 0000000..6c29bc0 --- /dev/null +++ b/src/styles.scss @@ -0,0 +1,18 @@ +@import "./app/common/scss/variables"; +@import "./app/common/scss/components"; + +html, +body { + font-family: var(--text-font-family); + background-color: var(--color-app-background); + margin: 0; + user-select: none; + + .app-container { + display: flex; + width: 100dvw; + height: 100dvh; + align-items: center; + justify-content: center; + } +} diff --git a/src/utils/game-setup-manager.ts b/src/utils/game-setup-manager.ts deleted file mode 100644 index 7ad87ec..0000000 --- a/src/utils/game-setup-manager.ts +++ /dev/null @@ -1,65 +0,0 @@ -import { GameSetup } from '../models/game-setup'; - -export class GameSetupManager { - private gameSetupButton: HTMLElement = document.getElementById('game-setup-button')!; - - private gameSetupUi = document.getElementById('game-setup')!; - private soundsCheckbox = document.getElementById('sounds-checkbox')! as HTMLInputElement; - private spectatorsCheckbox = document.getElementById('spectators-checkbox')! as HTMLInputElement; - private ghostsCheckbox = document.getElementById('ghosts-checkbox')! as HTMLInputElement; - private resetButton: HTMLElement = document.getElementById('reset-game-setup-button')!; - private saveButton: HTMLElement = document.getElementById('save-game-setup-button')!; - - private gameSetup = new GameSetup(); - - constructor() { - this.gameSetupButton.addEventListener('click', () => { - this.showGameSetup(); - }); - - this.resetButton.addEventListener('click', () => { - this.resetGameSetup(); - }); - - this.saveButton.addEventListener('click', () => { - this.saveGameSetup(); - }); - } - - public showGameSetupButton(): void { - this.gameSetupButton.style.display = 'flex'; - } - - public hideGameSetupButton(): void { - this.gameSetupButton.style.display = 'none'; - } - - public getGameSetup(): GameSetup { - return this.gameSetup; - } - - public toggleGhosts(): void { - this.gameSetup.ghosts = !this.gameSetup.ghosts; - this.ghostsCheckbox.checked = this.gameSetup.ghosts; - } - - private showGameSetup(): void { - this.gameSetupUi.style.display = 'flex'; - } - - private hideGameSetup(): void { - this.gameSetupUi.style.display = 'none'; - } - - private resetGameSetup(): void { - localStorage.clear(); - location.reload(); - } - - private saveGameSetup(): void { - this.gameSetup.sounds = this.soundsCheckbox.checked; - this.gameSetup.spectators = this.spectatorsCheckbox.checked; - this.gameSetup.ghosts = this.ghostsCheckbox.checked; - this.hideGameSetup(); - } -} diff --git a/src/utils/gamepads-manager.ts b/src/utils/gamepads-manager.ts deleted file mode 100644 index a8434ad..0000000 --- a/src/utils/gamepads-manager.ts +++ /dev/null @@ -1,45 +0,0 @@ -import { Axes, Buttons, Engine, Gamepad } from 'excalibur'; -import { Config } from '../config'; - -export class GamepadsManager { - private engine: Engine; - - constructor(engine: Engine) { - this.engine = engine; - this.initGamepads(); - } - - public getConnectedGamepads(): Gamepad[] { - return this.engine.input.gamepads.getValidGamepads().filter(gamepad => gamepad.connected); - } - - public getFirstGamepad(): Gamepad { - return this.engine.input.gamepads.at(0); - } - - public isButtonHeld(button: Buttons, gamepad?: Gamepad): boolean { - const pad = gamepad || this.getFirstGamepad(); - return pad.isButtonHeld(button); - } - - public wasButtonPressed(button: Buttons, gamepad?: Gamepad): boolean { - const pad = gamepad || this.getFirstGamepad(); - return pad.wasButtonPressed(button); - } - - public isAxesUsed(axes: Axes, gamepad?: Gamepad): boolean { - const pad = gamepad || this.getFirstGamepad(); - return Math.abs(pad.getAxes(axes)) > Config.GAMEPAD_AXES_FILTER_RATE; - } - - public getAxes(axes: Axes, gamepad?: Gamepad): number { - const pad = gamepad || this.getFirstGamepad(); - const axesValue = pad.getAxes(axes); - return Math.abs(axesValue) > Config.GAMEPAD_AXES_FILTER_RATE ? axesValue : 0; - } - - private initGamepads(): void { - this.engine.input.gamepads.setMinimumGamepadConfiguration({ axis: 2, buttons: 4 }); - this.engine.input.gamepads.enabled = true; - } -} diff --git a/src/utils/logo-manager.ts b/src/utils/logo-manager.ts deleted file mode 100644 index a8ae518..0000000 --- a/src/utils/logo-manager.ts +++ /dev/null @@ -1,4 +0,0 @@ -export class LogoManager { - public static base64Image = - 'data:image/png;base64,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'; -} diff --git a/src/utils/particles-builder.ts b/src/utils/particles-builder.ts deleted file mode 100644 index 62f6716..0000000 --- a/src/utils/particles-builder.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { Color, EmitterType, ParticleEmitter, vec } from 'excalibur'; - -export class ParticlesBuilder { - public static getParticlesEmitter(): ParticleEmitter { - const emitter = new ParticleEmitter({ - pos: vec(0, -20), - emitterType: EmitterType.Circle, - radius: 6, - minVel: 50, - maxVel: 200, - minAngle: 3.4, - maxAngle: 6, - emitRate: 300, - opacity: 0.5, - fadeFlag: true, - particleLife: 800, - maxSize: 2, - minSize: 0.5, - beginColor: Color.ExcaliburBlue, - isEmitting: false, - }); - return emitter; - } -} diff --git a/src/utils/race-ui-manager.ts b/src/utils/race-ui-manager.ts deleted file mode 100644 index 8605982..0000000 --- a/src/utils/race-ui-manager.ts +++ /dev/null @@ -1,186 +0,0 @@ -import { format } from 'date-fns'; -import { RecordResult } from '../models/record-result'; -import { Engine } from 'excalibur'; -import { Config } from '../config'; - -export class RaceUiManager { - public backToEventButton = document.getElementById('back-to-event-button')!; - public backToManagerButton = document.getElementById('back-to-manager')!; - - private raceHudHeaderContainerUi = document.getElementById('race-hud-header-container')!; - private resultUi = document.getElementById('result')!; - private resultsContainerUi = document.getElementById('results-container')!; - private trackNameUi = document.getElementById('track-name')!; - private globalGhostTimingContainerUi = document.getElementById('global-ghost-timing-container')!; - private globalGhostTimingUi = document.getElementById('global-ghost-timing')!; - private eventGhostTimingContainerUi = document.getElementById('event-ghost-timing-container')!; - private eventGhostTimingUi = document.getElementById('event-ghost-timing')!; - private speedometerUi = document.getElementById('speedometer')!; - private timerUi = document.getElementById('timer')!; - - public buildUi(fullTrackName: string): void { - this.displayHeader(fullTrackName); - } - - public displayRacingUi(): void { - this.speedometerUi.style.display = 'flex'; - this.timerUi.style.display = 'flex'; - } - - public updateRacingUi(currentSpeed: number, currentTiming: number): void { - this.speedometerUi.innerText = `${Math.floor(currentSpeed)} km/h`; - this.timerUi.innerText = `${format(currentTiming, 'mm:ss:SS')}`; - } - - public displayResultUi( - globalResult: { position: number; records: RecordResult[] }, - missedGates: number, - ): void { - this.hideBackToEventButton(); - this.resultUi.style.display = 'flex'; - this.updateResultUi(globalResult, missedGates); - } - - public flashTimer(engine: Engine): void { - this.timerUi.style.color = '#f5090987'; - engine.clock.schedule(() => { - this.timerUi.style.color = '#4c829087'; - }, 750); - } - - public hideUi(): void { - this.hideGhostsUi(); - this.hideHeader(); - this.hideRacingUi(); - this.hideResultUi(); - } - - public displayGhostsTiming(globalGhostTiming?: number, eventGhostTiming?: number): void { - if (globalGhostTiming) { - this.globalGhostTimingUi.innerText = format(globalGhostTiming, Config.FORMAT_TIMING); - this.globalGhostTimingContainerUi.classList.add('visible'); - } - - if (eventGhostTiming) { - this.eventGhostTimingUi.innerText = format(eventGhostTiming, Config.FORMAT_TIMING); - this.eventGhostTimingContainerUi.classList.add('visible'); - } - } - - public displayGhostSectorTiming( - engine: Engine, - skierTime: number, - globalGhostTime?: number, - eventGhostTime?: number, - ): void { - if (globalGhostTime) { - this.displaySector( - skierTime, - globalGhostTime, - this.globalGhostTimingUi, - this.globalGhostTimingContainerUi, - ); - } - if (eventGhostTime) { - this.displaySector( - skierTime, - eventGhostTime, - this.eventGhostTimingUi, - this.eventGhostTimingContainerUi, - ); - } - - engine.clock.schedule(() => this.hideGhostsUi(), Config.SECTOR_DISPLAY_TIME); - } - - private displaySector( - skierTime: number, - referenceTime: number, - textUi: HTMLElement, - containerUi: HTMLElement, - ): void { - const isSkierFaster = skierTime < referenceTime; - const timeDifference = Math.abs(referenceTime - skierTime); - textUi.innerText = `${isSkierFaster ? '-' : '+'} ${format( - timeDifference, - timeDifference >= 60000 ? 'mm:ss:SS' : 'ss:SS', - )}`; - containerUi.classList.add(isSkierFaster ? 'fast-sector' : 'slow-sector'); - containerUi.classList.add('visible'); - } - - public hideGhostsUi(): void { - this.globalGhostTimingContainerUi.classList.remove('visible'); - this.eventGhostTimingContainerUi.classList.remove('visible'); - this.globalGhostTimingContainerUi.classList.remove('slow-sector'); - this.globalGhostTimingContainerUi.classList.remove('fast-sector'); - this.eventGhostTimingContainerUi.classList.remove('slow-sector'); - this.eventGhostTimingContainerUi.classList.remove('fast-sector'); - } - - private hideRacingUi(): void { - this.speedometerUi.style.display = 'none'; - this.timerUi.style.display = 'none'; - } - - private hideResultUi(): void { - this.resultUi.style.display = 'none'; - } - - private updateResultUi( - globalResult: { position: number; records: RecordResult[] }, - missedGates: number, - ): void { - location.hash = ''; - this.resultsContainerUi.innerHTML = this.prepareResultsTable(globalResult, missedGates); - location.hash = 'startPosition'; - } - - private displayHeader(fullTrackName: string): void { - this.trackNameUi.innerText = fullTrackName; - this.displayBackToEventButton(); - this.raceHudHeaderContainerUi.style.display = 'flex'; - } - - private hideHeader(): void { - this.raceHudHeaderContainerUi.style.display = 'none'; - } - - private displayBackToEventButton(): void { - this.backToEventButton.style.display = 'inline'; - } - - private hideBackToEventButton(): void { - this.backToEventButton.style.display = 'none'; - } - - private prepareResultsTable( - globalResult: { position: number; records: RecordResult[] }, - missedGates: number, - ): string { - return globalResult.records - .map(result => { - const currentResult = result.position === globalResult.position; - const startPosition = - result.position === (globalResult.position > 4 ? globalResult.position - 4 : 1); - const timeHtml = - currentResult && missedGates - ? `${ - result.time - }
missed ${missedGates} gate${ - missedGates > 1 ? 's' : '' - }` - : `${result.time}`; - return `
-
${result.position}
-
${result.player}
-
${result.date}
-
${timeHtml}
-
${result.difference ? `+ ${result.difference}` : ''}
-
`; - }) - .join(''); - } -} diff --git a/src/utils/screen-manager.ts b/src/utils/screen-manager.ts deleted file mode 100644 index 8172dd6..0000000 --- a/src/utils/screen-manager.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Actor, Camera, Vector } from 'excalibur'; -import { Config } from '../config'; - -export class ScreenManager { - public static isNearScreen(item: Actor, camera: Camera): boolean { - return Math.abs(camera.y - item.pos.y) < item.scene.engine.canvasHeight; - } - - public static isBehind(cameraPosition: Vector, itemPosition: Vector): boolean { - return cameraPosition.y < itemPosition.y + Config.FRONT_GHOST_DISTANCE; - } -} diff --git a/src/utils/skier-graphics.ts b/src/utils/skier-graphics.ts deleted file mode 100644 index bd7841b..0000000 --- a/src/utils/skier-graphics.ts +++ /dev/null @@ -1,60 +0,0 @@ -import { Sprite } from 'excalibur'; -import { SkierActions } from '../models/skier-actions.enum'; -import { Resources } from '../resources'; - -export class SkierGraphics { - public static SKIER_SPRITE = Resources.Skier.toSprite(); - public static SKIER_SLIDING_SPRITE = Resources.SkierSliding.toSprite(); - public static SKIER_CARVING_SPRITE = Resources.SkierCarving.toSprite(); - public static SKIER_BRAKING_SPRITE = Resources.SkierBraking.toSprite(); - public static EVENT_GHOST_SPRITE = Resources.EventRecordGhost.toSprite(); - public static EVENT_GHOST_SLIDING_SPRITE = Resources.EventRecordGhostSliding.toSprite(); - public static EVENT_GHOST_CARVING_SPRITE = Resources.EventRecordGhostCarving.toSprite(); - public static EVENT_GHOST_BRAKING_SPRITE = Resources.EventRecordGhostBraking.toSprite(); - public static GLOBAL_GHOST_SPRITE = Resources.GlobalGhostSkier.toSprite(); - public static GLOBAL_GHOST_SLIDING_SPRITE = Resources.GlobalGhostSkierSliding.toSprite(); - public static GLOBAL_GHOST_CARVING_SPRITE = Resources.GlobalGhostSkierCarving.toSprite(); - public static GLOBAL_GHOST_BRAKING_SPRITE = Resources.GlobalGhostSkierBraking.toSprite(); - - public static getSpriteForAction( - type: 'skier' | 'globalRecordGhost' | 'eventRecordGhost', - action: SkierActions, - ): { sprite: Sprite; flipHorizontal?: boolean } { - if (action === SkierActions.SLIDE_LEFT || action === SkierActions.SLIDE_RIGHT) { - const flipHorizontal = action === SkierActions.SLIDE_LEFT; - if (type === 'skier') { - return { sprite: SkierGraphics.SKIER_SLIDING_SPRITE, flipHorizontal: flipHorizontal }; - } - if (type === 'globalRecordGhost') { - return { sprite: SkierGraphics.GLOBAL_GHOST_SLIDING_SPRITE, flipHorizontal: flipHorizontal }; - } - return { sprite: SkierGraphics.EVENT_GHOST_SLIDING_SPRITE, flipHorizontal: flipHorizontal }; - } - if (action === SkierActions.BRAKE) { - if (type === 'skier') { - return { sprite: SkierGraphics.SKIER_BRAKING_SPRITE }; - } - if (type === 'globalRecordGhost') { - return { sprite: SkierGraphics.GLOBAL_GHOST_BRAKING_SPRITE }; - } - return { sprite: SkierGraphics.EVENT_GHOST_BRAKING_SPRITE }; - } - if (action === SkierActions.CARVE_LEFT || action === SkierActions.CARVE_RIGHT) { - const flipHorizontal = action === SkierActions.CARVE_LEFT; - if (type === 'skier') { - return { sprite: SkierGraphics.SKIER_CARVING_SPRITE, flipHorizontal: flipHorizontal }; - } - if (type === 'globalRecordGhost') { - return { sprite: SkierGraphics.GLOBAL_GHOST_CARVING_SPRITE, flipHorizontal: flipHorizontal }; - } - return { sprite: SkierGraphics.EVENT_GHOST_CARVING_SPRITE, flipHorizontal: flipHorizontal }; - } - if (type === 'skier') { - return { sprite: SkierGraphics.SKIER_SPRITE, flipHorizontal: false }; - } - if (type === 'globalRecordGhost') { - return { sprite: SkierGraphics.GLOBAL_GHOST_SPRITE }; - } - return { sprite: SkierGraphics.EVENT_GHOST_SPRITE }; - } -} diff --git a/src/utils/sounds-player.ts b/src/utils/sounds-player.ts deleted file mode 100644 index 12c12c9..0000000 --- a/src/utils/sounds-player.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { Sound } from 'excalibur'; -import { GameSetupManager } from './game-setup-manager'; - -export class SoundPlayer { - public gameSetupManager: GameSetupManager; - - constructor(gameSetupManager: GameSetupManager) { - this.gameSetupManager = gameSetupManager; - } - - public playSound(sound: Sound, volume: number, loop = false, playMultiple = true): void { - const soundsEnabled = this.gameSetupManager.getGameSetup().sounds; - if (soundsEnabled && (!sound.isPlaying() || playMultiple)) { - sound.loop = loop; - sound.play(volume); - } else if (soundsEnabled && sound.isPlaying() && volume !== sound.volume) { - sound.volume = volume; - } - } - - public stopSound(sound: Sound): void { - sound.stop(); - } -} diff --git a/src/utils/storage-manager.ts b/src/utils/storage-manager.ts deleted file mode 100644 index d428bc8..0000000 --- a/src/utils/storage-manager.ts +++ /dev/null @@ -1,9 +0,0 @@ -export class StorageManager { - public static save(key: string, value: string): void { - try { - localStorage.setItem(key, value); - } catch (error) { - console.error('Unable to persist data to localStorage :', `${key}:${value}`, error); - } - } -} diff --git a/src/utils/touch-manager.ts b/src/utils/touch-manager.ts deleted file mode 100644 index 11f42c9..0000000 --- a/src/utils/touch-manager.ts +++ /dev/null @@ -1,47 +0,0 @@ -import { Engine, Vector } from 'excalibur'; -import { Config } from '../config'; - -export class TouchManager { - private engine: Engine; - - public isTouching = false; - public isTouchingBack = false; - public isTouchingLeft = false; - public isTouchingRight = false; - - constructor(engine: Engine) { - this.engine = engine; - this.listenTouch(); - } - - private listenTouch(): void { - this.engine.input.pointers.on('down', event => { - this.recomputeTouchStatus('down', event.pagePos); - }); - - this.engine.input.pointers.on('up', event => { - this.recomputeTouchStatus('up', event.pagePos); - }); - } - - private recomputeTouchStatus(type: 'down' | 'up', position: Vector): void { - if (this.getTouchZone(position) === 'back') { - this.isTouchingBack = type === 'down'; - } else if (this.getTouchZone(position) === 'left') { - this.isTouchingLeft = type === 'down'; - } else if (this.getTouchZone(position) === 'right') { - this.isTouchingRight = type === 'down'; - } - this.isTouching = this.isTouchingBack || this.isTouchingLeft || this.isTouchingRight; - } - - private getTouchZone(position: Vector): 'back' | 'left' | 'right' { - if (position.y > window.innerHeight - Config.TOUCH_BRAKE_ZONE_RATIO * window.innerHeight) { - return 'back'; - } - if (position.x > window.innerWidth / 2) { - return 'right'; - } - return 'left'; - } -} diff --git a/src/utils/track-manager.ts b/src/utils/track-manager.ts deleted file mode 100644 index fc4be2d..0000000 --- a/src/utils/track-manager.ts +++ /dev/null @@ -1,153 +0,0 @@ -import { Config } from '../config'; -import { RecordResult } from '../models/record-result'; -import { StockableGhost } from '../models/stockable-ghost'; -import { StockableRecord } from '../models/stockable-record'; -import { StockableTrack } from '../models/stockable-track'; -import { Track } from '../models/track'; -import { TrackStyles } from '../models/track-styles.enum'; -import { StorageManager } from './storage-manager'; -import { TrackBuilder } from './track-builder'; -import { format } from 'date-fns'; - -export class TrackManager { - /** - * Load an already existing track by its name or generate a new one (if not existing or older version) - * @param name name of the track to load/build - * @param trackStyle style of the track to build (only used when building a new track) - * @returns the track - */ - public loadTrack(name: string, trackStyle: TrackStyles): Track { - const requestedTrack = this.getTrackFromLocalStorage(name); - if (requestedTrack?.builderVersion === Config.CURRENT_BUILDER_VERSION) { - return requestedTrack.toTrack(); - } - - const newTrack = TrackBuilder.designTrack(name, trackStyle); - const stockableTrack = newTrack.toStockable(); - this.saveTrackToLocalStorage(stockableTrack); - return newTrack; - } - - /** - * Import default tracks from the assets - * Override existing persisted track if the default track version from the assets use a more recent builder version - */ - public importDefaultTracks(): void { - for (const track of Config.DEFAULT_TRACKS) { - const serializedStoredTrack = localStorage.getItem(`track_${track}`); - const storedTrack = serializedStoredTrack ? JSON.parse(serializedStoredTrack) : null; - fetch(`tracks/${track}.json`) - ?.then(trackJson => trackJson.json()) - ?.then((track: StockableTrack) => { - if ( - !storedTrack?.builderVersion || - (track.builderVersion || 0) > storedTrack.builderVersion - ) - this.saveTrackToLocalStorage(track); - }) - .catch(() => console.warn('Unable to load default track from the assets : ', track)); - } - } - - /** - * Import default ghosts from the assets - * Override existing persisted ghosts if the ghost from the asset is using a more recent track version - */ - public importDefaultGhosts(): void { - for (const track of Config.DEFAULT_TRACKS) { - const ghostPersistedJson = localStorage.getItem(`ghost_${track}`); - const ghostPersistedData: StockableGhost = ghostPersistedJson - ? JSON.parse(ghostPersistedJson) - : null; - fetch(`ghosts/${track}.json`) - ?.then(ghostJson => ghostJson.json()) - ?.then((defaultGhost: StockableGhost) => { - if ( - !ghostPersistedData?.trackVersion || - (defaultGhost.trackVersion || 0) > ghostPersistedData.trackVersion - ) { - StorageManager.save(`ghost_${track}`, JSON.stringify(defaultGhost)); - } - }) - .catch(() => console.warn('Unable to load default ghost from the assets : ', track)); - } - } - - public saveRecord( - trackName: string, - record: StockableRecord, - ): { position: number; records: RecordResult[] } | null { - const track = this.getTrackFromLocalStorage(trackName); - if (track) { - track.records.push(record); - track.records.sort((r1, r2) => r1.timing - r2.timing); - this.saveTrackToLocalStorage(track); - return { - position: track.records.filter(r => r.timing < record.timing).length + 1, - records: this.getCurrentRecords(trackName), - }; - } - return null; - } - - public getRecordPosition(trackName: string, timing: number): number | null { - const track = this.getTrackFromLocalStorage(trackName); - if (track) { - return track.records.findIndex(record => record.timing === timing) + 1; - } - return null; - } - - public getRecord(trackName: string): number | null { - const records = this.getRecords(trackName); - return records.length ? records[0].timing : null; - } - - public getRecords(trackName: string): StockableRecord[] { - return this.getTrackFromLocalStorage(trackName)?.records || []; - } - - public saveTrackToLocalStorage(track: StockableTrack): void { - StorageManager.save(`track_${track.name.toLowerCase()}`, JSON.stringify(track)); - } - - public getTrackStyle(trackName: string): TrackStyles | undefined { - return this.getTrackFromLocalStorage(trackName)?.style; - } - - public getTrackFromLocalStorage(trackName: string): StockableTrack | null { - const item = localStorage.getItem(`track_${trackName.toLowerCase()}`); - if (item) { - const tempTrack: StockableTrack = Object.assign(new StockableTrack(), JSON.parse(item)); - if (tempTrack.builderVersion === Config.CURRENT_BUILDER_VERSION) { - return new StockableTrack( - tempTrack.builderVersion, - tempTrack.name, - tempTrack.style, - tempTrack.date, - tempTrack.gates, - tempTrack.records, - ); - } - } - return null; - } - - private getCurrentRecords(trackName: string): RecordResult[] { - const track = this.getTrackFromLocalStorage(trackName); - if (track) { - const records = track.records; - return records?.map((record, index) => { - const difference = record.timing - records[0].timing; - return new RecordResult( - index + 1, - record.player, - format(record.date, 'd MMM yyyy HH:mm'), - format(record.timing, 'mm:ss:SS'), - difference ? format(difference, difference >= 60000 ? 'mm:ss:SS' : 'ss:SS') : '', - ); - }); - } - return []; - } -} diff --git a/src/utils/welcome-ui-manager.ts b/src/utils/welcome-ui-manager.ts deleted file mode 100644 index e507c08..0000000 --- a/src/utils/welcome-ui-manager.ts +++ /dev/null @@ -1,26 +0,0 @@ -export class WelcomeUiManager { - private welcomeUi = document.getElementById('welcome')!; - private exitWelcomeButtonUi = document.getElementById('exit-welcome-button')!; - - constructor() { - this.listenExitWelcomeButton(); - } - - public showWelcomeUi(): void { - this.welcomeUi.style.display = 'flex'; - } - - private listenExitWelcomeButton(): void { - this.exitWelcomeButtonUi.addEventListener('click', () => { - this.exitWelcomeUi(); - }); - } - - private hideWelcomeUi(): void { - this.welcomeUi.style.display = 'none'; - } - - private exitWelcomeUi(): void { - this.hideWelcomeUi(); - } -} diff --git a/src/vite-env.d.ts b/src/vite-env.d.ts deleted file mode 100644 index 11f02fe..0000000 --- a/src/vite-env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// diff --git a/tsconfig.app.json b/tsconfig.app.json new file mode 100644 index 0000000..7d7c716 --- /dev/null +++ b/tsconfig.app.json @@ -0,0 +1,13 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/app", + "types": [] + }, + "files": [ + "src/main.ts" + ], + "include": [ + "src/**/*.d.ts" + ] +} diff --git a/tsconfig.json b/tsconfig.json index 73afe31..d3dbc4a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,24 +1,33 @@ +/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */ +/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */ { - "compilerOptions": { - "target": "ESNext", - "useDefineForClassFields": true, - "module": "ESNext", - "lib": [ - "ESNext", - "DOM" - ], - "moduleResolution": "Node", - "strict": true, - "skipLibCheck": true, - "sourceMap": true, - "resolveJsonModule": true, - "esModuleInterop": true, - "noEmit": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "noImplicitReturns": true - }, - "include": [ - "./src" + "compileOnSave": false, + "compilerOptions": { + "outDir": "./dist/out-tsc", + "strict": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "skipLibCheck": true, + "esModuleInterop": true, + "sourceMap": true, + "declaration": false, + "experimentalDecorators": true, + "moduleResolution": "bundler", + "importHelpers": true, + "target": "ES2022", + "module": "ES2022", + "useDefineForClassFields": false, + "lib": [ + "ES2022", + "dom" ] -} \ No newline at end of file + }, + "angularCompilerOptions": { + "enableI18nLegacyMessageIdFormat": false, + "strictInjectionParameters": true, + "strictInputAccessModifiers": true, + "strictTemplates": true + } +} diff --git a/tsconfig.spec.json b/tsconfig.spec.json new file mode 100644 index 0000000..b18619f --- /dev/null +++ b/tsconfig.spec.json @@ -0,0 +1,13 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./out-tsc/spec", + "types": [ + "jasmine" + ] + }, + "include": [ + "src/**/*.spec.ts", + "src/**/*.d.ts" + ] +} diff --git a/vite.config.js b/vite.config.js deleted file mode 100644 index 929d8e6..0000000 --- a/vite.config.js +++ /dev/null @@ -1,6 +0,0 @@ -import { defineConfig } from 'vite'; - -export default defineConfig({ - base: './', - publicDir: 'src/public', -}); diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..81d7c6a --- /dev/null +++ b/yarn.lock @@ -0,0 +1,6989 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@ampproject/remapping@2.3.0", "@ampproject/remapping@^2.2.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4" + integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.24" + +"@angular-devkit/architect@0.1802.12": + version "0.1802.12" + resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1802.12.tgz#096f8e9cf71f8848c6f0172c03f3f1135509e133" + integrity sha512-bepVb2/GtJppYKaeW8yTGE6egmoWZ7zagFDsmBdbF+BYp+HmeoPsclARcdryBPVq68zedyTRdvhWSUTbw1AYuw== + dependencies: + "@angular-devkit/core" "18.2.12" + rxjs "7.8.1" + +"@angular-devkit/build-angular@^18.0.7": + version "18.2.12" + resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-18.2.12.tgz#1ab09bc5571a1fc8c6234ef346f0629761c27bdd" + integrity sha512-quVUi7eqTq9OHumQFNl9Y8t2opm8miu4rlYnuF6rbujmmBDvdUvR6trFChueRczl2p5HWqTOr6NPoDGQm8AyNw== + dependencies: + "@ampproject/remapping" "2.3.0" + "@angular-devkit/architect" "0.1802.12" + "@angular-devkit/build-webpack" "0.1802.12" + "@angular-devkit/core" "18.2.12" + "@angular/build" "18.2.12" + "@babel/core" "7.25.2" + "@babel/generator" "7.25.0" + "@babel/helper-annotate-as-pure" "7.24.7" + "@babel/helper-split-export-declaration" "7.24.7" + "@babel/plugin-transform-async-generator-functions" "7.25.0" + "@babel/plugin-transform-async-to-generator" "7.24.7" + "@babel/plugin-transform-runtime" "7.24.7" + "@babel/preset-env" "7.25.3" + "@babel/runtime" "7.25.0" + "@discoveryjs/json-ext" "0.6.1" + "@ngtools/webpack" "18.2.12" + "@vitejs/plugin-basic-ssl" "1.1.0" + ansi-colors "4.1.3" + autoprefixer "10.4.20" + babel-loader "9.1.3" + browserslist "^4.21.5" + copy-webpack-plugin "12.0.2" + critters "0.0.24" + css-loader "7.1.2" + esbuild-wasm "0.23.0" + fast-glob "3.3.2" + http-proxy-middleware "3.0.3" + https-proxy-agent "7.0.5" + istanbul-lib-instrument "6.0.3" + jsonc-parser "3.3.1" + karma-source-map-support "1.4.0" + less "4.2.0" + less-loader "12.2.0" + license-webpack-plugin "4.0.2" + loader-utils "3.3.1" + magic-string "0.30.11" + mini-css-extract-plugin "2.9.0" + mrmime "2.0.0" + open "10.1.0" + ora "5.4.1" + parse5-html-rewriting-stream "7.0.0" + picomatch "4.0.2" + piscina "4.6.1" + postcss "8.4.41" + postcss-loader "8.1.1" + resolve-url-loader "5.0.0" + rxjs "7.8.1" + sass "1.77.6" + sass-loader "16.0.0" + semver "7.6.3" + source-map-loader "5.0.0" + source-map-support "0.5.21" + terser "5.31.6" + tree-kill "1.2.2" + tslib "2.6.3" + vite "5.4.6" + watchpack "2.4.1" + webpack "5.94.0" + webpack-dev-middleware "7.4.2" + webpack-dev-server "5.0.4" + webpack-merge "6.0.1" + webpack-subresource-integrity "5.1.0" + optionalDependencies: + esbuild "0.23.0" + +"@angular-devkit/build-webpack@0.1802.12": + version "0.1802.12" + resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.1802.12.tgz#b46afdf8dccef681156118d545e37ac57e0da759" + integrity sha512-0Z3fdbZVRnjYWE2/VYyfy+uieY+6YZyEp4ylzklVkc+fmLNsnz4Zw6cK1LzzcBqAwKIyh1IdW20Cg7o8b0sONA== + dependencies: + "@angular-devkit/architect" "0.1802.12" + rxjs "7.8.1" + +"@angular-devkit/core@18.2.12": + version "18.2.12" + resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-18.2.12.tgz#fb514e9b3c9ea87ddaa1582d3947f1b094c9b387" + integrity sha512-NtB6ypsaDyPE6/fqWOdfTmACs+yK5RqfH5tStEzWFeeDsIEDYKsJ06ypuRep7qTjYus5Rmttk0Ds+cFgz8JdUQ== + dependencies: + ajv "8.17.1" + ajv-formats "3.0.1" + jsonc-parser "3.3.1" + picomatch "4.0.2" + rxjs "7.8.1" + source-map "0.7.4" + +"@angular-devkit/schematics@18.2.12": + version "18.2.12" + resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-18.2.12.tgz#15d1a8611bf9f18215435604672411b1929bf4d1" + integrity sha512-mMea9txHbnCX5lXLHlo0RAgfhFHDio45/jMsREM2PA8UtVf2S8ltXz7ZwUrUyMQRv8vaSfn4ijDstF4hDMnRgQ== + dependencies: + "@angular-devkit/core" "18.2.12" + jsonc-parser "3.3.1" + magic-string "0.30.11" + ora "5.4.1" + rxjs "7.8.1" + +"@angular/animations@^18.0.0": + version "18.2.12" + resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-18.2.12.tgz#4f7e7fcea4109a5fa73ddb2cb62ad09e5d58e31b" + integrity sha512-XcWH/VFQ1Rddhdqi/iU8lW3Qg96yVx1NPfrO5lhcSSvVUzYWTZ5r+jh3GqYqUgPWyEp1Kpw3FLsOgVcGcBWQkQ== + dependencies: + tslib "^2.3.0" + +"@angular/build@18.2.12": + version "18.2.12" + resolved "https://registry.yarnpkg.com/@angular/build/-/build-18.2.12.tgz#d6be89fb572675cfa170f664c0b0ed49c317f33c" + integrity sha512-4Ohz+OSILoL+cCAQ4UTiCT5v6pctu3fXNoNpTEUK46OmxELk9jDITO5rNyNS7TxBn9wY69kjX5VcDf7MenquFQ== + dependencies: + "@ampproject/remapping" "2.3.0" + "@angular-devkit/architect" "0.1802.12" + "@babel/core" "7.25.2" + "@babel/helper-annotate-as-pure" "7.24.7" + "@babel/helper-split-export-declaration" "7.24.7" + "@babel/plugin-syntax-import-attributes" "7.24.7" + "@inquirer/confirm" "3.1.22" + "@vitejs/plugin-basic-ssl" "1.1.0" + browserslist "^4.23.0" + critters "0.0.24" + esbuild "0.23.0" + fast-glob "3.3.2" + https-proxy-agent "7.0.5" + listr2 "8.2.4" + lmdb "3.0.13" + magic-string "0.30.11" + mrmime "2.0.0" + parse5-html-rewriting-stream "7.0.0" + picomatch "4.0.2" + piscina "4.6.1" + rollup "4.22.4" + sass "1.77.6" + semver "7.6.3" + vite "5.4.6" + watchpack "2.4.1" + +"@angular/cli@^18.0.7": + version "18.2.12" + resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-18.2.12.tgz#ea1af54d1fd172bf8bd3c7ed977a422c1c1a94d9" + integrity sha512-xhuZ/b7IhqNw1MgXf+arWf4x+GfUSt/IwbdWU4+CO8A7h0Y46zQywouP/KUK3cMQZfVdHdciTBvlpF3vFacA6Q== + dependencies: + "@angular-devkit/architect" "0.1802.12" + "@angular-devkit/core" "18.2.12" + "@angular-devkit/schematics" "18.2.12" + "@inquirer/prompts" "5.3.8" + "@listr2/prompt-adapter-inquirer" "2.0.15" + "@schematics/angular" "18.2.12" + "@yarnpkg/lockfile" "1.1.0" + ini "4.1.3" + jsonc-parser "3.3.1" + listr2 "8.2.4" + npm-package-arg "11.0.3" + npm-pick-manifest "9.1.0" + pacote "18.0.6" + resolve "1.22.8" + semver "7.6.3" + symbol-observable "4.0.0" + yargs "17.7.2" + +"@angular/common@^18.0.0": + version "18.2.12" + resolved "https://registry.yarnpkg.com/@angular/common/-/common-18.2.12.tgz#b407edd1408b583cd09c047005a9455b868e8e4d" + integrity sha512-gI5o8Bccsi8ow8Wk2vG4Tw/Rw9LoHEA9j8+qHKNR/55SCBsz68Syg310dSyxy+sApJO2WiqIadr5VP36dlSUFw== + dependencies: + tslib "^2.3.0" + +"@angular/compiler-cli@^18.0.0": + version "18.2.12" + resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-18.2.12.tgz#7a83939de4a8b6b7fed1e85a98b14ee4d3e142b7" + integrity sha512-IWimTNq5Q+i2Wxev6HLqnN4iYbPvLz04W1BBycT1LfGUsHcjFYLuUqbeUzHbk2snmBAzXkixgVpo8SF6P4Y5Pg== + dependencies: + "@babel/core" "7.25.2" + "@jridgewell/sourcemap-codec" "^1.4.14" + chokidar "^4.0.0" + convert-source-map "^1.5.1" + reflect-metadata "^0.2.0" + semver "^7.0.0" + tslib "^2.3.0" + yargs "^17.2.1" + +"@angular/compiler@^18.0.0": + version "18.2.12" + resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-18.2.12.tgz#a84a21465e23011d06c375d5b9688982331e5541" + integrity sha512-D5d5dLrjQal5DbAXJJNSsCC3UxzjOI2wbc+Iv+LOpRM1gpNwuYfZMX5W7cj62Ce4G2++78CJSppdKBp8D4HErQ== + dependencies: + tslib "^2.3.0" + +"@angular/core@^18.0.0": + version "18.2.12" + resolved "https://registry.yarnpkg.com/@angular/core/-/core-18.2.12.tgz#c34b00ef545bb2aaba1614dda7f37879e36136d2" + integrity sha512-wCf/OObwS6bpM60rk6bpMpCRGp0DlMLB1WNAMtfcaPNyqimVV5Bm98mWRhkOuRyvU3fU7iHhM/10ePVaoyu9+A== + dependencies: + tslib "^2.3.0" + +"@angular/forms@^18.0.0": + version "18.2.12" + resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-18.2.12.tgz#a934a81593a9135fd72320fc25b2b00ced5f0e98" + integrity sha512-FsukBJEU6jfAmht7TrODTkct/o4iwCZvGozuThOp0tYUPD/E1rZZzuKjEyTnT5Azpfkf0Wqx1nmpz80cczELOQ== + dependencies: + tslib "^2.3.0" + +"@angular/platform-browser-dynamic@^18.0.0": + version "18.2.12" + resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-18.2.12.tgz#2995a3deead33b52fb2ec3e29fe331b253f344b3" + integrity sha512-dv1QEjYpcFno6+oUeGEDRWpB5g2Ufb0XkUbLJQIgrOk1Qbyzb8tmpDpTjok8jcKdquigMRWolr6Y1EOicfRlLw== + dependencies: + tslib "^2.3.0" + +"@angular/platform-browser@^18.0.0": + version "18.2.12" + resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-18.2.12.tgz#2c93db068f9f06b9c250e288cff206b4666e247c" + integrity sha512-DRSMznuxuecrs+v5BRyd60/R4vjkQtuYUEPfzdo+rqxM83Dmr3PGtnqPRgd5oAFUbATxf02hQXijRD27K7rZRg== + dependencies: + tslib "^2.3.0" + +"@angular/router@^18.0.0": + version "18.2.12" + resolved "https://registry.yarnpkg.com/@angular/router/-/router-18.2.12.tgz#3a0ff4c912ac26403dd1276d10cb173d07a57a59" + integrity sha512-cz/1YWOZadAT35PPPYmpK3HSzKOE56nlUHue5bFkw73VSZr2iBn03ALLpd9YKzWgRmx3y7DqnlQtCkDu9JPGKQ== + dependencies: + tslib "^2.3.0" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.24.7", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" + integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== + dependencies: + "@babel/helper-validator-identifier" "^7.25.9" + js-tokens "^4.0.0" + picocolors "^1.0.0" + +"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.2", "@babel/compat-data@^7.25.9": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.2.tgz#278b6b13664557de95b8f35b90d96785850bb56e" + integrity sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg== + +"@babel/core@7.25.2": + version "7.25.2" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.25.2.tgz#ed8eec275118d7613e77a352894cd12ded8eba77" + integrity sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.24.7" + "@babel/generator" "^7.25.0" + "@babel/helper-compilation-targets" "^7.25.2" + "@babel/helper-module-transforms" "^7.25.2" + "@babel/helpers" "^7.25.0" + "@babel/parser" "^7.25.0" + "@babel/template" "^7.25.0" + "@babel/traverse" "^7.25.2" + "@babel/types" "^7.25.2" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/core@^7.12.3", "@babel/core@^7.23.9": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40" + integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.26.0" + "@babel/generator" "^7.26.0" + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-module-transforms" "^7.26.0" + "@babel/helpers" "^7.26.0" + "@babel/parser" "^7.26.0" + "@babel/template" "^7.25.9" + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.26.0" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/generator@7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.0.tgz#f858ddfa984350bc3d3b7f125073c9af6988f18e" + integrity sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw== + dependencies: + "@babel/types" "^7.25.0" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + jsesc "^2.5.1" + +"@babel/generator@^7.25.0", "@babel/generator@^7.25.9", "@babel/generator@^7.26.0": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.2.tgz#87b75813bec87916210e5e01939a4c823d6bb74f" + integrity sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw== + dependencies: + "@babel/parser" "^7.26.2" + "@babel/types" "^7.26.0" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + jsesc "^3.0.2" + +"@babel/helper-annotate-as-pure@7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz#5373c7bc8366b12a033b4be1ac13a206c6656aab" + integrity sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg== + dependencies: + "@babel/types" "^7.24.7" + +"@babel/helper-annotate-as-pure@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz#d8eac4d2dc0d7b6e11fa6e535332e0d3184f06b4" + integrity sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g== + dependencies: + "@babel/types" "^7.25.9" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.25.9.tgz#f41752fe772a578e67286e6779a68a5a92de1ee9" + integrity sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g== + dependencies: + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.25.2", "@babel/helper-compilation-targets@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz#55af025ce365be3cdc0c1c1e56c6af617ce88875" + integrity sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ== + dependencies: + "@babel/compat-data" "^7.25.9" + "@babel/helper-validator-option" "^7.25.9" + browserslist "^4.24.0" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-create-class-features-plugin@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz#7644147706bb90ff613297d49ed5266bde729f83" + integrity sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-member-expression-to-functions" "^7.25.9" + "@babel/helper-optimise-call-expression" "^7.25.9" + "@babel/helper-replace-supers" "^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + "@babel/traverse" "^7.25.9" + semver "^6.3.1" + +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.9.tgz#3e8999db94728ad2b2458d7a470e7770b7764e26" + integrity sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.25.9" + regexpu-core "^6.1.1" + semver "^6.3.1" + +"@babel/helper-define-polyfill-provider@^0.6.2", "@babel/helper-define-polyfill-provider@^0.6.3": + version "0.6.3" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz#f4f2792fae2ef382074bc2d713522cf24e6ddb21" + integrity sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg== + dependencies: + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-plugin-utils" "^7.22.5" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + +"@babel/helper-member-expression-to-functions@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz#9dfffe46f727005a5ea29051ac835fb735e4c1a3" + integrity sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ== + dependencies: + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helper-module-imports@^7.24.7", "@babel/helper-module-imports@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715" + integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw== + dependencies: + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helper-module-transforms@^7.25.2", "@babel/helper-module-transforms@^7.25.9", "@babel/helper-module-transforms@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae" + integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw== + dependencies: + "@babel/helper-module-imports" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/helper-optimise-call-expression@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz#3324ae50bae7e2ab3c33f60c9a877b6a0146b54e" + integrity sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ== + dependencies: + "@babel/types" "^7.25.9" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.7", "@babel/helper-plugin-utils@^7.24.8", "@babel/helper-plugin-utils@^7.25.9", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz#9cbdd63a9443a2c92a725cca7ebca12cc8dd9f46" + integrity sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw== + +"@babel/helper-remap-async-to-generator@^7.24.7", "@babel/helper-remap-async-to-generator@^7.25.0", "@babel/helper-remap-async-to-generator@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz#e53956ab3d5b9fb88be04b3e2f31b523afd34b92" + integrity sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-wrap-function" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/helper-replace-supers@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz#ba447224798c3da3f8713fc272b145e33da6a5c5" + integrity sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.25.9" + "@babel/helper-optimise-call-expression" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/helper-simple-access@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.25.9.tgz#6d51783299884a2c74618d6ef0f86820ec2e7739" + integrity sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q== + dependencies: + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helper-skip-transparent-expression-wrappers@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz#0b2e1b62d560d6b1954893fd2b705dc17c91f0c9" + integrity sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA== + dependencies: + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helper-split-export-declaration@7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz#83949436890e07fa3d6873c61a96e3bbf692d856" + integrity sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA== + dependencies: + "@babel/types" "^7.24.7" + +"@babel/helper-string-parser@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c" + integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA== + +"@babel/helper-validator-identifier@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7" + integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== + +"@babel/helper-validator-option@^7.24.8", "@babel/helper-validator-option@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72" + integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw== + +"@babel/helper-wrap-function@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz#d99dfd595312e6c894bd7d237470025c85eea9d0" + integrity sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g== + dependencies: + "@babel/template" "^7.25.9" + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helpers@^7.25.0", "@babel/helpers@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.0.tgz#30e621f1eba5aa45fe6f4868d2e9154d884119a4" + integrity sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw== + dependencies: + "@babel/template" "^7.25.9" + "@babel/types" "^7.26.0" + +"@babel/parser@^7.14.7", "@babel/parser@^7.23.9", "@babel/parser@^7.25.0", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.2": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.2.tgz#fd7b6f487cfea09889557ef5d4eeb9ff9a5abd11" + integrity sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ== + dependencies: + "@babel/types" "^7.26.0" + +"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.3": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz#cc2e53ebf0a0340777fff5ed521943e253b4d8fe" + integrity sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/plugin-bugfix-safari-class-field-initializer-scope@^7.25.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz#af9e4fb63ccb8abcb92375b2fcfe36b60c774d30" + integrity sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.25.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz#e8dc26fcd616e6c5bf2bd0d5a2c151d4f92a9137" + integrity sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz#807a667f9158acac6f6164b4beb85ad9ebc9e1d1" + integrity sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + "@babel/plugin-transform-optional-chaining" "^7.25.9" + +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.25.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz#de7093f1e7deaf68eadd7cc6b07f2ab82543269e" + integrity sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": + version "7.21.0-placeholder-for-preset-env.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" + integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== + +"@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.12.13": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-dynamic-import@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-syntax-import-assertions@^7.24.7": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz#620412405058efa56e4a564903b79355020f445f" + integrity sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-syntax-import-attributes@7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz#b4f9ea95a79e6912480c4b626739f86a076624ca" + integrity sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-syntax-import-attributes@^7.24.7": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz#3b1412847699eea739b4f2602c74ce36f6b0b0f7" + integrity sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-syntax-import-meta@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" + integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-arrow-functions@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz#7821d4410bee5daaadbb4cdd9a6649704e176845" + integrity sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-async-generator-functions@7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.0.tgz#b785cf35d73437f6276b1e30439a57a50747bddf" + integrity sha512-uaIi2FdqzjpAMvVqvB51S42oC2JEVgh0LDsGfZVDysWE8LrJtQC2jvKmOqEYThKyB7bDEb7BP1GYWDm7tABA0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-remap-async-to-generator" "^7.25.0" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/traverse" "^7.25.0" + +"@babel/plugin-transform-async-generator-functions@^7.25.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz#1b18530b077d18a407c494eb3d1d72da505283a2" + integrity sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-remap-async-to-generator" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/plugin-transform-async-to-generator@7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz#72a3af6c451d575842a7e9b5a02863414355bdcc" + integrity sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA== + dependencies: + "@babel/helper-module-imports" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-remap-async-to-generator" "^7.24.7" + +"@babel/plugin-transform-async-to-generator@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz#c80008dacae51482793e5a9c08b39a5be7e12d71" + integrity sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ== + dependencies: + "@babel/helper-module-imports" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-remap-async-to-generator" "^7.25.9" + +"@babel/plugin-transform-block-scoped-functions@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz#5700691dbd7abb93de300ca7be94203764fce458" + integrity sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-block-scoping@^7.25.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz#c33665e46b06759c93687ca0f84395b80c0473a1" + integrity sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-class-properties@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz#a8ce84fedb9ad512549984101fa84080a9f5f51f" + integrity sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-class-static-block@^7.24.7": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz#6c8da219f4eb15cae9834ec4348ff8e9e09664a0" + integrity sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-classes@^7.25.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz#7152457f7880b593a63ade8a861e6e26a4469f52" + integrity sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-replace-supers" "^7.25.9" + "@babel/traverse" "^7.25.9" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz#db36492c78460e534b8852b1d5befe3c923ef10b" + integrity sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/template" "^7.25.9" + +"@babel/plugin-transform-destructuring@^7.24.8": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz#966ea2595c498224340883602d3cfd7a0c79cea1" + integrity sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-dotall-regex@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz#bad7945dd07734ca52fe3ad4e872b40ed09bb09a" + integrity sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-duplicate-keys@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz#8850ddf57dce2aebb4394bb434a7598031059e6d" + integrity sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.25.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz#6f7259b4de127721a08f1e5165b852fcaa696d31" + integrity sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-dynamic-import@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz#23e917de63ed23c6600c5dd06d94669dce79f7b8" + integrity sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-exponentiation-operator@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.25.9.tgz#ece47b70d236c1d99c263a1e22b62dc20a4c8b0f" + integrity sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-export-namespace-from@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz#90745fe55053394f554e40584cda81f2c8a402a2" + integrity sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-for-of@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz#4bdc7d42a213397905d89f02350c5267866d5755" + integrity sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + +"@babel/plugin-transform-function-name@^7.25.1": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz#939d956e68a606661005bfd550c4fc2ef95f7b97" + integrity sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA== + dependencies: + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/plugin-transform-json-strings@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz#c86db407cb827cded902a90c707d2781aaa89660" + integrity sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-literals@^7.25.2": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz#1a1c6b4d4aa59bc4cad5b6b3a223a0abd685c9de" + integrity sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-logical-assignment-operators@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz#b19441a8c39a2fda0902900b306ea05ae1055db7" + integrity sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-member-expression-literals@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz#63dff19763ea64a31f5e6c20957e6a25e41ed5de" + integrity sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-modules-amd@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz#49ba478f2295101544abd794486cd3088dddb6c5" + integrity sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw== + dependencies: + "@babel/helper-module-transforms" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-modules-commonjs@^7.24.8": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.25.9.tgz#d165c8c569a080baf5467bda88df6425fc060686" + integrity sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg== + dependencies: + "@babel/helper-module-transforms" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-simple-access" "^7.25.9" + +"@babel/plugin-transform-modules-systemjs@^7.25.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz#8bd1b43836269e3d33307151a114bcf3ba6793f8" + integrity sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA== + dependencies: + "@babel/helper-module-transforms" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/plugin-transform-modules-umd@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz#6710079cdd7c694db36529a1e8411e49fcbf14c9" + integrity sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw== + dependencies: + "@babel/helper-module-transforms" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz#454990ae6cc22fd2a0fa60b3a2c6f63a38064e6a" + integrity sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-new-target@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz#42e61711294b105c248336dcb04b77054ea8becd" + integrity sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-nullish-coalescing-operator@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz#bcb1b0d9e948168102d5f7104375ca21c3266949" + integrity sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-numeric-separator@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz#bfed75866261a8b643468b0ccfd275f2033214a1" + integrity sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-object-rest-spread@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz#0203725025074164808bcf1a2cfa90c652c99f18" + integrity sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg== + dependencies: + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/plugin-transform-parameters" "^7.25.9" + +"@babel/plugin-transform-object-super@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz#385d5de135162933beb4a3d227a2b7e52bb4cf03" + integrity sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-replace-supers" "^7.25.9" + +"@babel/plugin-transform-optional-catch-binding@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz#10e70d96d52bb1f10c5caaac59ac545ea2ba7ff3" + integrity sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-optional-chaining@^7.24.8", "@babel/plugin-transform-optional-chaining@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz#e142eb899d26ef715435f201ab6e139541eee7dd" + integrity sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + +"@babel/plugin-transform-parameters@^7.24.7", "@babel/plugin-transform-parameters@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz#b856842205b3e77e18b7a7a1b94958069c7ba257" + integrity sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-private-methods@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz#847f4139263577526455d7d3223cd8bda51e3b57" + integrity sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-private-property-in-object@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz#9c8b73e64e6cc3cbb2743633885a7dd2c385fe33" + integrity sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-create-class-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-property-literals@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz#d72d588bd88b0dec8b62e36f6fda91cedfe28e3f" + integrity sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-regenerator@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz#03a8a4670d6cebae95305ac6defac81ece77740b" + integrity sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + regenerator-transform "^0.15.2" + +"@babel/plugin-transform-reserved-words@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz#0398aed2f1f10ba3f78a93db219b27ef417fb9ce" + integrity sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-runtime@7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.7.tgz#00a5bfaf8c43cf5c8703a8a6e82b59d9c58f38ca" + integrity sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw== + dependencies: + "@babel/helper-module-imports" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + babel-plugin-polyfill-corejs2 "^0.4.10" + babel-plugin-polyfill-corejs3 "^0.10.1" + babel-plugin-polyfill-regenerator "^0.6.1" + semver "^6.3.1" + +"@babel/plugin-transform-shorthand-properties@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz#bb785e6091f99f826a95f9894fc16fde61c163f2" + integrity sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-spread@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz#24a35153931b4ba3d13cec4a7748c21ab5514ef9" + integrity sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + +"@babel/plugin-transform-sticky-regex@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz#c7f02b944e986a417817b20ba2c504dfc1453d32" + integrity sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-template-literals@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz#6dbd4a24e8fad024df76d1fac6a03cf413f60fe1" + integrity sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-typeof-symbol@^7.24.8": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz#224ba48a92869ddbf81f9b4a5f1204bbf5a2bc4b" + integrity sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-unicode-escapes@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz#a75ef3947ce15363fccaa38e2dd9bc70b2788b82" + integrity sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-unicode-property-regex@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz#a901e96f2c1d071b0d1bb5dc0d3c880ce8f53dd3" + integrity sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-unicode-regex@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz#5eae747fe39eacf13a8bd006a4fb0b5d1fa5e9b1" + integrity sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-unicode-sets-regex@^7.24.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz#65114c17b4ffc20fa5b163c63c70c0d25621fabe" + integrity sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/preset-env@7.25.3": + version "7.25.3" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.25.3.tgz#0bf4769d84ac51d1073ab4a86f00f30a3a83c67c" + integrity sha512-QsYW7UeAaXvLPX9tdVliMJE7MD7M6MLYVTovRTIwhoYQVFHR1rM4wO8wqAezYi3/BpSD+NzVCZ69R6smWiIi8g== + dependencies: + "@babel/compat-data" "^7.25.2" + "@babel/helper-compilation-targets" "^7.25.2" + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-validator-option" "^7.24.8" + "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.25.3" + "@babel/plugin-bugfix-safari-class-field-initializer-scope" "^7.25.0" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.25.0" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.24.7" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.25.0" + "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.24.7" + "@babel/plugin-syntax-import-attributes" "^7.24.7" + "@babel/plugin-syntax-import-meta" "^7.10.4" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" + "@babel/plugin-transform-arrow-functions" "^7.24.7" + "@babel/plugin-transform-async-generator-functions" "^7.25.0" + "@babel/plugin-transform-async-to-generator" "^7.24.7" + "@babel/plugin-transform-block-scoped-functions" "^7.24.7" + "@babel/plugin-transform-block-scoping" "^7.25.0" + "@babel/plugin-transform-class-properties" "^7.24.7" + "@babel/plugin-transform-class-static-block" "^7.24.7" + "@babel/plugin-transform-classes" "^7.25.0" + "@babel/plugin-transform-computed-properties" "^7.24.7" + "@babel/plugin-transform-destructuring" "^7.24.8" + "@babel/plugin-transform-dotall-regex" "^7.24.7" + "@babel/plugin-transform-duplicate-keys" "^7.24.7" + "@babel/plugin-transform-duplicate-named-capturing-groups-regex" "^7.25.0" + "@babel/plugin-transform-dynamic-import" "^7.24.7" + "@babel/plugin-transform-exponentiation-operator" "^7.24.7" + "@babel/plugin-transform-export-namespace-from" "^7.24.7" + "@babel/plugin-transform-for-of" "^7.24.7" + "@babel/plugin-transform-function-name" "^7.25.1" + "@babel/plugin-transform-json-strings" "^7.24.7" + "@babel/plugin-transform-literals" "^7.25.2" + "@babel/plugin-transform-logical-assignment-operators" "^7.24.7" + "@babel/plugin-transform-member-expression-literals" "^7.24.7" + "@babel/plugin-transform-modules-amd" "^7.24.7" + "@babel/plugin-transform-modules-commonjs" "^7.24.8" + "@babel/plugin-transform-modules-systemjs" "^7.25.0" + "@babel/plugin-transform-modules-umd" "^7.24.7" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.24.7" + "@babel/plugin-transform-new-target" "^7.24.7" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.24.7" + "@babel/plugin-transform-numeric-separator" "^7.24.7" + "@babel/plugin-transform-object-rest-spread" "^7.24.7" + "@babel/plugin-transform-object-super" "^7.24.7" + "@babel/plugin-transform-optional-catch-binding" "^7.24.7" + "@babel/plugin-transform-optional-chaining" "^7.24.8" + "@babel/plugin-transform-parameters" "^7.24.7" + "@babel/plugin-transform-private-methods" "^7.24.7" + "@babel/plugin-transform-private-property-in-object" "^7.24.7" + "@babel/plugin-transform-property-literals" "^7.24.7" + "@babel/plugin-transform-regenerator" "^7.24.7" + "@babel/plugin-transform-reserved-words" "^7.24.7" + "@babel/plugin-transform-shorthand-properties" "^7.24.7" + "@babel/plugin-transform-spread" "^7.24.7" + "@babel/plugin-transform-sticky-regex" "^7.24.7" + "@babel/plugin-transform-template-literals" "^7.24.7" + "@babel/plugin-transform-typeof-symbol" "^7.24.8" + "@babel/plugin-transform-unicode-escapes" "^7.24.7" + "@babel/plugin-transform-unicode-property-regex" "^7.24.7" + "@babel/plugin-transform-unicode-regex" "^7.24.7" + "@babel/plugin-transform-unicode-sets-regex" "^7.24.7" + "@babel/preset-modules" "0.1.6-no-external-plugins" + babel-plugin-polyfill-corejs2 "^0.4.10" + babel-plugin-polyfill-corejs3 "^0.10.4" + babel-plugin-polyfill-regenerator "^0.6.1" + core-js-compat "^3.37.1" + semver "^6.3.1" + +"@babel/preset-modules@0.1.6-no-external-plugins": + version "0.1.6-no-external-plugins" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" + integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + +"@babel/runtime@7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.0.tgz#3af9a91c1b739c569d5d80cc917280919c544ecb" + integrity sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw== + dependencies: + regenerator-runtime "^0.14.0" + +"@babel/runtime@^7.8.4": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.26.0.tgz#8600c2f595f277c60815256418b85356a65173c1" + integrity sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw== + dependencies: + regenerator-runtime "^0.14.0" + +"@babel/template@^7.25.0", "@babel/template@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016" + integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg== + dependencies: + "@babel/code-frame" "^7.25.9" + "@babel/parser" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/traverse@^7.25.0", "@babel/traverse@^7.25.2", "@babel/traverse@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.9.tgz#a50f8fe49e7f69f53de5bea7e413cd35c5e13c84" + integrity sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw== + dependencies: + "@babel/code-frame" "^7.25.9" + "@babel/generator" "^7.25.9" + "@babel/parser" "^7.25.9" + "@babel/template" "^7.25.9" + "@babel/types" "^7.25.9" + debug "^4.3.1" + globals "^11.1.0" + +"@babel/types@^7.24.7", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.4.4": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.0.tgz#deabd08d6b753bc8e0f198f8709fb575e31774ff" + integrity sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA== + dependencies: + "@babel/helper-string-parser" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" + +"@biomejs/biome@1.9.4": + version "1.9.4" + resolved "https://registry.yarnpkg.com/@biomejs/biome/-/biome-1.9.4.tgz#89766281cbc3a0aae865a7ff13d6aaffea2842bf" + integrity sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog== + optionalDependencies: + "@biomejs/cli-darwin-arm64" "1.9.4" + "@biomejs/cli-darwin-x64" "1.9.4" + "@biomejs/cli-linux-arm64" "1.9.4" + "@biomejs/cli-linux-arm64-musl" "1.9.4" + "@biomejs/cli-linux-x64" "1.9.4" + "@biomejs/cli-linux-x64-musl" "1.9.4" + "@biomejs/cli-win32-arm64" "1.9.4" + "@biomejs/cli-win32-x64" "1.9.4" + +"@biomejs/cli-darwin-arm64@1.9.4": + version "1.9.4" + resolved "https://registry.yarnpkg.com/@biomejs/cli-darwin-arm64/-/cli-darwin-arm64-1.9.4.tgz#dfa376d23a54a2d8f17133c92f23c1bf2e62509f" + integrity sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw== + +"@biomejs/cli-darwin-x64@1.9.4": + version "1.9.4" + resolved "https://registry.yarnpkg.com/@biomejs/cli-darwin-x64/-/cli-darwin-x64-1.9.4.tgz#eafc2ce3849d385fc02238aad1ca4a73395a64d9" + integrity sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg== + +"@biomejs/cli-linux-arm64-musl@1.9.4": + version "1.9.4" + resolved "https://registry.yarnpkg.com/@biomejs/cli-linux-arm64-musl/-/cli-linux-arm64-musl-1.9.4.tgz#d780c3e01758fc90f3268357e3f19163d1f84fca" + integrity sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA== + +"@biomejs/cli-linux-arm64@1.9.4": + version "1.9.4" + resolved "https://registry.yarnpkg.com/@biomejs/cli-linux-arm64/-/cli-linux-arm64-1.9.4.tgz#8ed1dd0e89419a4b66a47f95aefb8c46ae6041c9" + integrity sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g== + +"@biomejs/cli-linux-x64-musl@1.9.4": + version "1.9.4" + resolved "https://registry.yarnpkg.com/@biomejs/cli-linux-x64-musl/-/cli-linux-x64-musl-1.9.4.tgz#f36982b966bd671a36671e1de4417963d7db15fb" + integrity sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg== + +"@biomejs/cli-linux-x64@1.9.4": + version "1.9.4" + resolved "https://registry.yarnpkg.com/@biomejs/cli-linux-x64/-/cli-linux-x64-1.9.4.tgz#a0a7f56680c76b8034ddc149dbf398bdd3a462e8" + integrity sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg== + +"@biomejs/cli-win32-arm64@1.9.4": + version "1.9.4" + resolved "https://registry.yarnpkg.com/@biomejs/cli-win32-arm64/-/cli-win32-arm64-1.9.4.tgz#e2ef4e0084e76b7e26f0fc887c5ef1265ea56200" + integrity sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg== + +"@biomejs/cli-win32-x64@1.9.4": + version "1.9.4" + resolved "https://registry.yarnpkg.com/@biomejs/cli-win32-x64/-/cli-win32-x64-1.9.4.tgz#4c7afa90e3970213599b4095e62f87e5972b2340" + integrity sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA== + +"@colors/colors@1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" + integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== + +"@discoveryjs/json-ext@0.6.1": + version "0.6.1" + resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.6.1.tgz#593da7a17a31a72a874e313677183334a49b01c9" + integrity sha512-boghen8F0Q8D+0/Q1/1r6DUEieUJ8w2a1gIknExMSHBsJFOr2+0KUfHiVYBvucPwl3+RU5PFBK833FjFCh3BhA== + +"@esbuild/aix-ppc64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" + integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== + +"@esbuild/aix-ppc64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.23.0.tgz#145b74d5e4a5223489cabdc238d8dad902df5259" + integrity sha512-3sG8Zwa5fMcA9bgqB8AfWPQ+HFke6uD3h1s3RIwUNK8EG7a4buxvuFTs3j1IMs2NXAk9F30C/FF4vxRgQCcmoQ== + +"@esbuild/android-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" + integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== + +"@esbuild/android-arm64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.23.0.tgz#453bbe079fc8d364d4c5545069e8260228559832" + integrity sha512-EuHFUYkAVfU4qBdyivULuu03FhJO4IJN9PGuABGrFy4vUuzk91P2d+npxHcFdpUnfYKy0PuV+n6bKIpHOB3prQ== + +"@esbuild/android-arm@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" + integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== + +"@esbuild/android-arm@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.23.0.tgz#26c806853aa4a4f7e683e519cd9d68e201ebcf99" + integrity sha512-+KuOHTKKyIKgEEqKbGTK8W7mPp+hKinbMBeEnNzjJGyFcWsfrXjSTNluJHCY1RqhxFurdD8uNXQDei7qDlR6+g== + +"@esbuild/android-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" + integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== + +"@esbuild/android-x64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.23.0.tgz#1e51af9a6ac1f7143769f7ee58df5b274ed202e6" + integrity sha512-WRrmKidLoKDl56LsbBMhzTTBxrsVwTKdNbKDalbEZr0tcsBgCLbEtoNthOW6PX942YiYq8HzEnb4yWQMLQuipQ== + +"@esbuild/darwin-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" + integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== + +"@esbuild/darwin-arm64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.23.0.tgz#d996187a606c9534173ebd78c58098a44dd7ef9e" + integrity sha512-YLntie/IdS31H54Ogdn+v50NuoWF5BDkEUFpiOChVa9UnKpftgwzZRrI4J132ETIi+D8n6xh9IviFV3eXdxfow== + +"@esbuild/darwin-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" + integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== + +"@esbuild/darwin-x64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.23.0.tgz#30c8f28a7ef4e32fe46501434ebe6b0912e9e86c" + integrity sha512-IMQ6eme4AfznElesHUPDZ+teuGwoRmVuuixu7sv92ZkdQcPbsNHzutd+rAfaBKo8YK3IrBEi9SLLKWJdEvJniQ== + +"@esbuild/freebsd-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" + integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== + +"@esbuild/freebsd-arm64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.0.tgz#30f4fcec8167c08a6e8af9fc14b66152232e7fb4" + integrity sha512-0muYWCng5vqaxobq6LB3YNtevDFSAZGlgtLoAc81PjUfiFz36n4KMpwhtAd4he8ToSI3TGyuhyx5xmiWNYZFyw== + +"@esbuild/freebsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" + integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== + +"@esbuild/freebsd-x64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.23.0.tgz#1003a6668fe1f5d4439e6813e5b09a92981bc79d" + integrity sha512-XKDVu8IsD0/q3foBzsXGt/KjD/yTKBCIwOHE1XwiXmrRwrX6Hbnd5Eqn/WvDekddK21tfszBSrE/WMaZh+1buQ== + +"@esbuild/linux-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" + integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== + +"@esbuild/linux-arm64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.23.0.tgz#3b9a56abfb1410bb6c9138790f062587df3e6e3a" + integrity sha512-j1t5iG8jE7BhonbsEg5d9qOYcVZv/Rv6tghaXM/Ug9xahM0nX/H2gfu6X6z11QRTMT6+aywOMA8TDkhPo8aCGw== + +"@esbuild/linux-arm@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" + integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== + +"@esbuild/linux-arm@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.23.0.tgz#237a8548e3da2c48cd79ae339a588f03d1889aad" + integrity sha512-SEELSTEtOFu5LPykzA395Mc+54RMg1EUgXP+iw2SJ72+ooMwVsgfuwXo5Fn0wXNgWZsTVHwY2cg4Vi/bOD88qw== + +"@esbuild/linux-ia32@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" + integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== + +"@esbuild/linux-ia32@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.23.0.tgz#4269cd19cb2de5de03a7ccfc8855dde3d284a238" + integrity sha512-P7O5Tkh2NbgIm2R6x1zGJJsnacDzTFcRWZyTTMgFdVit6E98LTxO+v8LCCLWRvPrjdzXHx9FEOA8oAZPyApWUA== + +"@esbuild/linux-loong64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" + integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== + +"@esbuild/linux-loong64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.23.0.tgz#82b568f5658a52580827cc891cb69d2cb4f86280" + integrity sha512-InQwepswq6urikQiIC/kkx412fqUZudBO4SYKu0N+tGhXRWUqAx+Q+341tFV6QdBifpjYgUndV1hhMq3WeJi7A== + +"@esbuild/linux-mips64el@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" + integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== + +"@esbuild/linux-mips64el@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.23.0.tgz#9a57386c926262ae9861c929a6023ed9d43f73e5" + integrity sha512-J9rflLtqdYrxHv2FqXE2i1ELgNjT+JFURt/uDMoPQLcjWQA5wDKgQA4t/dTqGa88ZVECKaD0TctwsUfHbVoi4w== + +"@esbuild/linux-ppc64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" + integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== + +"@esbuild/linux-ppc64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.23.0.tgz#f3a79fd636ba0c82285d227eb20ed8e31b4444f6" + integrity sha512-cShCXtEOVc5GxU0fM+dsFD10qZ5UpcQ8AM22bYj0u/yaAykWnqXJDpd77ublcX6vdDsWLuweeuSNZk4yUxZwtw== + +"@esbuild/linux-riscv64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" + integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== + +"@esbuild/linux-riscv64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.23.0.tgz#f9d2ef8356ce6ce140f76029680558126b74c780" + integrity sha512-HEtaN7Y5UB4tZPeQmgz/UhzoEyYftbMXrBCUjINGjh3uil+rB/QzzpMshz3cNUxqXN7Vr93zzVtpIDL99t9aRw== + +"@esbuild/linux-s390x@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" + integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== + +"@esbuild/linux-s390x@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.23.0.tgz#45390f12e802201f38a0229e216a6aed4351dfe8" + integrity sha512-WDi3+NVAuyjg/Wxi+o5KPqRbZY0QhI9TjrEEm+8dmpY9Xir8+HE/HNx2JoLckhKbFopW0RdO2D72w8trZOV+Wg== + +"@esbuild/linux-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" + integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== + +"@esbuild/linux-x64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.23.0.tgz#c8409761996e3f6db29abcf9b05bee8d7d80e910" + integrity sha512-a3pMQhUEJkITgAw6e0bWA+F+vFtCciMjW/LPtoj99MhVt+Mfb6bbL9hu2wmTZgNd994qTAEw+U/r6k3qHWWaOQ== + +"@esbuild/netbsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" + integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== + +"@esbuild/netbsd-x64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.23.0.tgz#ba70db0114380d5f6cfb9003f1d378ce989cd65c" + integrity sha512-cRK+YDem7lFTs2Q5nEv/HHc4LnrfBCbH5+JHu6wm2eP+d8OZNoSMYgPZJq78vqQ9g+9+nMuIsAO7skzphRXHyw== + +"@esbuild/openbsd-arm64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.0.tgz#72fc55f0b189f7a882e3cf23f332370d69dfd5db" + integrity sha512-suXjq53gERueVWu0OKxzWqk7NxiUWSUlrxoZK7usiF50C6ipColGR5qie2496iKGYNLhDZkPxBI3erbnYkU0rQ== + +"@esbuild/openbsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" + integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== + +"@esbuild/openbsd-x64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.23.0.tgz#b6ae7a0911c18fe30da3db1d6d17a497a550e5d8" + integrity sha512-6p3nHpby0DM/v15IFKMjAaayFhqnXV52aEmv1whZHX56pdkK+MEaLoQWj+H42ssFarP1PcomVhbsR4pkz09qBg== + +"@esbuild/sunos-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" + integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== + +"@esbuild/sunos-x64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.23.0.tgz#58f0d5e55b9b21a086bfafaa29f62a3eb3470ad8" + integrity sha512-BFelBGfrBwk6LVrmFzCq1u1dZbG4zy/Kp93w2+y83Q5UGYF1d8sCzeLI9NXjKyujjBBniQa8R8PzLFAUrSM9OA== + +"@esbuild/win32-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" + integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== + +"@esbuild/win32-arm64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.23.0.tgz#b858b2432edfad62e945d5c7c9e5ddd0f528ca6d" + integrity sha512-lY6AC8p4Cnb7xYHuIxQ6iYPe6MfO2CC43XXKo9nBXDb35krYt7KGhQnOkRGar5psxYkircpCqfbNDB4uJbS2jQ== + +"@esbuild/win32-ia32@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" + integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== + +"@esbuild/win32-ia32@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.23.0.tgz#167ef6ca22a476c6c0c014a58b4f43ae4b80dec7" + integrity sha512-7L1bHlOTcO4ByvI7OXVI5pNN6HSu6pUQq9yodga8izeuB1KcT2UkHaH6118QJwopExPn0rMHIseCTx1CRo/uNA== + +"@esbuild/win32-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" + integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== + +"@esbuild/win32-x64@0.23.0": + version "0.23.0" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.23.0.tgz#db44a6a08520b5f25bbe409f34a59f2d4bcc7ced" + integrity sha512-Arm+WgUFLUATuoxCJcahGuk6Yj9Pzxd6l11Zb/2aAuv5kWWvvfhLFo2fni4uSK5vzlUdCGZ/BdV5tH8klj8p8g== + +"@inquirer/checkbox@^2.4.7": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@inquirer/checkbox/-/checkbox-2.5.0.tgz#41c5c9dd332c0a8fa159be23982ce080d0b199d4" + integrity sha512-sMgdETOfi2dUHT8r7TT1BTKOwNvdDGFDXYWtQ2J69SvlYNntk9I/gJe7r5yvMwwsuKnYbuRs3pNhx4tgNck5aA== + dependencies: + "@inquirer/core" "^9.1.0" + "@inquirer/figures" "^1.0.5" + "@inquirer/type" "^1.5.3" + ansi-escapes "^4.3.2" + yoctocolors-cjs "^2.1.2" + +"@inquirer/confirm@3.1.22": + version "3.1.22" + resolved "https://registry.yarnpkg.com/@inquirer/confirm/-/confirm-3.1.22.tgz#23990624c11f60c6f7a5b0558c7505c35076a037" + integrity sha512-gsAKIOWBm2Q87CDfs9fEo7wJT3fwWIJfnDGMn9Qy74gBnNFOACDNfhUzovubbJjWnKLGBln7/NcSmZwj5DuEXg== + dependencies: + "@inquirer/core" "^9.0.10" + "@inquirer/type" "^1.5.2" + +"@inquirer/confirm@^3.1.22": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@inquirer/confirm/-/confirm-3.2.0.tgz#6af1284670ea7c7d95e3f1253684cfbd7228ad6a" + integrity sha512-oOIwPs0Dvq5220Z8lGL/6LHRTEr9TgLHmiI99Rj1PJ1p1czTys+olrgBqZk4E2qC0YTzeHprxSQmoHioVdJ7Lw== + dependencies: + "@inquirer/core" "^9.1.0" + "@inquirer/type" "^1.5.3" + +"@inquirer/core@^9.0.10", "@inquirer/core@^9.1.0": + version "9.2.1" + resolved "https://registry.yarnpkg.com/@inquirer/core/-/core-9.2.1.tgz#677c49dee399c9063f31e0c93f0f37bddc67add1" + integrity sha512-F2VBt7W/mwqEU4bL0RnHNZmC/OxzNx9cOYxHqnXX3MP6ruYvZUZAW9imgN9+h/uBT/oP8Gh888J2OZSbjSeWcg== + dependencies: + "@inquirer/figures" "^1.0.6" + "@inquirer/type" "^2.0.0" + "@types/mute-stream" "^0.0.4" + "@types/node" "^22.5.5" + "@types/wrap-ansi" "^3.0.0" + ansi-escapes "^4.3.2" + cli-width "^4.1.0" + mute-stream "^1.0.0" + signal-exit "^4.1.0" + strip-ansi "^6.0.1" + wrap-ansi "^6.2.0" + yoctocolors-cjs "^2.1.2" + +"@inquirer/editor@^2.1.22": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@inquirer/editor/-/editor-2.2.0.tgz#a41eb7b151bd9a6bc3c0b69219d02d82547bc387" + integrity sha512-9KHOpJ+dIL5SZli8lJ6xdaYLPPzB8xB9GZItg39MBybzhxA16vxmszmQFrRwbOA918WA2rvu8xhDEg/p6LXKbw== + dependencies: + "@inquirer/core" "^9.1.0" + "@inquirer/type" "^1.5.3" + external-editor "^3.1.0" + +"@inquirer/expand@^2.1.22": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@inquirer/expand/-/expand-2.3.0.tgz#afc44aee303315a85563e9d0275e658f0ee0e701" + integrity sha512-qnJsUcOGCSG1e5DTOErmv2BPQqrtT6uzqn1vI/aYGiPKq+FgslGZmtdnXbhuI7IlT7OByDoEEqdnhUnVR2hhLw== + dependencies: + "@inquirer/core" "^9.1.0" + "@inquirer/type" "^1.5.3" + yoctocolors-cjs "^2.1.2" + +"@inquirer/figures@^1.0.5", "@inquirer/figures@^1.0.6": + version "1.0.8" + resolved "https://registry.yarnpkg.com/@inquirer/figures/-/figures-1.0.8.tgz#d9e414a1376a331a0e71b151fea27c48845788b0" + integrity sha512-tKd+jsmhq21AP1LhexC0pPwsCxEhGgAkg28byjJAd+xhmIs8LUX8JbUc3vBf3PhLxWiB5EvyBE5X7JSPAqMAqg== + +"@inquirer/input@^2.2.9": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@inquirer/input/-/input-2.3.0.tgz#9b99022f53780fecc842908f3f319b52a5a16865" + integrity sha512-XfnpCStx2xgh1LIRqPXrTNEEByqQWoxsWYzNRSEUxJ5c6EQlhMogJ3vHKu8aXuTacebtaZzMAHwEL0kAflKOBw== + dependencies: + "@inquirer/core" "^9.1.0" + "@inquirer/type" "^1.5.3" + +"@inquirer/number@^1.0.10": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@inquirer/number/-/number-1.1.0.tgz#4dac004021ea67c89552a261564f103a494cac96" + integrity sha512-ilUnia/GZUtfSZy3YEErXLJ2Sljo/mf9fiKc08n18DdwdmDbOzRcTv65H1jjDvlsAuvdFXf4Sa/aL7iw/NanVA== + dependencies: + "@inquirer/core" "^9.1.0" + "@inquirer/type" "^1.5.3" + +"@inquirer/password@^2.1.22": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@inquirer/password/-/password-2.2.0.tgz#0b6f26336c259c8a9e5f5a3f2e1a761564f764ba" + integrity sha512-5otqIpgsPYIshqhgtEwSspBQE40etouR8VIxzpJkv9i0dVHIpyhiivbkH9/dGiMLdyamT54YRdGJLfl8TFnLHg== + dependencies: + "@inquirer/core" "^9.1.0" + "@inquirer/type" "^1.5.3" + ansi-escapes "^4.3.2" + +"@inquirer/prompts@5.3.8": + version "5.3.8" + resolved "https://registry.yarnpkg.com/@inquirer/prompts/-/prompts-5.3.8.tgz#f394050d95076c2f1b046be324f06f619b257c3e" + integrity sha512-b2BudQY/Si4Y2a0PdZZL6BeJtl8llgeZa7U2j47aaJSCeAl1e4UI7y8a9bSkO3o/ZbZrgT5muy/34JbsjfIWxA== + dependencies: + "@inquirer/checkbox" "^2.4.7" + "@inquirer/confirm" "^3.1.22" + "@inquirer/editor" "^2.1.22" + "@inquirer/expand" "^2.1.22" + "@inquirer/input" "^2.2.9" + "@inquirer/number" "^1.0.10" + "@inquirer/password" "^2.1.22" + "@inquirer/rawlist" "^2.2.4" + "@inquirer/search" "^1.0.7" + "@inquirer/select" "^2.4.7" + +"@inquirer/rawlist@^2.2.4": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@inquirer/rawlist/-/rawlist-2.3.0.tgz#6b2c0da39c1cd855af5608b2d627681cdac7277d" + integrity sha512-zzfNuINhFF7OLAtGHfhwOW2TlYJyli7lOUoJUXw/uyklcwalV6WRXBXtFIicN8rTRK1XTiPWB4UY+YuW8dsnLQ== + dependencies: + "@inquirer/core" "^9.1.0" + "@inquirer/type" "^1.5.3" + yoctocolors-cjs "^2.1.2" + +"@inquirer/search@^1.0.7": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@inquirer/search/-/search-1.1.0.tgz#665928cac2326b9501ddafbb8606ce4823b3106b" + integrity sha512-h+/5LSj51dx7hp5xOn4QFnUaKeARwUCLs6mIhtkJ0JYPBLmEYjdHSYh7I6GrLg9LwpJ3xeX0FZgAG1q0QdCpVQ== + dependencies: + "@inquirer/core" "^9.1.0" + "@inquirer/figures" "^1.0.5" + "@inquirer/type" "^1.5.3" + yoctocolors-cjs "^2.1.2" + +"@inquirer/select@^2.4.7": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@inquirer/select/-/select-2.5.0.tgz#345c6908ecfaeef3d84ddd2f9feb2f487c558efb" + integrity sha512-YmDobTItPP3WcEI86GvPo+T2sRHkxxOq/kXmsBjHS5BVXUgvgZ5AfJjkvQvZr03T81NnI3KrrRuMzeuYUQRFOA== + dependencies: + "@inquirer/core" "^9.1.0" + "@inquirer/figures" "^1.0.5" + "@inquirer/type" "^1.5.3" + ansi-escapes "^4.3.2" + yoctocolors-cjs "^2.1.2" + +"@inquirer/type@^1.5.1", "@inquirer/type@^1.5.2", "@inquirer/type@^1.5.3": + version "1.5.5" + resolved "https://registry.yarnpkg.com/@inquirer/type/-/type-1.5.5.tgz#303ea04ce7ad2e585b921b662b3be36ef7b4f09b" + integrity sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA== + dependencies: + mute-stream "^1.0.0" + +"@inquirer/type@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@inquirer/type/-/type-2.0.0.tgz#08fa513dca2cb6264fe1b0a2fabade051444e3f6" + integrity sha512-XvJRx+2KR3YXyYtPUUy+qd9i7p+GO9Ko6VIIpWlBrpWwXDv8WLFeHTxz35CfQFUiBMLXlGHhGzys7lqit9gWag== + dependencies: + mute-stream "^1.0.0" + +"@isaacs/cliui@^8.0.2": + version "8.0.2" + resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" + integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== + dependencies: + string-width "^5.1.2" + string-width-cjs "npm:string-width@^4.2.0" + strip-ansi "^7.0.1" + strip-ansi-cjs "npm:strip-ansi@^6.0.1" + wrap-ansi "^8.1.0" + wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" + +"@istanbuljs/schema@^0.1.2", "@istanbuljs/schema@^0.1.3": + version "0.1.3" + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" + integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== + +"@jridgewell/gen-mapping@^0.3.5": + version "0.3.5" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" + integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== + dependencies: + "@jridgewell/set-array" "^1.2.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.24" + +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== + +"@jridgewell/set-array@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" + integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== + +"@jridgewell/source-map@^0.3.3": + version "0.3.6" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.6.tgz#9d71ca886e32502eb9362c9a74a46787c36df81a" + integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" + integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== + +"@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": + version "0.3.25" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" + integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + +"@jsonjoy.com/base64@^1.1.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/base64/-/base64-1.1.2.tgz#cf8ea9dcb849b81c95f14fc0aaa151c6b54d2578" + integrity sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA== + +"@jsonjoy.com/json-pack@^1.0.3": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/json-pack/-/json-pack-1.1.0.tgz#33ca57ee29d12feef540f2139225597469dec894" + integrity sha512-zlQONA+msXPPwHWZMKFVS78ewFczIll5lXiVPwFPCZUsrOKdxc2AvxU1HoNBmMRhqDZUR9HkC3UOm+6pME6Xsg== + dependencies: + "@jsonjoy.com/base64" "^1.1.1" + "@jsonjoy.com/util" "^1.1.2" + hyperdyperid "^1.2.0" + thingies "^1.20.0" + +"@jsonjoy.com/util@^1.1.2", "@jsonjoy.com/util@^1.3.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/util/-/util-1.5.0.tgz#6008e35b9d9d8ee27bc4bfaa70c8cbf33a537b4c" + integrity sha512-ojoNsrIuPI9g6o8UxhraZQSyF2ByJanAY4cTFbc8Mf2AXEF4aQRGY1dJxyJpuyav8r9FGflEt/Ff3u5Nt6YMPA== + +"@leichtgewicht/ip-codec@^2.0.1": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz#4fc56c15c580b9adb7dc3c333a134e540b44bfb1" + integrity sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw== + +"@listr2/prompt-adapter-inquirer@2.0.15": + version "2.0.15" + resolved "https://registry.yarnpkg.com/@listr2/prompt-adapter-inquirer/-/prompt-adapter-inquirer-2.0.15.tgz#45f13178b13327a28a220057a34a886cab18218e" + integrity sha512-MZrGem/Ujjd4cPTLYDfCZK2iKKeiO/8OX13S6jqxldLs0Prf2aGqVlJ77nMBqMv7fzqgXEgjrNHLXcKR8l9lOg== + dependencies: + "@inquirer/type" "^1.5.1" + +"@lmdb/lmdb-darwin-arm64@3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.0.13.tgz#b09af72bde5a9933abfab34dc5c10e5b6c16d4a5" + integrity sha512-uiKPB0Fv6WEEOZjruu9a6wnW/8jrjzlZbxXscMB8kuCJ1k6kHpcBnuvaAWcqhbI7rqX5GKziwWEdD+wi2gNLfA== + +"@lmdb/lmdb-darwin-x64@3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.0.13.tgz#bc27aadf475954254b787ef609a9f598adc8ac6b" + integrity sha512-bEVIIfK5mSQoG1R19qA+fJOvCB+0wVGGnXHT3smchBVahYBdlPn2OsZZKzlHWfb1E+PhLBmYfqB5zQXFP7hJig== + +"@lmdb/lmdb-linux-arm64@3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.0.13.tgz#fd49c447e1e8304fc4101bb7e6b641f08d69ac28" + integrity sha512-afbVrsMgZ9dUTNUchFpj5VkmJRxvht/u335jUJ7o23YTbNbnpmXif3VKQGCtnjSh+CZaqm6N3CPG8KO3zwyZ1Q== + +"@lmdb/lmdb-linux-arm@3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.0.13.tgz#14ebce383cbc9d51cbe12581dfec3ef8ffc6b685" + integrity sha512-Yml1KlMzOnXj/tnW7yX8U78iAzTk39aILYvCPbqeewAq1kSzl+w59k/fiVkTBfvDi/oW/5YRxL+Fq+Y1Fr1r2Q== + +"@lmdb/lmdb-linux-x64@3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.0.13.tgz#49b9bfcd52df55ccc9e466cf27c0651e5434b320" + integrity sha512-vOtxu0xC0SLdQ2WRXg8Qgd8T32ak4SPqk5zjItRszrJk2BdeXqfGxBJbP7o4aOvSPSmSSv46Lr1EP4HXU8v7Kg== + +"@lmdb/lmdb-win32-x64@3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.0.13.tgz#93bcd6dc24afd1cc60dd88a65b9e4fab32dcf397" + integrity sha512-UCrMJQY/gJnOl3XgbWRZZUvGGBuKy6i0YNSptgMzHBjs+QYDYR1Mt/RLTOPy4fzzves65O1EDmlL//OzEqoLlA== + +"@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.3.tgz#9edec61b22c3082018a79f6d1c30289ddf3d9d11" + integrity sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw== + +"@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.3.tgz#33677a275204898ad8acbf62734fc4dc0b6a4855" + integrity sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw== + +"@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.3.tgz#19edf7cdc2e7063ee328403c1d895a86dd28f4bb" + integrity sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg== + +"@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.3.tgz#94fb0543ba2e28766c3fc439cabbe0440ae70159" + integrity sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw== + +"@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.3.tgz#4a0609ab5fe44d07c9c60a11e4484d3c38bbd6e3" + integrity sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg== + +"@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.3.tgz#0aa5502d547b57abfc4ac492de68e2006e417242" + integrity sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ== + +"@ngtools/webpack@18.2.12": + version "18.2.12" + resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-18.2.12.tgz#876a09f2b3acb0d09d93e906a9ba330d92703568" + integrity sha512-FFJAwtWbtpncMOVNuULPBwFJB7GSjiUwO93eGTzRp8O4EPQ8lCQeFbezQm/NP34+T0+GBLGzPSuQT+muob8YKw== + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@npmcli/agent@^2.0.0": + version "2.2.2" + resolved "https://registry.yarnpkg.com/@npmcli/agent/-/agent-2.2.2.tgz#967604918e62f620a648c7975461c9c9e74fc5d5" + integrity sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og== + dependencies: + agent-base "^7.1.0" + http-proxy-agent "^7.0.0" + https-proxy-agent "^7.0.1" + lru-cache "^10.0.1" + socks-proxy-agent "^8.0.3" + +"@npmcli/fs@^3.1.0": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-3.1.1.tgz#59cdaa5adca95d135fc00f2bb53f5771575ce726" + integrity sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg== + dependencies: + semver "^7.3.5" + +"@npmcli/git@^5.0.0": + version "5.0.8" + resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-5.0.8.tgz#8ba3ff8724192d9ccb2735a2aa5380a992c5d3d1" + integrity sha512-liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ== + dependencies: + "@npmcli/promise-spawn" "^7.0.0" + ini "^4.1.3" + lru-cache "^10.0.1" + npm-pick-manifest "^9.0.0" + proc-log "^4.0.0" + promise-inflight "^1.0.1" + promise-retry "^2.0.1" + semver "^7.3.5" + which "^4.0.0" + +"@npmcli/installed-package-contents@^2.0.1": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-2.1.0.tgz#63048e5f6e40947a3a88dcbcb4fd9b76fdd37c17" + integrity sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w== + dependencies: + npm-bundled "^3.0.0" + npm-normalize-package-bin "^3.0.0" + +"@npmcli/node-gyp@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz#101b2d0490ef1aa20ed460e4c0813f0db560545a" + integrity sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA== + +"@npmcli/package-json@^5.0.0", "@npmcli/package-json@^5.1.0": + version "5.2.1" + resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-5.2.1.tgz#df69477b1023b81ff8503f2b9db4db4faea567ed" + integrity sha512-f7zYC6kQautXHvNbLEWgD/uGu1+xCn9izgqBfgItWSx22U0ZDekxN08A1vM8cTxj/cRVe0Q94Ode+tdoYmIOOQ== + dependencies: + "@npmcli/git" "^5.0.0" + glob "^10.2.2" + hosted-git-info "^7.0.0" + json-parse-even-better-errors "^3.0.0" + normalize-package-data "^6.0.0" + proc-log "^4.0.0" + semver "^7.5.3" + +"@npmcli/promise-spawn@^7.0.0": + version "7.0.2" + resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-7.0.2.tgz#1d53d34ffeb5d151bfa8ec661bcccda8bbdfd532" + integrity sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ== + dependencies: + which "^4.0.0" + +"@npmcli/redact@^2.0.0": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@npmcli/redact/-/redact-2.0.1.tgz#95432fd566e63b35c04494621767a4312c316762" + integrity sha512-YgsR5jCQZhVmTJvjduTOIHph0L73pK8xwMVaDY0PatySqVM9AZj93jpoXYSJqfHFxFkN9dmqTw6OiqExsS3LPw== + +"@npmcli/run-script@^8.0.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-8.1.0.tgz#a563e5e29b1ca4e648a6b1bbbfe7220b4bfe39fc" + integrity sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg== + dependencies: + "@npmcli/node-gyp" "^3.0.0" + "@npmcli/package-json" "^5.0.0" + "@npmcli/promise-spawn" "^7.0.0" + node-gyp "^10.0.0" + proc-log "^4.0.0" + which "^4.0.0" + +"@pkgjs/parseargs@^0.11.0": + version "0.11.0" + resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" + integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== + +"@rollup/rollup-android-arm-eabi@4.22.4": + version "4.22.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.4.tgz#8b613b9725e8f9479d142970b106b6ae878610d5" + integrity sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w== + +"@rollup/rollup-android-arm-eabi@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.27.2.tgz#9fa3640a1f435bc3800b8d703d3f18823962b045" + integrity sha512-Tj+j7Pyzd15wAdSJswvs5CJzJNV+qqSUcr/aCD+jpQSBtXvGnV0pnrjoc8zFTe9fcKCatkpFpOO7yAzpO998HA== + +"@rollup/rollup-android-arm64@4.22.4": + version "4.22.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.4.tgz#654ca1049189132ff602bfcf8df14c18da1f15fb" + integrity sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA== + +"@rollup/rollup-android-arm64@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.27.2.tgz#272fcb6416c60b2225192379fa2c5e63b48f19dc" + integrity sha512-xsPeJgh2ThBpUqlLgRfiVYBEf/P1nWlWvReG+aBWfNv3XEBpa6ZCmxSVnxJgLgkNz4IbxpLy64h2gCmAAQLneQ== + +"@rollup/rollup-darwin-arm64@4.22.4": + version "4.22.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.4.tgz#6d241d099d1518ef0c2205d96b3fa52e0fe1954b" + integrity sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q== + +"@rollup/rollup-darwin-arm64@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.27.2.tgz#03c63fd652bd4d522f366b1550526fd8c09c9dd8" + integrity sha512-KnXU4m9MywuZFedL35Z3PuwiTSn/yqRIhrEA9j+7OSkji39NzVkgxuxTYg5F8ryGysq4iFADaU5osSizMXhU2A== + +"@rollup/rollup-darwin-x64@4.22.4": + version "4.22.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.4.tgz#42bd19d292a57ee11734c980c4650de26b457791" + integrity sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw== + +"@rollup/rollup-darwin-x64@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.27.2.tgz#268f23bc2beb3be98135ab499e4e6cdaf7c8993f" + integrity sha512-Hj77A3yTvUeCIx/Vi+4d4IbYhyTwtHj07lVzUgpUq9YpJSEiGJj4vXMKwzJ3w5zp5v3PFvpJNgc/J31smZey6g== + +"@rollup/rollup-freebsd-arm64@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.27.2.tgz#ee5421bd8b3b9e1e9402c0328c3b02cde7869404" + integrity sha512-RjgKf5C3xbn8gxvCm5VgKZ4nn0pRAIe90J0/fdHUsgztd3+Zesb2lm2+r6uX4prV2eUByuxJNdt647/1KPRq5g== + +"@rollup/rollup-freebsd-x64@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.27.2.tgz#2886b9ef04bca8e8334eaf378717eff87bf3be13" + integrity sha512-duq21FoXwQtuws+V9H6UZ+eCBc7fxSpMK1GQINKn3fAyd9DFYKPJNcUhdIKOrMFjLEJgQskoMoiuizMt+dl20g== + +"@rollup/rollup-linux-arm-gnueabihf@4.22.4": + version "4.22.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.4.tgz#f23555ee3d8fe941c5c5fd458cd22b65eb1c2232" + integrity sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ== + +"@rollup/rollup-linux-arm-gnueabihf@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.27.2.tgz#0c17a3c31bab9e8519038e7bf15a81e0ac35dcd3" + integrity sha512-6npqOKEPRZkLrMcvyC/32OzJ2srdPzCylJjiTJT2c0bwwSGm7nz2F9mNQ1WrAqCBZROcQn91Fno+khFhVijmFA== + +"@rollup/rollup-linux-arm-musleabihf@4.22.4": + version "4.22.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.4.tgz#f3bbd1ae2420f5539d40ac1fde2b38da67779baa" + integrity sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg== + +"@rollup/rollup-linux-arm-musleabihf@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.27.2.tgz#6893bfa6d87a4e8d7f79612803ef0a69787bef3c" + integrity sha512-V9Xg6eXtgBtHq2jnuQwM/jr2mwe2EycnopO8cbOvpzFuySCGtKlPCI3Hj9xup/pJK5Q0388qfZZy2DqV2J8ftw== + +"@rollup/rollup-linux-arm64-gnu@4.22.4": + version "4.22.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.4.tgz#7abe900120113e08a1f90afb84c7c28774054d15" + integrity sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw== + +"@rollup/rollup-linux-arm64-gnu@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.27.2.tgz#560ecf7f12dbb33a93fe19d9791211283fe4b0e0" + integrity sha512-uCFX9gtZJoQl2xDTpRdseYuNqyKkuMDtH6zSrBTA28yTfKyjN9hQ2B04N5ynR8ILCoSDOrG/Eg+J2TtJ1e/CSA== + +"@rollup/rollup-linux-arm64-musl@4.22.4": + version "4.22.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.4.tgz#9e655285c8175cd44f57d6a1e8e5dedfbba1d820" + integrity sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA== + +"@rollup/rollup-linux-arm64-musl@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.27.2.tgz#fd555c67a9a99927ef5e904ea4b3143915d1e44f" + integrity sha512-/PU9P+7Rkz8JFYDHIi+xzHabOu9qEWR07L5nWLIUsvserrxegZExKCi2jhMZRd0ATdboKylu/K5yAXbp7fYFvA== + +"@rollup/rollup-linux-powerpc64le-gnu@4.22.4": + version "4.22.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.4.tgz#9a79ae6c9e9d8fe83d49e2712ecf4302db5bef5e" + integrity sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg== + +"@rollup/rollup-linux-powerpc64le-gnu@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.27.2.tgz#c588dbaacc1809a95a49dc2e954b76044eb368f5" + integrity sha512-eCHmol/dT5odMYi/N0R0HC8V8QE40rEpkyje/ZAXJYNNoSfrObOvG/Mn+s1F/FJyB7co7UQZZf6FuWnN6a7f4g== + +"@rollup/rollup-linux-riscv64-gnu@4.22.4": + version "4.22.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.4.tgz#67ac70eca4ace8e2942fabca95164e8874ab8128" + integrity sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA== + +"@rollup/rollup-linux-riscv64-gnu@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.27.2.tgz#9ebdec626efffe3a8676958ae7e5992cfdd2ec55" + integrity sha512-DEP3Njr9/ADDln3kNi76PXonLMSSMiCir0VHXxmGSHxCxDfQ70oWjHcJGfiBugzaqmYdTC7Y+8Int6qbnxPBIQ== + +"@rollup/rollup-linux-s390x-gnu@4.22.4": + version "4.22.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.4.tgz#9f883a7440f51a22ed7f99e1d070bd84ea5005fc" + integrity sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q== + +"@rollup/rollup-linux-s390x-gnu@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.27.2.tgz#4941df3416caeecd265e718aa9e0a20efcb187bf" + integrity sha512-NHGo5i6IE/PtEPh5m0yw5OmPMpesFnzMIS/lzvN5vknnC1sXM5Z/id5VgcNPgpD+wHmIcuYYgW+Q53v+9s96lQ== + +"@rollup/rollup-linux-x64-gnu@4.22.4": + version "4.22.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.4.tgz#70116ae6c577fe367f58559e2cffb5641a1dd9d0" + integrity sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg== + +"@rollup/rollup-linux-x64-gnu@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.27.2.tgz#8c2df25367b4814727d32d74d7028f901c6288b1" + integrity sha512-PaW2DY5Tan+IFvNJGHDmUrORadbe/Ceh8tQxi8cmdQVCCYsLoQo2cuaSj+AU+YRX8M4ivS2vJ9UGaxfuNN7gmg== + +"@rollup/rollup-linux-x64-musl@4.22.4": + version "4.22.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.4.tgz#f473f88219feb07b0b98b53a7923be716d1d182f" + integrity sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g== + +"@rollup/rollup-linux-x64-musl@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.27.2.tgz#b93cf65c2beb3d6a7139247ba6a948014502dcfb" + integrity sha512-dOlWEMg2gI91Qx5I/HYqOD6iqlJspxLcS4Zlg3vjk1srE67z5T2Uz91yg/qA8sY0XcwQrFzWWiZhMNERylLrpQ== + +"@rollup/rollup-win32-arm64-msvc@4.22.4": + version "4.22.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.4.tgz#4349482d17f5d1c58604d1c8900540d676f420e0" + integrity sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw== + +"@rollup/rollup-win32-arm64-msvc@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.27.2.tgz#3ccf1f8a7e74ca22ad9cf258d31077320cfac19e" + integrity sha512-euMIv/4x5Y2/ImlbGl88mwKNXDsvzbWUlT7DFky76z2keajCtcbAsN9LUdmk31hAoVmJJYSThgdA0EsPeTr1+w== + +"@rollup/rollup-win32-ia32-msvc@4.22.4": + version "4.22.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.4.tgz#a6fc39a15db618040ec3c2a24c1e26cb5f4d7422" + integrity sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g== + +"@rollup/rollup-win32-ia32-msvc@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.27.2.tgz#9294246ee7ab3021026fdb434f16d9f7d02a9c91" + integrity sha512-RsnE6LQkUHlkC10RKngtHNLxb7scFykEbEwOFDjr3CeCMG+Rr+cKqlkKc2/wJ1u4u990urRHCbjz31x84PBrSQ== + +"@rollup/rollup-win32-x64-msvc@4.22.4": + version "4.22.4" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.4.tgz#3dd5d53e900df2a40841882c02e56f866c04d202" + integrity sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q== + +"@rollup/rollup-win32-x64-msvc@4.27.2": + version "4.27.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.27.2.tgz#dd46f94fb22ea3be0b79193f721b3510fb428a1d" + integrity sha512-foJM5vv+z2KQmn7emYdDLyTbkoO5bkHZE1oth2tWbQNGW7mX32d46Hz6T0MqXdWS2vBZhaEtHqdy9WYwGfiliA== + +"@schematics/angular@18.2.12": + version "18.2.12" + resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-18.2.12.tgz#28df36bcd34e85a33dbd0d39932d5ca2de2a9e52" + integrity sha512-sIoeipsisK5eTLW3XuNZYcal83AfslBbgI7LnV+3VrXwpasKPGHwo2ZdwhCd2IXAkuJ02Iyu7MyV0aQRM9i/3g== + dependencies: + "@angular-devkit/core" "18.2.12" + "@angular-devkit/schematics" "18.2.12" + jsonc-parser "3.3.1" + +"@sigstore/bundle@^2.3.2": + version "2.3.2" + resolved "https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-2.3.2.tgz#ad4dbb95d665405fd4a7a02c8a073dbd01e4e95e" + integrity sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA== + dependencies: + "@sigstore/protobuf-specs" "^0.3.2" + +"@sigstore/core@^1.0.0", "@sigstore/core@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@sigstore/core/-/core-1.1.0.tgz#5583d8f7ffe599fa0a89f2bf289301a5af262380" + integrity sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg== + +"@sigstore/protobuf-specs@^0.3.2": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.3.2.tgz#5becf88e494a920f548d0163e2978f81b44b7d6f" + integrity sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw== + +"@sigstore/sign@^2.3.2": + version "2.3.2" + resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-2.3.2.tgz#d3d01e56d03af96fd5c3a9b9897516b1233fc1c4" + integrity sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA== + dependencies: + "@sigstore/bundle" "^2.3.2" + "@sigstore/core" "^1.0.0" + "@sigstore/protobuf-specs" "^0.3.2" + make-fetch-happen "^13.0.1" + proc-log "^4.2.0" + promise-retry "^2.0.1" + +"@sigstore/tuf@^2.3.4": + version "2.3.4" + resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-2.3.4.tgz#da1d2a20144f3b87c0172920cbc8dcc7851ca27c" + integrity sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw== + dependencies: + "@sigstore/protobuf-specs" "^0.3.2" + tuf-js "^2.2.1" + +"@sigstore/verify@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@sigstore/verify/-/verify-1.2.1.tgz#c7e60241b432890dcb8bd8322427f6062ef819e1" + integrity sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g== + dependencies: + "@sigstore/bundle" "^2.3.2" + "@sigstore/core" "^1.1.0" + "@sigstore/protobuf-specs" "^0.3.2" + +"@sindresorhus/merge-streams@^2.1.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz#719df7fb41766bc143369eaa0dd56d8dc87c9958" + integrity sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg== + +"@socket.io/component-emitter@~3.1.0": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@socket.io/component-emitter/-/component-emitter-3.1.2.tgz#821f8442f4175d8f0467b9daf26e3a18e2d02af2" + integrity sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA== + +"@tufjs/canonical-json@2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz#a52f61a3d7374833fca945b2549bc30a2dd40d0a" + integrity sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA== + +"@tufjs/models@2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-2.0.1.tgz#e429714e753b6c2469af3212e7f320a6973c2812" + integrity sha512-92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg== + dependencies: + "@tufjs/canonical-json" "2.0.0" + minimatch "^9.0.4" + +"@types/body-parser@*": + version "1.19.5" + resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.5.tgz#04ce9a3b677dc8bd681a17da1ab9835dc9d3ede4" + integrity sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg== + dependencies: + "@types/connect" "*" + "@types/node" "*" + +"@types/bonjour@^3.5.13": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.13.tgz#adf90ce1a105e81dd1f9c61fdc5afda1bfb92956" + integrity sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ== + dependencies: + "@types/node" "*" + +"@types/connect-history-api-fallback@^1.5.4": + version "1.5.4" + resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz#7de71645a103056b48ac3ce07b3520b819c1d5b3" + integrity sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw== + dependencies: + "@types/express-serve-static-core" "*" + "@types/node" "*" + +"@types/connect@*": + version "3.4.38" + resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz#5ba7f3bc4fbbdeaff8dded952e5ff2cc53f8d858" + integrity sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug== + dependencies: + "@types/node" "*" + +"@types/cookie@^0.4.1": + version "0.4.1" + resolved "https://registry.yarnpkg.com/@types/cookie/-/cookie-0.4.1.tgz#bfd02c1f2224567676c1545199f87c3a861d878d" + integrity sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q== + +"@types/cors@^2.8.12": + version "2.8.17" + resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.17.tgz#5d718a5e494a8166f569d986794e49c48b216b2b" + integrity sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA== + dependencies: + "@types/node" "*" + +"@types/estree@1.0.5": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" + integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== + +"@types/estree@1.0.6", "@types/estree@^1.0.5": + version "1.0.6" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50" + integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw== + +"@types/express-serve-static-core@*", "@types/express-serve-static-core@^5.0.0": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-5.0.1.tgz#3c9997ae9d00bc236e45c6374e84f2596458d9db" + integrity sha512-CRICJIl0N5cXDONAdlTv5ShATZ4HEwk6kDDIW2/w9qOWKg+NU/5F8wYRWCrONad0/UKkloNSmmyN/wX4rtpbVA== + dependencies: + "@types/node" "*" + "@types/qs" "*" + "@types/range-parser" "*" + "@types/send" "*" + +"@types/express-serve-static-core@^4.17.33": + version "4.19.6" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz#e01324c2a024ff367d92c66f48553ced0ab50267" + integrity sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A== + dependencies: + "@types/node" "*" + "@types/qs" "*" + "@types/range-parser" "*" + "@types/send" "*" + +"@types/express@*": + version "5.0.0" + resolved "https://registry.yarnpkg.com/@types/express/-/express-5.0.0.tgz#13a7d1f75295e90d19ed6e74cab3678488eaa96c" + integrity sha512-DvZriSMehGHL1ZNLzi6MidnsDhUZM/x2pRdDIKdwbUNqqwHxMlRdkxtn6/EPKyqKpHqTl/4nRZsRNLpZxZRpPQ== + dependencies: + "@types/body-parser" "*" + "@types/express-serve-static-core" "^5.0.0" + "@types/qs" "*" + "@types/serve-static" "*" + +"@types/express@^4.17.21": + version "4.17.21" + resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.21.tgz#c26d4a151e60efe0084b23dc3369ebc631ed192d" + integrity sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ== + dependencies: + "@types/body-parser" "*" + "@types/express-serve-static-core" "^4.17.33" + "@types/qs" "*" + "@types/serve-static" "*" + +"@types/http-errors@*": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.4.tgz#7eb47726c391b7345a6ec35ad7f4de469cf5ba4f" + integrity sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA== + +"@types/http-proxy@^1.17.15", "@types/http-proxy@^1.17.8": + version "1.17.15" + resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.15.tgz#12118141ce9775a6499ecb4c01d02f90fc839d36" + integrity sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ== + dependencies: + "@types/node" "*" + +"@types/jasmine@~5.1.0": + version "5.1.4" + resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-5.1.4.tgz#0de3f6ca753e10d1600ce1864ae42cfd47cf9924" + integrity sha512-px7OMFO/ncXxixDe1zR13V1iycqWae0MxTaw62RpFlksUi5QuNWgQJFkTQjIOvrmutJbI7Fp2Y2N1F6D2R4G6w== + +"@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": + version "7.0.15" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" + integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== + +"@types/mime@^1": + version "1.3.5" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.5.tgz#1ef302e01cf7d2b5a0fa526790c9123bf1d06690" + integrity sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w== + +"@types/mute-stream@^0.0.4": + version "0.0.4" + resolved "https://registry.yarnpkg.com/@types/mute-stream/-/mute-stream-0.0.4.tgz#77208e56a08767af6c5e1237be8888e2f255c478" + integrity sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow== + dependencies: + "@types/node" "*" + +"@types/node-forge@^1.3.0": + version "1.3.11" + resolved "https://registry.yarnpkg.com/@types/node-forge/-/node-forge-1.3.11.tgz#0972ea538ddb0f4d9c2fa0ec5db5724773a604da" + integrity sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ== + dependencies: + "@types/node" "*" + +"@types/node@*", "@types/node@>=10.0.0", "@types/node@^22.5.5": + version "22.9.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.9.0.tgz#b7f16e5c3384788542c72dc3d561a7ceae2c0365" + integrity sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ== + dependencies: + undici-types "~6.19.8" + +"@types/qs@*": + version "6.9.17" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.17.tgz#fc560f60946d0aeff2f914eb41679659d3310e1a" + integrity sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ== + +"@types/range-parser@*": + version "1.2.7" + resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.7.tgz#50ae4353eaaddc04044279812f52c8c65857dbcb" + integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ== + +"@types/retry@0.12.2": + version "0.12.2" + resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.2.tgz#ed279a64fa438bb69f2480eda44937912bb7480a" + integrity sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow== + +"@types/send@*": + version "0.17.4" + resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.4.tgz#6619cd24e7270793702e4e6a4b958a9010cfc57a" + integrity sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA== + dependencies: + "@types/mime" "^1" + "@types/node" "*" + +"@types/serve-index@^1.9.4": + version "1.9.4" + resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.4.tgz#e6ae13d5053cb06ed36392110b4f9a49ac4ec898" + integrity sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug== + dependencies: + "@types/express" "*" + +"@types/serve-static@*", "@types/serve-static@^1.15.5": + version "1.15.7" + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.7.tgz#22174bbd74fb97fe303109738e9b5c2f3064f714" + integrity sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw== + dependencies: + "@types/http-errors" "*" + "@types/node" "*" + "@types/send" "*" + +"@types/sockjs@^0.3.36": + version "0.3.36" + resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.36.tgz#ce322cf07bcc119d4cbf7f88954f3a3bd0f67535" + integrity sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q== + dependencies: + "@types/node" "*" + +"@types/wrap-ansi@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz#18b97a972f94f60a679fd5c796d96421b9abb9fd" + integrity sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g== + +"@types/ws@^8.5.10": + version "8.5.13" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.13.tgz#6414c280875e2691d0d1e080b05addbf5cb91e20" + integrity sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA== + dependencies: + "@types/node" "*" + +"@vitejs/plugin-basic-ssl@1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.1.0.tgz#8b840305a6b48e8764803435ec0c716fa27d3802" + integrity sha512-wO4Dk/rm8u7RNhOf95ZzcEmC9rYOncYgvq4z3duaJrCgjN8BxAnDVyndanfcJZ0O6XZzHz6Q0hTimxTg8Y9g/A== + +"@webassemblyjs/ast@1.14.1", "@webassemblyjs/ast@^1.12.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.14.1.tgz#a9f6a07f2b03c95c8d38c4536a1fdfb521ff55b6" + integrity sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ== + dependencies: + "@webassemblyjs/helper-numbers" "1.13.2" + "@webassemblyjs/helper-wasm-bytecode" "1.13.2" + +"@webassemblyjs/floating-point-hex-parser@1.13.2": + version "1.13.2" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz#fcca1eeddb1cc4e7b6eed4fc7956d6813b21b9fb" + integrity sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA== + +"@webassemblyjs/helper-api-error@1.13.2": + version "1.13.2" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz#e0a16152248bc38daee76dd7e21f15c5ef3ab1e7" + integrity sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ== + +"@webassemblyjs/helper-buffer@1.14.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz#822a9bc603166531f7d5df84e67b5bf99b72b96b" + integrity sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA== + +"@webassemblyjs/helper-numbers@1.13.2": + version "1.13.2" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz#dbd932548e7119f4b8a7877fd5a8d20e63490b2d" + integrity sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA== + dependencies: + "@webassemblyjs/floating-point-hex-parser" "1.13.2" + "@webassemblyjs/helper-api-error" "1.13.2" + "@xtuc/long" "4.2.2" + +"@webassemblyjs/helper-wasm-bytecode@1.13.2": + version "1.13.2" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz#e556108758f448aae84c850e593ce18a0eb31e0b" + integrity sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA== + +"@webassemblyjs/helper-wasm-section@1.14.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz#9629dda9c4430eab54b591053d6dc6f3ba050348" + integrity sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw== + dependencies: + "@webassemblyjs/ast" "1.14.1" + "@webassemblyjs/helper-buffer" "1.14.1" + "@webassemblyjs/helper-wasm-bytecode" "1.13.2" + "@webassemblyjs/wasm-gen" "1.14.1" + +"@webassemblyjs/ieee754@1.13.2": + version "1.13.2" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz#1c5eaace1d606ada2c7fd7045ea9356c59ee0dba" + integrity sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw== + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.13.2": + version "1.13.2" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.13.2.tgz#57c5c3deb0105d02ce25fa3fd74f4ebc9fd0bbb0" + integrity sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw== + dependencies: + "@xtuc/long" "4.2.2" + +"@webassemblyjs/utf8@1.13.2": + version "1.13.2" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.13.2.tgz#917a20e93f71ad5602966c2d685ae0c6c21f60f1" + integrity sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ== + +"@webassemblyjs/wasm-edit@^1.12.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz#ac6689f502219b59198ddec42dcd496b1004d597" + integrity sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ== + dependencies: + "@webassemblyjs/ast" "1.14.1" + "@webassemblyjs/helper-buffer" "1.14.1" + "@webassemblyjs/helper-wasm-bytecode" "1.13.2" + "@webassemblyjs/helper-wasm-section" "1.14.1" + "@webassemblyjs/wasm-gen" "1.14.1" + "@webassemblyjs/wasm-opt" "1.14.1" + "@webassemblyjs/wasm-parser" "1.14.1" + "@webassemblyjs/wast-printer" "1.14.1" + +"@webassemblyjs/wasm-gen@1.14.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz#991e7f0c090cb0bb62bbac882076e3d219da9570" + integrity sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg== + dependencies: + "@webassemblyjs/ast" "1.14.1" + "@webassemblyjs/helper-wasm-bytecode" "1.13.2" + "@webassemblyjs/ieee754" "1.13.2" + "@webassemblyjs/leb128" "1.13.2" + "@webassemblyjs/utf8" "1.13.2" + +"@webassemblyjs/wasm-opt@1.14.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz#e6f71ed7ccae46781c206017d3c14c50efa8106b" + integrity sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw== + dependencies: + "@webassemblyjs/ast" "1.14.1" + "@webassemblyjs/helper-buffer" "1.14.1" + "@webassemblyjs/wasm-gen" "1.14.1" + "@webassemblyjs/wasm-parser" "1.14.1" + +"@webassemblyjs/wasm-parser@1.14.1", "@webassemblyjs/wasm-parser@^1.12.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz#b3e13f1893605ca78b52c68e54cf6a865f90b9fb" + integrity sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ== + dependencies: + "@webassemblyjs/ast" "1.14.1" + "@webassemblyjs/helper-api-error" "1.13.2" + "@webassemblyjs/helper-wasm-bytecode" "1.13.2" + "@webassemblyjs/ieee754" "1.13.2" + "@webassemblyjs/leb128" "1.13.2" + "@webassemblyjs/utf8" "1.13.2" + +"@webassemblyjs/wast-printer@1.14.1": + version "1.14.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz#3bb3e9638a8ae5fdaf9610e7a06b4d9f9aa6fe07" + integrity sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw== + dependencies: + "@webassemblyjs/ast" "1.14.1" + "@xtuc/long" "4.2.2" + +"@xtuc/ieee754@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + +"@xtuc/long@4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" + integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== + +"@yarnpkg/lockfile@1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" + integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== + +abbrev@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-2.0.0.tgz#cf59829b8b4f03f89dda2771cb7f3653828c89bf" + integrity sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ== + +accepts@~1.3.4, accepts@~1.3.8: + version "1.3.8" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== + dependencies: + mime-types "~2.1.34" + negotiator "0.6.3" + +acorn-import-attributes@^1.9.5: + version "1.9.5" + resolved "https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz#7eb1557b1ba05ef18b5ed0ec67591bfab04688ef" + integrity sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ== + +acorn@^8.7.1, acorn@^8.8.2: + version "8.14.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0" + integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== + +adjust-sourcemap-loader@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz#fc4a0fd080f7d10471f30a7320f25560ade28c99" + integrity sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A== + dependencies: + loader-utils "^2.0.0" + regex-parser "^2.2.11" + +agent-base@^7.0.2, agent-base@^7.1.0, agent-base@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317" + integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== + dependencies: + debug "^4.3.4" + +aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + +ajv-formats@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz#3d5dc762bca17679c3c2ea7e90ad6b7532309578" + integrity sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ== + dependencies: + ajv "^8.0.0" + +ajv-formats@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" + integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== + dependencies: + ajv "^8.0.0" + +ajv-keywords@^3.5.2: + version "3.5.2" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" + integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== + +ajv-keywords@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" + integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== + dependencies: + fast-deep-equal "^3.1.3" + +ajv@8.17.1, ajv@^8.0.0, ajv@^8.9.0: + version "8.17.1" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6" + integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== + dependencies: + fast-deep-equal "^3.1.3" + fast-uri "^3.0.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + +ajv@^6.12.5: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ansi-colors@4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== + +ansi-escapes@^4.3.2: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + +ansi-escapes@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-7.0.0.tgz#00fc19f491bbb18e1d481b97868204f92109bfe7" + integrity sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw== + dependencies: + environment "^1.0.0" + +ansi-html-community@^0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41" + integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-regex@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.1.0.tgz#95ec409c69619d6cb1b8b34f14b660ef28ebd654" + integrity sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA== + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +ansi-styles@^6.0.0, ansi-styles@^6.1.0, ansi-styles@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" + integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== + +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== + +autoprefixer@10.4.20: + version "10.4.20" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.20.tgz#5caec14d43976ef42e32dcb4bd62878e96be5b3b" + integrity sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g== + dependencies: + browserslist "^4.23.3" + caniuse-lite "^1.0.30001646" + fraction.js "^4.3.7" + normalize-range "^0.1.2" + picocolors "^1.0.1" + postcss-value-parser "^4.2.0" + +babel-loader@9.1.3: + version "9.1.3" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.3.tgz#3d0e01b4e69760cc694ee306fe16d358aa1c6f9a" + integrity sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw== + dependencies: + find-cache-dir "^4.0.0" + schema-utils "^4.0.0" + +babel-plugin-polyfill-corejs2@^0.4.10: + version "0.4.12" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz#ca55bbec8ab0edeeef3d7b8ffd75322e210879a9" + integrity sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og== + dependencies: + "@babel/compat-data" "^7.22.6" + "@babel/helper-define-polyfill-provider" "^0.6.3" + semver "^6.3.1" + +babel-plugin-polyfill-corejs3@^0.10.1, babel-plugin-polyfill-corejs3@^0.10.4: + version "0.10.6" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz#2deda57caef50f59c525aeb4964d3b2f867710c7" + integrity sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.6.2" + core-js-compat "^3.38.0" + +babel-plugin-polyfill-regenerator@^0.6.1: + version "0.6.3" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz#abeb1f3f1c762eace37587f42548b08b57789bc8" + integrity sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.6.3" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +base64id@2.0.0, base64id@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/base64id/-/base64id-2.0.0.tgz#2770ac6bc47d312af97a8bf9a634342e0cd25cb6" + integrity sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog== + +batch@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" + integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== + +big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + +binary-extensions@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522" + integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== + +bl@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + +body-parser@1.20.3, body-parser@^1.19.0: + version "1.20.3" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.3.tgz#1953431221c6fb5cd63c4b36d53fab0928e548c6" + integrity sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g== + dependencies: + bytes "3.1.2" + content-type "~1.0.5" + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + http-errors "2.0.0" + iconv-lite "0.4.24" + on-finished "2.4.1" + qs "6.13.0" + raw-body "2.5.2" + type-is "~1.6.18" + unpipe "1.0.0" + +bonjour-service@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.2.1.tgz#eb41b3085183df3321da1264719fbada12478d02" + integrity sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw== + dependencies: + fast-deep-equal "^3.1.3" + multicast-dns "^7.2.5" + +boolbase@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@^3.0.2, braces@^3.0.3, braces@~3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== + dependencies: + fill-range "^7.1.1" + +browserslist@^4.21.10, browserslist@^4.21.5, browserslist@^4.23.0, browserslist@^4.23.3, browserslist@^4.24.0, browserslist@^4.24.2: + version "4.24.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.2.tgz#f5845bc91069dbd55ee89faf9822e1d885d16580" + integrity sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg== + dependencies: + caniuse-lite "^1.0.30001669" + electron-to-chromium "^1.5.41" + node-releases "^2.0.18" + update-browserslist-db "^1.1.1" + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +bundle-name@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bundle-name/-/bundle-name-4.1.0.tgz#f3b96b34160d6431a19d7688135af7cfb8797889" + integrity sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q== + dependencies: + run-applescript "^7.0.0" + +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== + +cacache@^18.0.0: + version "18.0.4" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-18.0.4.tgz#4601d7578dadb59c66044e157d02a3314682d6a5" + integrity sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ== + dependencies: + "@npmcli/fs" "^3.1.0" + fs-minipass "^3.0.0" + glob "^10.2.2" + lru-cache "^10.0.1" + minipass "^7.0.3" + minipass-collect "^2.0.1" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + p-map "^4.0.0" + ssri "^10.0.0" + tar "^6.1.11" + unique-filename "^3.0.0" + +call-bind@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + set-function-length "^1.2.1" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001669: + version "1.0.30001680" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001680.tgz#5380ede637a33b9f9f1fc6045ea99bd142f3da5e" + integrity sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA== + +chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + +"chokidar@>=3.0.0 <4.0.0", chokidar@^3.5.1, chokidar@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" + integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +chokidar@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.1.tgz#4a6dff66798fb0f72a94f616abbd7e1a19f31d41" + integrity sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA== + dependencies: + readdirp "^4.0.1" + +chownr@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" + integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== + +chrome-trace-event@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz#05bffd7ff928465093314708c93bdfa9bd1f0f5b" + integrity sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ== + +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + +cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + +cli-cursor@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-5.0.0.tgz#24a4831ecf5a6b01ddeb32fb71a4b2088b0dce38" + integrity sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw== + dependencies: + restore-cursor "^5.0.0" + +cli-spinners@^2.5.0: + version "2.9.2" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz#1773a8f4b9c4d6ac31563df53b3fc1d79462fe41" + integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== + +cli-truncate@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-4.0.0.tgz#6cc28a2924fee9e25ce91e973db56c7066e6172a" + integrity sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA== + dependencies: + slice-ansi "^5.0.0" + string-width "^7.0.0" + +cli-width@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-4.1.0.tgz#42daac41d3c254ef38ad8ac037672130173691c5" + integrity sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ== + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" + +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +colorette@^2.0.10, colorette@^2.0.20: + version "2.0.20" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" + integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== + +commander@^2.20.0: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +common-path-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-3.0.0.tgz#7d007a7e07c58c4b4d5f433131a19141b29f11e0" + integrity sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w== + +compressible@~2.0.18: + version "2.0.18" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== + dependencies: + mime-db ">= 1.43.0 < 2" + +compression@^1.7.4: + version "1.7.5" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.5.tgz#fdd256c0a642e39e314c478f6c2cd654edd74c93" + integrity sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q== + dependencies: + bytes "3.1.2" + compressible "~2.0.18" + debug "2.6.9" + negotiator "~0.6.4" + on-headers "~1.0.2" + safe-buffer "5.2.1" + vary "~1.1.2" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +connect-history-api-fallback@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8" + integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA== + +connect@^3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8" + integrity sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ== + dependencies: + debug "2.6.9" + finalhandler "1.1.2" + parseurl "~1.3.3" + utils-merge "1.0.1" + +content-disposition@0.5.4: + version "0.5.4" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" + integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== + dependencies: + safe-buffer "5.2.1" + +content-type@~1.0.4, content-type@~1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== + +convert-source-map@^1.5.1, convert-source-map@^1.7.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== + +cookie@0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.1.tgz#2f73c42142d5d5cf71310a74fc4ae61670e5dbc9" + integrity sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w== + +cookie@~0.7.2: + version "0.7.2" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.2.tgz#556369c472a2ba910f2979891b526b3436237ed7" + integrity sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w== + +copy-anything@^2.0.1: + version "2.0.6" + resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-2.0.6.tgz#092454ea9584a7b7ad5573062b2a87f5900fc480" + integrity sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw== + dependencies: + is-what "^3.14.1" + +copy-webpack-plugin@12.0.2: + version "12.0.2" + resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-12.0.2.tgz#935e57b8e6183c82f95bd937df658a59f6a2da28" + integrity sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA== + dependencies: + fast-glob "^3.3.2" + glob-parent "^6.0.1" + globby "^14.0.0" + normalize-path "^3.0.0" + schema-utils "^4.2.0" + serialize-javascript "^6.0.2" + +core-js-compat@^3.37.1, core-js-compat@^3.38.0: + version "3.39.0" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.39.0.tgz#b12dccb495f2601dc860bdbe7b4e3ffa8ba63f61" + integrity sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw== + dependencies: + browserslist "^4.24.2" + +core-js@3.36.1: + version "3.36.1" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.36.1.tgz#c97a7160ebd00b2de19e62f4bbd3406ab720e578" + integrity sha512-BTvUrwxVBezj5SZ3f10ImnX2oRByMxql3EimVqMysepbC9EeMUOpLwdy6Eoili2x6E4kf+ZUB5k/+Jv55alPfA== + +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +cors@~2.8.5: + version "2.8.5" + resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" + integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== + dependencies: + object-assign "^4" + vary "^1" + +cosmiconfig@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-9.0.0.tgz#34c3fc58287b915f3ae905ab6dc3de258b55ad9d" + integrity sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg== + dependencies: + env-paths "^2.2.1" + import-fresh "^3.3.0" + js-yaml "^4.1.0" + parse-json "^5.2.0" + +critters@0.0.24: + version "0.0.24" + resolved "https://registry.yarnpkg.com/critters/-/critters-0.0.24.tgz#d20b16c28908d2dae4b9cd4851d4d2c93de98a0b" + integrity sha512-Oyqew0FGM0wYUSNqR0L6AteO5MpMoUU0rhKRieXeiKs+PmRTxiJMyaunYB2KF6fQ3dzChXKCpbFOEJx3OQ1v/Q== + dependencies: + chalk "^4.1.0" + css-select "^5.1.0" + dom-serializer "^2.0.0" + domhandler "^5.0.2" + htmlparser2 "^8.0.2" + postcss "^8.4.23" + postcss-media-query-parser "^0.2.3" + +cross-spawn@^7.0.0, cross-spawn@^7.0.3: + version "7.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.5.tgz#910aac880ff5243da96b728bc6521a5f6c2f2f82" + integrity sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +css-loader@7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-7.1.2.tgz#64671541c6efe06b0e22e750503106bdd86880f8" + integrity sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA== + dependencies: + icss-utils "^5.1.0" + postcss "^8.4.33" + postcss-modules-extract-imports "^3.1.0" + postcss-modules-local-by-default "^4.0.5" + postcss-modules-scope "^3.2.0" + postcss-modules-values "^4.0.0" + postcss-value-parser "^4.2.0" + semver "^7.5.4" + +css-select@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6" + integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== + dependencies: + boolbase "^1.0.0" + css-what "^6.1.0" + domhandler "^5.0.2" + domutils "^3.0.1" + nth-check "^2.0.1" + +css-what@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" + integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +custom-event@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/custom-event/-/custom-event-1.0.1.tgz#5d02a46850adf1b4a317946a3928fccb5bfd0425" + integrity sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg== + +date-fns@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-4.1.0.tgz#64b3d83fff5aa80438f5b1a633c2e83b8a1c2d14" + integrity sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg== + +date-format@^4.0.14: + version "4.0.14" + resolved "https://registry.yarnpkg.com/date-format/-/date-format-4.0.14.tgz#7a8e584434fb169a521c8b7aa481f355810d9400" + integrity sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg== + +debug@2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.4, debug@^4.3.6, debug@~4.3.1, debug@~4.3.2, debug@~4.3.4: + version "4.3.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" + integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== + dependencies: + ms "^2.1.3" + +default-browser-id@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/default-browser-id/-/default-browser-id-5.0.0.tgz#a1d98bf960c15082d8a3fa69e83150ccccc3af26" + integrity sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA== + +default-browser@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/default-browser/-/default-browser-5.2.1.tgz#7b7ba61204ff3e425b556869ae6d3e9d9f1712cf" + integrity sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg== + dependencies: + bundle-name "^4.1.0" + default-browser-id "^5.0.0" + +default-gateway@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71" + integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg== + dependencies: + execa "^5.0.0" + +defaults@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== + dependencies: + clone "^1.0.2" + +define-data-property@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + +define-lazy-prop@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz#dbb19adfb746d7fc6d734a06b72f4a00d021255f" + integrity sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg== + +depd@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +depd@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== + +destroy@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== + +detect-libc@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.3.tgz#f0cd503b40f9939b894697d19ad50895e30cf700" + integrity sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw== + +detect-node@^2.0.4: + version "2.1.0" + resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" + integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== + +dexie@^4.0.9: + version "4.0.10" + resolved "https://registry.yarnpkg.com/dexie/-/dexie-4.0.10.tgz#979e3ee75993b44eea3852f97ceb198019d5b287" + integrity sha512-eM2RzuR3i+M046r2Q0Optl3pS31qTWf8aFuA7H9wnsHTwl8EPvroVLwvQene/6paAs39Tbk6fWZcn2aZaHkc/w== + +di@^0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/di/-/di-0.0.1.tgz#806649326ceaa7caa3306d75d985ea2748ba913c" + integrity sha512-uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA== + +dns-packet@^5.2.2: + version "5.6.1" + resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.6.1.tgz#ae888ad425a9d1478a0674256ab866de1012cf2f" + integrity sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw== + dependencies: + "@leichtgewicht/ip-codec" "^2.0.1" + +dom-serialize@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/dom-serialize/-/dom-serialize-2.2.1.tgz#562ae8999f44be5ea3076f5419dcd59eb43ac95b" + integrity sha512-Yra4DbvoW7/Z6LBN560ZwXMjoNOSAN2wRsKFGc4iBeso+mpIA6qj1vfdf9HpMaKAqG6wXTy+1SYEzmNpKXOSsQ== + dependencies: + custom-event "~1.0.0" + ent "~2.2.0" + extend "^3.0.0" + void-elements "^2.0.0" + +dom-serializer@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" + integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.2" + entities "^4.2.0" + +domelementtype@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domhandler@^5.0.2, domhandler@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" + integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== + dependencies: + domelementtype "^2.3.0" + +domutils@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e" + integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== + dependencies: + dom-serializer "^2.0.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" + +eastasianwidth@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" + integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + +electron-to-chromium@^1.5.41: + version "1.5.62" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.62.tgz#8289468414b0b0b3e9180ef619a763555debe612" + integrity sha512-t8c+zLmJHa9dJy96yBZRXGQYoiCEnHYgFwn1asvSPZSUdVxnB62A4RASd7k41ytG3ErFBA0TpHlKg9D9SQBmLg== + +emoji-regex@^10.3.0: + version "10.4.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.4.0.tgz#03553afea80b3975749cfcb36f776ca268e413d4" + integrity sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +emoji-regex@^9.2.2: + version "9.2.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + +emojis-list@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" + integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== + +encodeurl@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" + integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== + +encoding@^0.1.13: + version "0.1.13" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" + integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== + dependencies: + iconv-lite "^0.6.2" + +engine.io-parser@~5.2.1: + version "5.2.3" + resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-5.2.3.tgz#00dc5b97b1f233a23c9398d0209504cf5f94d92f" + integrity sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q== + +engine.io@~6.6.0: + version "6.6.2" + resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-6.6.2.tgz#32bd845b4db708f8c774a4edef4e5c8a98b3da72" + integrity sha512-gmNvsYi9C8iErnZdVcJnvCpSKbWTt1E8+JZo8b+daLninywUWi5NQ5STSHZ9rFjFO7imNcvb8Pc5pe/wMR5xEw== + dependencies: + "@types/cookie" "^0.4.1" + "@types/cors" "^2.8.12" + "@types/node" ">=10.0.0" + accepts "~1.3.4" + base64id "2.0.0" + cookie "~0.7.2" + cors "~2.8.5" + debug "~4.3.1" + engine.io-parser "~5.2.1" + ws "~8.17.1" + +enhanced-resolve@^5.17.1: + version "5.17.1" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz#67bfbbcc2f81d511be77d686a90267ef7f898a15" + integrity sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg== + dependencies: + graceful-fs "^4.2.4" + tapable "^2.2.0" + +ent@~2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.1.tgz#68dc99a002f115792c26239baedaaea9e70c0ca2" + integrity sha512-QHuXVeZx9d+tIQAz/XztU0ZwZf2Agg9CcXcgE1rurqvdBeDBrpSwjl8/6XUqMg7tw2Y7uAdKb2sRv+bSEFqQ5A== + dependencies: + punycode "^1.4.1" + +entities@^4.2.0, entities@^4.3.0, entities@^4.4.0, entities@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== + +env-paths@^2.2.0, env-paths@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" + integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== + +environment@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/environment/-/environment-1.1.0.tgz#8e86c66b180f363c7ab311787e0259665f45a9f1" + integrity sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q== + +err-code@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" + integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== + +errno@^0.1.1: + version "0.1.8" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" + integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A== + dependencies: + prr "~1.0.1" + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== + dependencies: + get-intrinsic "^1.2.4" + +es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + +es-module-lexer@^1.2.1: + version "1.5.4" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.5.4.tgz#a8efec3a3da991e60efa6b633a7cad6ab8d26b78" + integrity sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw== + +esbuild-wasm@0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/esbuild-wasm/-/esbuild-wasm-0.23.0.tgz#7b09c7bc669b702b440aeb3d5c9210f96766e1b2" + integrity sha512-6jP8UmWy6R6TUUV8bMuC3ZyZ6lZKI56x0tkxyCIqWwRRJ/DgeQKneh/Oid5EoGoPFLrGNkz47ZEtWAYuiY/u9g== + +esbuild@0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.23.0.tgz#de06002d48424d9fdb7eb52dbe8e95927f852599" + integrity sha512-1lvV17H2bMYda/WaFb2jLPeHU3zml2k4/yagNMG8Q/YtfMjCwEUZa2eXXMgZTVSL5q1n4H7sQ0X6CdJDqqeCFA== + optionalDependencies: + "@esbuild/aix-ppc64" "0.23.0" + "@esbuild/android-arm" "0.23.0" + "@esbuild/android-arm64" "0.23.0" + "@esbuild/android-x64" "0.23.0" + "@esbuild/darwin-arm64" "0.23.0" + "@esbuild/darwin-x64" "0.23.0" + "@esbuild/freebsd-arm64" "0.23.0" + "@esbuild/freebsd-x64" "0.23.0" + "@esbuild/linux-arm" "0.23.0" + "@esbuild/linux-arm64" "0.23.0" + "@esbuild/linux-ia32" "0.23.0" + "@esbuild/linux-loong64" "0.23.0" + "@esbuild/linux-mips64el" "0.23.0" + "@esbuild/linux-ppc64" "0.23.0" + "@esbuild/linux-riscv64" "0.23.0" + "@esbuild/linux-s390x" "0.23.0" + "@esbuild/linux-x64" "0.23.0" + "@esbuild/netbsd-x64" "0.23.0" + "@esbuild/openbsd-arm64" "0.23.0" + "@esbuild/openbsd-x64" "0.23.0" + "@esbuild/sunos-x64" "0.23.0" + "@esbuild/win32-arm64" "0.23.0" + "@esbuild/win32-ia32" "0.23.0" + "@esbuild/win32-x64" "0.23.0" + +esbuild@^0.21.3: + version "0.21.5" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" + integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== + optionalDependencies: + "@esbuild/aix-ppc64" "0.21.5" + "@esbuild/android-arm" "0.21.5" + "@esbuild/android-arm64" "0.21.5" + "@esbuild/android-x64" "0.21.5" + "@esbuild/darwin-arm64" "0.21.5" + "@esbuild/darwin-x64" "0.21.5" + "@esbuild/freebsd-arm64" "0.21.5" + "@esbuild/freebsd-x64" "0.21.5" + "@esbuild/linux-arm" "0.21.5" + "@esbuild/linux-arm64" "0.21.5" + "@esbuild/linux-ia32" "0.21.5" + "@esbuild/linux-loong64" "0.21.5" + "@esbuild/linux-mips64el" "0.21.5" + "@esbuild/linux-ppc64" "0.21.5" + "@esbuild/linux-riscv64" "0.21.5" + "@esbuild/linux-s390x" "0.21.5" + "@esbuild/linux-x64" "0.21.5" + "@esbuild/netbsd-x64" "0.21.5" + "@esbuild/openbsd-x64" "0.21.5" + "@esbuild/sunos-x64" "0.21.5" + "@esbuild/win32-arm64" "0.21.5" + "@esbuild/win32-ia32" "0.21.5" + "@esbuild/win32-x64" "0.21.5" + +escalade@^3.1.1, escalade@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" + integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + +eslint-scope@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + +eventemitter3@^4.0.0: + version "4.0.7" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +eventemitter3@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4" + integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA== + +events@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== + +excalibur@0.29.3: + version "0.29.3" + resolved "https://registry.yarnpkg.com/excalibur/-/excalibur-0.29.3.tgz#68f578626bbbed69ed277fc1c9181b7b9ebdb8a9" + integrity sha512-R1Nzf5/U2oSuIcWKZinAUR8b3eW71bwC6UvnqSt08d2uTVpaIDwl6cyVvB+1jY5GeA0BWmFS/wQ/PaNKTZDP7A== + dependencies: + core-js "3.36.1" + +execa@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + +exponential-backoff@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.1.tgz#64ac7526fe341ab18a39016cd22c787d01e00bf6" + integrity sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw== + +express@^4.17.3: + version "4.21.1" + resolved "https://registry.yarnpkg.com/express/-/express-4.21.1.tgz#9dae5dda832f16b4eec941a4e44aa89ec481b281" + integrity sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ== + dependencies: + accepts "~1.3.8" + array-flatten "1.1.1" + body-parser "1.20.3" + content-disposition "0.5.4" + content-type "~1.0.4" + cookie "0.7.1" + cookie-signature "1.0.6" + debug "2.6.9" + depd "2.0.0" + encodeurl "~2.0.0" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "1.3.1" + fresh "0.5.2" + http-errors "2.0.0" + merge-descriptors "1.0.3" + methods "~1.1.2" + on-finished "2.4.1" + parseurl "~1.3.3" + path-to-regexp "0.1.10" + proxy-addr "~2.0.7" + qs "6.13.0" + range-parser "~1.2.1" + safe-buffer "5.2.1" + send "0.19.0" + serve-static "1.16.2" + setprototypeof "1.2.0" + statuses "2.0.1" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + +extend@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +external-editor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-glob@3.3.2, fast-glob@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-uri@^3.0.1: + version "3.0.3" + resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.3.tgz#892a1c91802d5d7860de728f18608a0573142241" + integrity sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw== + +fastq@^1.6.0: + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + dependencies: + reusify "^1.0.4" + +faye-websocket@^0.11.3: + version "0.11.4" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da" + integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== + dependencies: + websocket-driver ">=0.5.1" + +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== + dependencies: + to-regex-range "^5.0.1" + +finalhandler@1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" + integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.3" + statuses "~1.5.0" + unpipe "~1.0.0" + +finalhandler@1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.3.1.tgz#0c575f1d1d324ddd1da35ad7ece3df7d19088019" + integrity sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ== + dependencies: + debug "2.6.9" + encodeurl "~2.0.0" + escape-html "~1.0.3" + on-finished "2.4.1" + parseurl "~1.3.3" + statuses "2.0.1" + unpipe "~1.0.0" + +find-cache-dir@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-4.0.0.tgz#a30ee0448f81a3990708f6453633c733e2f6eec2" + integrity sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg== + dependencies: + common-path-prefix "^3.0.0" + pkg-dir "^7.0.0" + +find-up@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-6.3.0.tgz#2abab3d3280b2dc7ac10199ef324c4e002c8c790" + integrity sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw== + dependencies: + locate-path "^7.1.0" + path-exists "^5.0.0" + +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +flatted@^3.2.7: + version "3.3.1" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" + integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== + +follow-redirects@^1.0.0: + version "1.15.9" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.9.tgz#a604fa10e443bf98ca94228d9eebcc2e8a2c8ee1" + integrity sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ== + +foreground-child@^3.1.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.0.tgz#0ac8644c06e431439f8561db8ecf29a7b5519c77" + integrity sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg== + dependencies: + cross-spawn "^7.0.0" + signal-exit "^4.0.1" + +forwarded@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + +fraction.js@^4.3.7: + version "4.3.7" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7" + integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== + +fs-extra@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-minipass@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" + integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== + dependencies: + minipass "^3.0.0" + +fs-minipass@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz#79a85981c4dc120065e96f62086bf6f9dc26cc54" + integrity sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw== + dependencies: + minipass "^7.0.3" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2, fsevents@~2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-east-asian-width@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz#21b4071ee58ed04ee0db653371b55b4299875389" + integrity sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ== + +get-intrinsic@^1.1.3, get-intrinsic@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" + integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + has-proto "^1.0.1" + has-symbols "^1.0.3" + hasown "^2.0.0" + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.1: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob-to-regexp@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + +glob@^10.2.2, glob@^10.3.10, glob@^10.3.7: + version "10.4.5" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956" + integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg== + dependencies: + foreground-child "^3.1.0" + jackspeak "^3.1.2" + minimatch "^9.0.4" + minipass "^7.1.2" + package-json-from-dist "^1.0.0" + path-scurry "^1.11.1" + +glob@^7.1.3, glob@^7.1.7: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globby@^14.0.0: + version "14.0.2" + resolved "https://registry.yarnpkg.com/globby/-/globby-14.0.2.tgz#06554a54ccfe9264e5a9ff8eded46aa1e306482f" + integrity sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw== + dependencies: + "@sindresorhus/merge-streams" "^2.1.0" + fast-glob "^3.3.2" + ignore "^5.2.4" + path-type "^5.0.0" + slash "^5.1.0" + unicorn-magic "^0.1.0" + +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.6: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + +handle-thing@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" + integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + dependencies: + es-define-property "^1.0.0" + +has-proto@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" + integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== + +has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +hasown@^2.0.0, hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + +hosted-git-info@^7.0.0: + version "7.0.2" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-7.0.2.tgz#9b751acac097757667f30114607ef7b661ff4f17" + integrity sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w== + dependencies: + lru-cache "^10.0.1" + +hpack.js@^2.1.6: + version "2.1.6" + resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" + integrity sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ== + dependencies: + inherits "^2.0.1" + obuf "^1.0.0" + readable-stream "^2.0.1" + wbuf "^1.1.0" + +html-entities@^2.4.0: + version "2.5.2" + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.5.2.tgz#201a3cf95d3a15be7099521620d19dfb4f65359f" + integrity sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA== + +html-escaper@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + +htmlparser2@^8.0.2: + version "8.0.2" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-8.0.2.tgz#f002151705b383e62433b5cf466f5b716edaec21" + integrity sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.3" + domutils "^3.0.1" + entities "^4.4.0" + +http-cache-semantics@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" + integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== + +http-deceiver@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" + integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== + +http-errors@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== + dependencies: + depd "2.0.0" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses "2.0.1" + toidentifier "1.0.1" + +http-errors@~1.6.2: + version "1.6.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" + integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.0" + statuses ">= 1.4.0 < 2" + +http-parser-js@>=0.5.1: + version "0.5.8" + resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.8.tgz#af23090d9ac4e24573de6f6aecc9d84a48bf20e3" + integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== + +http-proxy-agent@^7.0.0: + version "7.0.2" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz#9a8b1f246866c028509486585f62b8f2c18c270e" + integrity sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig== + dependencies: + agent-base "^7.1.0" + debug "^4.3.4" + +http-proxy-middleware@3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-3.0.3.tgz#dc1313c75bd00d81e103823802551ee30130ebd1" + integrity sha512-usY0HG5nyDUwtqpiZdETNbmKtw3QQ1jwYFZ9wi5iHzX2BcILwQKtYDJPo7XHTsu5Z0B2Hj3W9NNnbd+AjFWjqg== + dependencies: + "@types/http-proxy" "^1.17.15" + debug "^4.3.6" + http-proxy "^1.18.1" + is-glob "^4.0.3" + is-plain-object "^5.0.0" + micromatch "^4.0.8" + +http-proxy-middleware@^2.0.3: + version "2.0.7" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz#915f236d92ae98ef48278a95dedf17e991936ec6" + integrity sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA== + dependencies: + "@types/http-proxy" "^1.17.8" + http-proxy "^1.18.1" + is-glob "^4.0.1" + is-plain-obj "^3.0.0" + micromatch "^4.0.2" + +http-proxy@^1.18.1: + version "1.18.1" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" + integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== + dependencies: + eventemitter3 "^4.0.0" + follow-redirects "^1.0.0" + requires-port "^1.0.0" + +https-proxy-agent@7.0.5, https-proxy-agent@^7.0.1: + version "7.0.5" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz#9e8b5013873299e11fab6fd548405da2d6c602b2" + integrity sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw== + dependencies: + agent-base "^7.0.2" + debug "4" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +hyperdyperid@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/hyperdyperid/-/hyperdyperid-1.2.0.tgz#59668d323ada92228d2a869d3e474d5a33b69e6b" + integrity sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A== + +iconv-lite@0.4.24, iconv-lite@^0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +iconv-lite@^0.6.2, iconv-lite@^0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + +icss-utils@^5.0.0, icss-utils@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" + integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== + +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore-walk@^6.0.4: + version "6.0.5" + resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-6.0.5.tgz#ef8d61eab7da169078723d1f82833b36e200b0dd" + integrity sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A== + dependencies: + minimatch "^9.0.0" + +ignore@^5.2.4: + version "5.3.2" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" + integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== + +image-size@~0.5.0: + version "0.5.5" + resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.5.5.tgz#09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c" + integrity sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ== + +immutable@^4.0.0: + version "4.3.7" + resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.7.tgz#c70145fc90d89fb02021e65c84eb0226e4e5a381" + integrity sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw== + +import-fresh@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== + +ini@4.1.3, ini@^4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/ini/-/ini-4.1.3.tgz#4c359675a6071a46985eb39b14e4a2c0ec98a795" + integrity sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg== + +ip-address@^9.0.5: + version "9.0.5" + resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-9.0.5.tgz#117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a" + integrity sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g== + dependencies: + jsbn "1.1.0" + sprintf-js "^1.1.3" + +ipaddr.js@1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + +ipaddr.js@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.2.0.tgz#d33fa7bac284f4de7af949638c9d68157c6b92e8" + integrity sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA== + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-core-module@^2.13.0: + version "2.15.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.1.tgz#a7363a25bee942fefab0de13bf6aa372c82dcc37" + integrity sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ== + dependencies: + hasown "^2.0.2" + +is-docker@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-3.0.0.tgz#90093aa3106277d8a77a5910dbae71747e15a200" + integrity sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ== + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-fullwidth-code-point@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88" + integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== + +is-fullwidth-code-point@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz#9609efced7c2f97da7b60145ef481c787c7ba704" + integrity sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA== + dependencies: + get-east-asian-width "^1.0.0" + +is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-inside-container@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-inside-container/-/is-inside-container-1.0.0.tgz#e81fba699662eb31dbdaf26766a61d4814717ea4" + integrity sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA== + dependencies: + is-docker "^3.0.0" + +is-interactive@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" + integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== + +is-lambda@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" + integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== + +is-network-error@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-network-error/-/is-network-error-1.1.0.tgz#d26a760e3770226d11c169052f266a4803d9c997" + integrity sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g== + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" + integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== + +is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +is-plain-object@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" + integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-what@^3.14.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/is-what/-/is-what-3.14.1.tgz#e1222f46ddda85dead0fd1c9df131760e77755c1" + integrity sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA== + +is-wsl@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-3.1.0.tgz#e1c657e39c10090afcbedec61720f6b924c3cbd2" + integrity sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw== + dependencies: + is-inside-container "^1.0.0" + +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + +isbinaryfile@^4.0.8: + version "4.0.10" + resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz#0c5b5e30c2557a2f06febd37b7322946aaee42b3" + integrity sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isexe@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-3.1.1.tgz#4a407e2bd78ddfb14bea0c27c6f7072dde775f0d" + integrity sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ== + +isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== + +istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz#2d166c4b0644d43a39f04bf6c2edd1e585f31756" + integrity sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== + +istanbul-lib-instrument@6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz#fa15401df6c15874bcb2105f773325d78c666765" + integrity sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q== + dependencies: + "@babel/core" "^7.23.9" + "@babel/parser" "^7.23.9" + "@istanbuljs/schema" "^0.1.3" + istanbul-lib-coverage "^3.2.0" + semver "^7.5.4" + +istanbul-lib-instrument@^5.1.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" + integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== + dependencies: + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.2.0" + semver "^6.3.0" + +istanbul-lib-report@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#908305bac9a5bd175ac6a74489eafd0fc2445a7d" + integrity sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw== + dependencies: + istanbul-lib-coverage "^3.0.0" + make-dir "^4.0.0" + supports-color "^7.1.0" + +istanbul-lib-source-maps@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" + integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== + dependencies: + debug "^4.1.1" + istanbul-lib-coverage "^3.0.0" + source-map "^0.6.1" + +istanbul-reports@^3.0.5: + version "3.1.7" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.7.tgz#daed12b9e1dca518e15c056e1e537e741280fa0b" + integrity sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g== + dependencies: + html-escaper "^2.0.0" + istanbul-lib-report "^3.0.0" + +jackspeak@^3.1.2: + version "3.4.3" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a" + integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw== + dependencies: + "@isaacs/cliui" "^8.0.2" + optionalDependencies: + "@pkgjs/parseargs" "^0.11.0" + +jasmine-core@^4.1.0: + version "4.6.1" + resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-4.6.1.tgz#5ebb8afa07282078f8d7b15871737a83b74e58f2" + integrity sha512-VYz/BjjmC3klLJlLwA4Kw8ytk0zDSmbbDLNs794VnWmkcCB7I9aAL/D48VNQtmITyPvea2C3jdUMfc3kAoy0PQ== + +jasmine-core@~5.1.0: + version "5.1.2" + resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-5.1.2.tgz#8f2789faa79ef1ffad7abab6bff8d4bd661094f7" + integrity sha512-2oIUMGn00FdUiqz6epiiJr7xcFyNYj3rDcfmnzfkBnHyBQ3cBQUs4mmyGsOb7TTLb9kxk7dBcmEmqhDKkBoDyA== + +jest-worker@^27.4.5: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" + integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== + dependencies: + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jiti@^1.20.0: + version "1.21.6" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.6.tgz#6c7f7398dd4b3142767f9a168af2f317a428d268" + integrity sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w== + +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +jsbn@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040" + integrity sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A== + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +jsesc@^3.0.2, jsesc@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.0.2.tgz#bb8b09a6597ba426425f2e4a07245c3d00b9343e" + integrity sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g== + +json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-parse-even-better-errors@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.2.tgz#b43d35e89c0f3be6b5fbbe9dc6c82467b30c28da" + integrity sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json5@^2.1.2, json5@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + +jsonc-parser@3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.3.1.tgz#f2a524b4f7fd11e3d791e559977ad60b98b798b4" + integrity sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ== + +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== + optionalDependencies: + graceful-fs "^4.1.6" + +jsonparse@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + +karma-chrome-launcher@~3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/karma-chrome-launcher/-/karma-chrome-launcher-3.2.0.tgz#eb9c95024f2d6dfbb3748d3415ac9b381906b9a9" + integrity sha512-rE9RkUPI7I9mAxByQWkGJFXfFD6lE4gC5nPuZdobf/QdTEJI6EU4yIay/cfU/xV4ZxlM5JiTv7zWYgA64NpS5Q== + dependencies: + which "^1.2.1" + +karma-coverage@~2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/karma-coverage/-/karma-coverage-2.2.1.tgz#e1cc074f93ace9dc4fb7e7aeca7135879c2e358c" + integrity sha512-yj7hbequkQP2qOSb20GuNSIyE//PgJWHwC2IydLE6XRtsnaflv+/OSGNssPjobYUlhVVagy99TQpqUt3vAUG7A== + dependencies: + istanbul-lib-coverage "^3.2.0" + istanbul-lib-instrument "^5.1.0" + istanbul-lib-report "^3.0.0" + istanbul-lib-source-maps "^4.0.1" + istanbul-reports "^3.0.5" + minimatch "^3.0.4" + +karma-jasmine-html-reporter@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-2.1.0.tgz#f951ad00b08d61d03595402c914d1a589c4930e3" + integrity sha512-sPQE1+nlsn6Hwb5t+HHwyy0A1FNCVKuL1192b+XNauMYWThz2kweiBVW1DqloRpVvZIJkIoHVB7XRpK78n1xbQ== + +karma-jasmine@~5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/karma-jasmine/-/karma-jasmine-5.1.0.tgz#3af4558a6502fa16856a0f346ec2193d4b884b2f" + integrity sha512-i/zQLFrfEpRyQoJF9fsCdTMOF5c2dK7C7OmsuKg2D0YSsuZSfQDiLuaiktbuio6F2wiCsZSnSnieIQ0ant/uzQ== + dependencies: + jasmine-core "^4.1.0" + +karma-source-map-support@1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz#58526ceccf7e8730e56effd97a4de8d712ac0d6b" + integrity sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A== + dependencies: + source-map-support "^0.5.5" + +karma@~6.4.0: + version "6.4.4" + resolved "https://registry.yarnpkg.com/karma/-/karma-6.4.4.tgz#dfa5a426cf5a8b53b43cd54ef0d0d09742351492" + integrity sha512-LrtUxbdvt1gOpo3gxG+VAJlJAEMhbWlM4YrFQgql98FwF7+K8K12LYO4hnDdUkNjeztYrOXEMqgTajSWgmtI/w== + dependencies: + "@colors/colors" "1.5.0" + body-parser "^1.19.0" + braces "^3.0.2" + chokidar "^3.5.1" + connect "^3.7.0" + di "^0.0.1" + dom-serialize "^2.2.1" + glob "^7.1.7" + graceful-fs "^4.2.6" + http-proxy "^1.18.1" + isbinaryfile "^4.0.8" + lodash "^4.17.21" + log4js "^6.4.1" + mime "^2.5.2" + minimatch "^3.0.4" + mkdirp "^0.5.5" + qjobs "^1.2.0" + range-parser "^1.2.1" + rimraf "^3.0.2" + socket.io "^4.7.2" + source-map "^0.6.1" + tmp "^0.2.1" + ua-parser-js "^0.7.30" + yargs "^16.1.1" + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +launch-editor@^2.6.1: + version "2.9.1" + resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.9.1.tgz#253f173bd441e342d4344b4dae58291abb425047" + integrity sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w== + dependencies: + picocolors "^1.0.0" + shell-quote "^1.8.1" + +less-loader@12.2.0: + version "12.2.0" + resolved "https://registry.yarnpkg.com/less-loader/-/less-loader-12.2.0.tgz#e1e94522f6abe9e064ef396c29a3151bc6c1b6cc" + integrity sha512-MYUxjSQSBUQmowc0l5nPieOYwMzGPUaTzB6inNW/bdPEG9zOL3eAAD1Qw5ZxSPk7we5dMojHwNODYMV1hq4EVg== + +less@4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/less/-/less-4.2.0.tgz#cbefbfaa14a4cd388e2099b2b51f956e1465c450" + integrity sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA== + dependencies: + copy-anything "^2.0.1" + parse-node-version "^1.0.1" + tslib "^2.3.0" + optionalDependencies: + errno "^0.1.1" + graceful-fs "^4.1.2" + image-size "~0.5.0" + make-dir "^2.1.0" + mime "^1.4.1" + needle "^3.1.0" + source-map "~0.6.0" + +license-webpack-plugin@4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/license-webpack-plugin/-/license-webpack-plugin-4.0.2.tgz#1e18442ed20b754b82f1adeff42249b81d11aec6" + integrity sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw== + dependencies: + webpack-sources "^3.0.0" + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +listr2@8.2.4: + version "8.2.4" + resolved "https://registry.yarnpkg.com/listr2/-/listr2-8.2.4.tgz#486b51cbdb41889108cb7e2c90eeb44519f5a77f" + integrity sha512-opevsywziHd3zHCVQGAj8zu+Z3yHNkkoYhWIGnq54RrCVwLz0MozotJEDnKsIBLvkfLGN6BLOyAeRrYI0pKA4g== + dependencies: + cli-truncate "^4.0.0" + colorette "^2.0.20" + eventemitter3 "^5.0.1" + log-update "^6.1.0" + rfdc "^1.4.1" + wrap-ansi "^9.0.0" + +lmdb@3.0.13: + version "3.0.13" + resolved "https://registry.yarnpkg.com/lmdb/-/lmdb-3.0.13.tgz#5f326ac13cd60c239c481c42b601ebae39935026" + integrity sha512-UGe+BbaSUQtAMZobTb4nHvFMrmvuAQKSeaqAX2meTEQjfsbpl5sxdHD8T72OnwD4GU9uwNhYXIVe4QGs8N9Zyw== + dependencies: + msgpackr "^1.10.2" + node-addon-api "^6.1.0" + node-gyp-build-optional-packages "5.2.2" + ordered-binary "^1.4.1" + weak-lru-cache "^1.2.2" + optionalDependencies: + "@lmdb/lmdb-darwin-arm64" "3.0.13" + "@lmdb/lmdb-darwin-x64" "3.0.13" + "@lmdb/lmdb-linux-arm" "3.0.13" + "@lmdb/lmdb-linux-arm64" "3.0.13" + "@lmdb/lmdb-linux-x64" "3.0.13" + "@lmdb/lmdb-win32-x64" "3.0.13" + +loader-runner@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" + integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== + +loader-utils@3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.3.1.tgz#735b9a19fd63648ca7adbd31c2327dfe281304e5" + integrity sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg== + +loader-utils@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" + integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" + +locate-path@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.2.0.tgz#69cb1779bd90b35ab1e771e1f2f89a202c2a8a8a" + integrity sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA== + dependencies: + p-locate "^6.0.0" + +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + +lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +log-update@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-6.1.0.tgz#1a04ff38166f94647ae1af562f4bd6a15b1b7cd4" + integrity sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w== + dependencies: + ansi-escapes "^7.0.0" + cli-cursor "^5.0.0" + slice-ansi "^7.1.0" + strip-ansi "^7.1.0" + wrap-ansi "^9.0.0" + +log4js@^6.4.1: + version "6.9.1" + resolved "https://registry.yarnpkg.com/log4js/-/log4js-6.9.1.tgz#aba5a3ff4e7872ae34f8b4c533706753709e38b6" + integrity sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g== + dependencies: + date-format "^4.0.14" + debug "^4.3.4" + flatted "^3.2.7" + rfdc "^1.3.0" + streamroller "^3.1.5" + +lru-cache@^10.0.1, lru-cache@^10.2.0: + version "10.4.3" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" + integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +magic-string@0.30.11: + version "0.30.11" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.11.tgz#301a6f93b3e8c2cb13ac1a7a673492c0dfd12954" + integrity sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A== + dependencies: + "@jridgewell/sourcemap-codec" "^1.5.0" + +make-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + +make-dir@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-4.0.0.tgz#c3c2307a771277cd9638305f915c29ae741b614e" + integrity sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== + dependencies: + semver "^7.5.3" + +make-fetch-happen@^13.0.0, make-fetch-happen@^13.0.1: + version "13.0.1" + resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-13.0.1.tgz#273ba2f78f45e1f3a6dca91cede87d9fa4821e36" + integrity sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA== + dependencies: + "@npmcli/agent" "^2.0.0" + cacache "^18.0.0" + http-cache-semantics "^4.1.1" + is-lambda "^1.0.1" + minipass "^7.0.2" + minipass-fetch "^3.0.0" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + negotiator "^0.6.3" + proc-log "^4.2.0" + promise-retry "^2.0.1" + ssri "^10.0.0" + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== + +memfs@^4.6.0: + version "4.14.0" + resolved "https://registry.yarnpkg.com/memfs/-/memfs-4.14.0.tgz#48d5e85a03ea0b428280003212fbca3063531be3" + integrity sha512-JUeY0F/fQZgIod31Ja1eJgiSxLn7BfQlCnqhwXFBzFHEw63OdLK7VJUJ7bnzNsWgCyoUP5tEp1VRY8rDaYzqOA== + dependencies: + "@jsonjoy.com/json-pack" "^1.0.3" + "@jsonjoy.com/util" "^1.3.0" + tree-dump "^1.0.1" + tslib "^2.0.0" + +merge-descriptors@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.3.tgz#d80319a65f3c7935351e5cfdac8f9318504dbed5" + integrity sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== + +micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" + integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== + dependencies: + braces "^3.0.3" + picomatch "^2.3.1" + +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +"mime-db@>= 1.43.0 < 2": + version "1.53.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.53.0.tgz#3cb63cd820fc29896d9d4e8c32ab4fcd74ccb447" + integrity sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg== + +mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mime@1.6.0, mime@^1.4.1: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mime@^2.5.2: + version "2.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" + integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mimic-function@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/mimic-function/-/mimic-function-5.0.1.tgz#acbe2b3349f99b9deaca7fb70e48b83e94e67076" + integrity sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA== + +mini-css-extract-plugin@2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.0.tgz#c73a1327ccf466f69026ac22a8e8fd707b78a235" + integrity sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA== + dependencies: + schema-utils "^4.0.0" + tapable "^2.2.1" + +minimalistic-assert@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimatch@^3.0.4, minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^9.0.0, minimatch@^9.0.4: + version "9.0.5" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" + integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +minipass-collect@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz#1621bc77e12258a12c60d34e2276ec5c20680863" + integrity sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw== + dependencies: + minipass "^7.0.3" + +minipass-fetch@^3.0.0: + version "3.0.5" + resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-3.0.5.tgz#f0f97e40580affc4a35cc4a1349f05ae36cb1e4c" + integrity sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg== + dependencies: + minipass "^7.0.3" + minipass-sized "^1.0.3" + minizlib "^2.1.2" + optionalDependencies: + encoding "^0.1.13" + +minipass-flush@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" + integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== + dependencies: + minipass "^3.0.0" + +minipass-pipeline@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" + integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== + dependencies: + minipass "^3.0.0" + +minipass-sized@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70" + integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== + dependencies: + minipass "^3.0.0" + +minipass@^3.0.0: + version "3.3.6" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" + integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== + dependencies: + yallist "^4.0.0" + +minipass@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" + integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== + +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.2, minipass@^7.0.3, minipass@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" + integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== + +minizlib@^2.1.1, minizlib@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" + integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== + dependencies: + minipass "^3.0.0" + yallist "^4.0.0" + +mkdirp@^0.5.5: + version "0.5.6" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + dependencies: + minimist "^1.2.6" + +mkdirp@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +mrmime@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mrmime/-/mrmime-2.0.0.tgz#151082a6e06e59a9a39b46b3e14d5cfe92b3abb4" + integrity sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw== + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + +ms@2.1.3, ms@^2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +msgpackr-extract@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/msgpackr-extract/-/msgpackr-extract-3.0.3.tgz#e9d87023de39ce714872f9e9504e3c1996d61012" + integrity sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA== + dependencies: + node-gyp-build-optional-packages "5.2.2" + optionalDependencies: + "@msgpackr-extract/msgpackr-extract-darwin-arm64" "3.0.3" + "@msgpackr-extract/msgpackr-extract-darwin-x64" "3.0.3" + "@msgpackr-extract/msgpackr-extract-linux-arm" "3.0.3" + "@msgpackr-extract/msgpackr-extract-linux-arm64" "3.0.3" + "@msgpackr-extract/msgpackr-extract-linux-x64" "3.0.3" + "@msgpackr-extract/msgpackr-extract-win32-x64" "3.0.3" + +msgpackr@^1.10.2: + version "1.11.2" + resolved "https://registry.yarnpkg.com/msgpackr/-/msgpackr-1.11.2.tgz#4463b7f7d68f2e24865c395664973562ad24473d" + integrity sha512-F9UngXRlPyWCDEASDpTf6c9uNhGPTqnTeLVt7bN+bU1eajoR/8V9ys2BRaV5C/e5ihE6sJ9uPIKaYt6bFuO32g== + optionalDependencies: + msgpackr-extract "^3.0.2" + +multicast-dns@^7.2.5: + version "7.2.5" + resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-7.2.5.tgz#77eb46057f4d7adbd16d9290fa7299f6fa64cced" + integrity sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg== + dependencies: + dns-packet "^5.2.2" + thunky "^1.0.2" + +mute-stream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-1.0.0.tgz#e31bd9fe62f0aed23520aa4324ea6671531e013e" + integrity sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA== + +nanoid@^3.3.7: + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== + +needle@^3.1.0: + version "3.3.1" + resolved "https://registry.yarnpkg.com/needle/-/needle-3.3.1.tgz#63f75aec580c2e77e209f3f324e2cdf3d29bd049" + integrity sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q== + dependencies: + iconv-lite "^0.6.3" + sax "^1.2.4" + +negotiator@0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + +negotiator@^0.6.3, negotiator@~0.6.4: + version "0.6.4" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.4.tgz#777948e2452651c570b712dd01c23e262713fff7" + integrity sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w== + +neo-async@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + +nice-napi@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/nice-napi/-/nice-napi-1.0.2.tgz#dc0ab5a1eac20ce548802fc5686eaa6bc654927b" + integrity sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA== + dependencies: + node-addon-api "^3.0.0" + node-gyp-build "^4.2.2" + +node-addon-api@^3.0.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz#81325e0a2117789c0128dab65e7e38f07ceba161" + integrity sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A== + +node-addon-api@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-6.1.0.tgz#ac8470034e58e67d0c6f1204a18ae6995d9c0d76" + integrity sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA== + +node-forge@^1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" + integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== + +node-gyp-build-optional-packages@5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.2.2.tgz#522f50c2d53134d7f3a76cd7255de4ab6c96a3a4" + integrity sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw== + dependencies: + detect-libc "^2.0.1" + +node-gyp-build@^4.2.2: + version "4.8.3" + resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.3.tgz#9187216d24dbee29e44eb20d2ebf62a296bbea1a" + integrity sha512-EMS95CMJzdoSKoIiXo8pxKoL8DYxwIZXYlLmgPb8KUv794abpnLK6ynsCAWNliOjREKruYKdzbh76HHYUHX7nw== + +node-gyp@^10.0.0: + version "10.2.0" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-10.2.0.tgz#80101c4aa4f7ab225f13fcc8daaaac4eb1a8dd86" + integrity sha512-sp3FonBAaFe4aYTcFdZUn2NYkbP7xroPGYvQmP4Nl5PxamznItBnNCgjrVTKrEfQynInMsJvZrdmqUnysCJ8rw== + dependencies: + env-paths "^2.2.0" + exponential-backoff "^3.1.1" + glob "^10.3.10" + graceful-fs "^4.2.6" + make-fetch-happen "^13.0.0" + nopt "^7.0.0" + proc-log "^4.1.0" + semver "^7.3.5" + tar "^6.2.1" + which "^4.0.0" + +node-releases@^2.0.18: + version "2.0.18" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" + integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== + +nopt@^7.0.0: + version "7.2.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-7.2.1.tgz#1cac0eab9b8e97c9093338446eddd40b2c8ca1e7" + integrity sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w== + dependencies: + abbrev "^2.0.0" + +normalize-package-data@^6.0.0: + version "6.0.2" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-6.0.2.tgz#a7bc22167fe24025412bcff0a9651eb768b03506" + integrity sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g== + dependencies: + hosted-git-info "^7.0.0" + semver "^7.3.5" + validate-npm-package-license "^3.0.4" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + +npm-bundled@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-3.0.1.tgz#cca73e15560237696254b10170d8f86dad62da25" + integrity sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ== + dependencies: + npm-normalize-package-bin "^3.0.0" + +npm-install-checks@^6.0.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-6.3.0.tgz#046552d8920e801fa9f919cad569545d60e826fe" + integrity sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw== + dependencies: + semver "^7.1.1" + +npm-normalize-package-bin@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz#25447e32a9a7de1f51362c61a559233b89947832" + integrity sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ== + +npm-package-arg@11.0.3, npm-package-arg@^11.0.0: + version "11.0.3" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-11.0.3.tgz#dae0c21199a99feca39ee4bfb074df3adac87e2d" + integrity sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw== + dependencies: + hosted-git-info "^7.0.0" + proc-log "^4.0.0" + semver "^7.3.5" + validate-npm-package-name "^5.0.0" + +npm-packlist@^8.0.0: + version "8.0.2" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-8.0.2.tgz#5b8d1d906d96d21c85ebbeed2cf54147477c8478" + integrity sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA== + dependencies: + ignore-walk "^6.0.4" + +npm-pick-manifest@9.1.0, npm-pick-manifest@^9.0.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-9.1.0.tgz#83562afde52b0b07cb6244361788d319ce7e8636" + integrity sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA== + dependencies: + npm-install-checks "^6.0.0" + npm-normalize-package-bin "^3.0.0" + npm-package-arg "^11.0.0" + semver "^7.3.5" + +npm-registry-fetch@^17.0.0: + version "17.1.0" + resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-17.1.0.tgz#fb69e8e762d456f08bda2f5f169f7638fb92beb1" + integrity sha512-5+bKQRH0J1xG1uZ1zMNvxW0VEyoNWgJpY9UDuluPFLKDfJ9u2JmmjmTJV1srBGQOROfdBMiVvnH2Zvpbm+xkVA== + dependencies: + "@npmcli/redact" "^2.0.0" + jsonparse "^1.3.1" + make-fetch-happen "^13.0.0" + minipass "^7.0.2" + minipass-fetch "^3.0.0" + minizlib "^2.1.2" + npm-package-arg "^11.0.0" + proc-log "^4.0.0" + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +nth-check@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== + dependencies: + boolbase "^1.0.0" + +object-assign@^4: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-inspect@^1.13.1: + version "1.13.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a" + integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA== + +obuf@^1.0.0, obuf@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" + integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== + +on-finished@2.4.1, on-finished@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== + dependencies: + ee-first "1.1.1" + +on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + integrity sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww== + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.0, onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +onetime@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-7.0.0.tgz#9f16c92d8c9ef5120e3acd9dd9957cceecc1ab60" + integrity sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ== + dependencies: + mimic-function "^5.0.0" + +open@10.1.0, open@^10.0.3: + version "10.1.0" + resolved "https://registry.yarnpkg.com/open/-/open-10.1.0.tgz#a7795e6e5d519abe4286d9937bb24b51122598e1" + integrity sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw== + dependencies: + default-browser "^5.2.1" + define-lazy-prop "^3.0.0" + is-inside-container "^1.0.0" + is-wsl "^3.1.0" + +ora@5.4.1: + version "5.4.1" + resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" + integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== + dependencies: + bl "^4.1.0" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-spinners "^2.5.0" + is-interactive "^1.0.0" + is-unicode-supported "^0.1.0" + log-symbols "^4.1.0" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + +ordered-binary@^1.4.1: + version "1.5.3" + resolved "https://registry.yarnpkg.com/ordered-binary/-/ordered-binary-1.5.3.tgz#8bee2aa7a82c3439caeb1e80c272fd4cf51170fb" + integrity sha512-oGFr3T+pYdTGJ+YFEILMpS3es+GiIbs9h/XQrclBXUtd44ey7XwfsMzM31f64I1SQOawDoDr/D823kNCADI8TA== + +os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + +p-limit@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" + integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== + dependencies: + yocto-queue "^1.0.0" + +p-locate@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-6.0.0.tgz#3da9a49d4934b901089dca3302fa65dc5a05c04f" + integrity sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw== + dependencies: + p-limit "^4.0.0" + +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + +p-retry@^6.2.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-6.2.1.tgz#81828f8dc61c6ef5a800585491572cc9892703af" + integrity sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ== + dependencies: + "@types/retry" "0.12.2" + is-network-error "^1.0.0" + retry "^0.13.1" + +package-json-from-dist@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505" + integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== + +pacote@18.0.6: + version "18.0.6" + resolved "https://registry.yarnpkg.com/pacote/-/pacote-18.0.6.tgz#ac28495e24f4cf802ef911d792335e378e86fac7" + integrity sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A== + dependencies: + "@npmcli/git" "^5.0.0" + "@npmcli/installed-package-contents" "^2.0.1" + "@npmcli/package-json" "^5.1.0" + "@npmcli/promise-spawn" "^7.0.0" + "@npmcli/run-script" "^8.0.0" + cacache "^18.0.0" + fs-minipass "^3.0.0" + minipass "^7.0.2" + npm-package-arg "^11.0.0" + npm-packlist "^8.0.0" + npm-pick-manifest "^9.0.0" + npm-registry-fetch "^17.0.0" + proc-log "^4.0.0" + promise-retry "^2.0.1" + sigstore "^2.2.0" + ssri "^10.0.0" + tar "^6.1.11" + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-json@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +parse-node-version@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b" + integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== + +parse5-html-rewriting-stream@7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-7.0.0.tgz#e376d3e762d2950ccbb6bb59823fc1d7e9fdac36" + integrity sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg== + dependencies: + entities "^4.3.0" + parse5 "^7.0.0" + parse5-sax-parser "^7.0.0" + +parse5-sax-parser@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/parse5-sax-parser/-/parse5-sax-parser-7.0.0.tgz#4c05064254f0488676aca75fb39ca069ec96dee5" + integrity sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg== + dependencies: + parse5 "^7.0.0" + +parse5@^7.0.0: + version "7.2.1" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.2.1.tgz#8928f55915e6125f430cc44309765bf17556a33a" + integrity sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ== + dependencies: + entities "^4.5.0" + +parseurl@~1.3.2, parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +path-exists@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-5.0.0.tgz#a6aad9489200b21fab31e49cf09277e5116fb9e7" + integrity sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-scurry@^1.11.1: + version "1.11.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" + integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== + dependencies: + lru-cache "^10.2.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + +path-to-regexp@0.1.10: + version "0.1.10" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.10.tgz#67e9108c5c0551b9e5326064387de4763c4d5f8b" + integrity sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w== + +path-type@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-5.0.0.tgz#14b01ed7aea7ddf9c7c3f46181d4d04f9c785bb8" + integrity sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg== + +picocolors@^1.0.0, picocolors@^1.0.1, picocolors@^1.1.0, picocolors@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== + +picomatch@4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.2.tgz#77c742931e8f3b8820946c76cd0c1f13730d1dab" + integrity sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pify@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + +piscina@4.6.1: + version "4.6.1" + resolved "https://registry.yarnpkg.com/piscina/-/piscina-4.6.1.tgz#4de673b0ff84bf641b31b07b3348669383b51c9a" + integrity sha512-z30AwWGtQE+Apr+2WBZensP2lIvwoaMcOPkQlIEmSGMJNUvaYACylPYrQM6wSdUNJlnDVMSpLv7xTMJqlVshOA== + optionalDependencies: + nice-napi "^1.0.2" + +pkg-dir@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-7.0.0.tgz#8f0c08d6df4476756c5ff29b3282d0bab7517d11" + integrity sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA== + dependencies: + find-up "^6.3.0" + +postcss-loader@8.1.1: + version "8.1.1" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-8.1.1.tgz#2822589e7522927344954acb55bbf26e8b195dfe" + integrity sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ== + dependencies: + cosmiconfig "^9.0.0" + jiti "^1.20.0" + semver "^7.5.4" + +postcss-media-query-parser@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" + integrity sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig== + +postcss-modules-extract-imports@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz#b4497cb85a9c0c4b5aabeb759bb25e8d89f15002" + integrity sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q== + +postcss-modules-local-by-default@^4.0.5: + version "4.1.0" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.1.0.tgz#b0db6bc81ffc7bdc52eb0f84d6ca0bedf0e36d21" + integrity sha512-rm0bdSv4jC3BDma3s9H19ZddW0aHX6EoqwDYU2IfZhRN+53QrufTRo2IdkAbRqLx4R2IYbZnbjKKxg4VN5oU9Q== + dependencies: + icss-utils "^5.0.0" + postcss-selector-parser "^7.0.0" + postcss-value-parser "^4.1.0" + +postcss-modules-scope@^3.2.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz#1bbccddcb398f1d7a511e0a2d1d047718af4078c" + integrity sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA== + dependencies: + postcss-selector-parser "^7.0.0" + +postcss-modules-values@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" + integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== + dependencies: + icss-utils "^5.0.0" + +postcss-selector-parser@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz#41bd8b56f177c093ca49435f65731befe25d6b9c" + integrity sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +postcss@8.4.41: + version "8.4.41" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.41.tgz#d6104d3ba272d882fe18fc07d15dc2da62fa2681" + integrity sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ== + dependencies: + nanoid "^3.3.7" + picocolors "^1.0.1" + source-map-js "^1.2.0" + +postcss@^8.2.14, postcss@^8.4.23, postcss@^8.4.33, postcss@^8.4.43: + version "8.4.49" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.49.tgz#4ea479048ab059ab3ae61d082190fabfd994fe19" + integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA== + dependencies: + nanoid "^3.3.7" + picocolors "^1.1.1" + source-map-js "^1.2.1" + +proc-log@^4.0.0, proc-log@^4.1.0, proc-log@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-4.2.0.tgz#b6f461e4026e75fdfe228b265e9f7a00779d7034" + integrity sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA== + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +promise-inflight@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" + integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== + +promise-retry@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" + integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== + dependencies: + err-code "^2.0.2" + retry "^0.12.0" + +proxy-addr@~2.0.7: + version "2.0.7" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== + dependencies: + forwarded "0.2.0" + ipaddr.js "1.9.1" + +prr@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" + integrity sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw== + +punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== + +punycode@^2.1.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== + +qjobs@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/qjobs/-/qjobs-1.2.0.tgz#c45e9c61800bd087ef88d7e256423bdd49e5d071" + integrity sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg== + +qs@6.13.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.0.tgz#6ca3bd58439f7e245655798997787b0d88a51906" + integrity sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg== + dependencies: + side-channel "^1.0.6" + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +range-parser@^1.2.1, range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raw-body@2.5.2: + version "2.5.2" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a" + integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA== + dependencies: + bytes "3.1.2" + http-errors "2.0.0" + iconv-lite "0.4.24" + unpipe "1.0.0" + +readable-stream@^2.0.1: + version "2.3.8" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@^3.0.6, readable-stream@^3.4.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-4.0.2.tgz#388fccb8b75665da3abffe2d8f8ed59fe74c230a" + integrity sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA== + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +reflect-metadata@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.2.2.tgz#400c845b6cba87a21f2c65c4aeb158f4fa4d9c5b" + integrity sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q== + +regenerate-unicode-properties@^10.2.0: + version "10.2.0" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz#626e39df8c372338ea9b8028d1f99dc3fd9c3db0" + integrity sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA== + dependencies: + regenerate "^1.4.2" + +regenerate@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + +regenerator-runtime@^0.14.0: + version "0.14.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== + +regenerator-transform@^0.15.2: + version "0.15.2" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4" + integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== + dependencies: + "@babel/runtime" "^7.8.4" + +regex-parser@^2.2.11: + version "2.3.0" + resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.3.0.tgz#4bb61461b1a19b8b913f3960364bb57887f920ee" + integrity sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg== + +regexpu-core@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.1.1.tgz#b469b245594cb2d088ceebc6369dceb8c00becac" + integrity sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw== + dependencies: + regenerate "^1.4.2" + regenerate-unicode-properties "^10.2.0" + regjsgen "^0.8.0" + regjsparser "^0.11.0" + unicode-match-property-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.1.0" + +regjsgen@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.8.0.tgz#df23ff26e0c5b300a6470cad160a9d090c3a37ab" + integrity sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q== + +regjsparser@^0.11.0: + version "0.11.2" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.11.2.tgz#7404ad42be00226d72bcf1f003f1f441861913d8" + integrity sha512-3OGZZ4HoLJkkAZx/48mTXJNlmqTGOzc0o9OWQPuWpkOlXXPbyN6OafCcoXUnBqE2D3f/T5L+pWc1kdEmnfnRsA== + dependencies: + jsesc "~3.0.2" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +requires-port@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-url-loader@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz#ee3142fb1f1e0d9db9524d539cfa166e9314f795" + integrity sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg== + dependencies: + adjust-sourcemap-loader "^4.0.0" + convert-source-map "^1.7.0" + loader-utils "^2.0.0" + postcss "^8.2.14" + source-map "0.6.1" + +resolve@1.22.8, resolve@^1.14.2: + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + +restore-cursor@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-5.1.0.tgz#0766d95699efacb14150993f55baf0953ea1ebe7" + integrity sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA== + dependencies: + onetime "^7.0.0" + signal-exit "^4.1.0" + +retry@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" + integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== + +retry@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" + integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rfdc@^1.3.0, rfdc@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz#778f76c4fb731d93414e8f925fbecf64cce7f6ca" + integrity sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rimraf@^5.0.5: + version "5.0.10" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-5.0.10.tgz#23b9843d3dc92db71f96e1a2ce92e39fd2a8221c" + integrity sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ== + dependencies: + glob "^10.3.7" + +rollup@4.22.4: + version "4.22.4" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.22.4.tgz#4135a6446671cd2a2453e1ad42a45d5973ec3a0f" + integrity sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A== + dependencies: + "@types/estree" "1.0.5" + optionalDependencies: + "@rollup/rollup-android-arm-eabi" "4.22.4" + "@rollup/rollup-android-arm64" "4.22.4" + "@rollup/rollup-darwin-arm64" "4.22.4" + "@rollup/rollup-darwin-x64" "4.22.4" + "@rollup/rollup-linux-arm-gnueabihf" "4.22.4" + "@rollup/rollup-linux-arm-musleabihf" "4.22.4" + "@rollup/rollup-linux-arm64-gnu" "4.22.4" + "@rollup/rollup-linux-arm64-musl" "4.22.4" + "@rollup/rollup-linux-powerpc64le-gnu" "4.22.4" + "@rollup/rollup-linux-riscv64-gnu" "4.22.4" + "@rollup/rollup-linux-s390x-gnu" "4.22.4" + "@rollup/rollup-linux-x64-gnu" "4.22.4" + "@rollup/rollup-linux-x64-musl" "4.22.4" + "@rollup/rollup-win32-arm64-msvc" "4.22.4" + "@rollup/rollup-win32-ia32-msvc" "4.22.4" + "@rollup/rollup-win32-x64-msvc" "4.22.4" + fsevents "~2.3.2" + +rollup@^4.20.0: + version "4.27.2" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.27.2.tgz#3ee2aaa85ac8dfa4aa43ff48ccc54234dda5721e" + integrity sha512-KreA+PzWmk2yaFmZVwe6GB2uBD86nXl86OsDkt1bJS9p3vqWuEQ6HnJJ+j/mZi/q0920P99/MVRlB4L3crpF5w== + dependencies: + "@types/estree" "1.0.6" + optionalDependencies: + "@rollup/rollup-android-arm-eabi" "4.27.2" + "@rollup/rollup-android-arm64" "4.27.2" + "@rollup/rollup-darwin-arm64" "4.27.2" + "@rollup/rollup-darwin-x64" "4.27.2" + "@rollup/rollup-freebsd-arm64" "4.27.2" + "@rollup/rollup-freebsd-x64" "4.27.2" + "@rollup/rollup-linux-arm-gnueabihf" "4.27.2" + "@rollup/rollup-linux-arm-musleabihf" "4.27.2" + "@rollup/rollup-linux-arm64-gnu" "4.27.2" + "@rollup/rollup-linux-arm64-musl" "4.27.2" + "@rollup/rollup-linux-powerpc64le-gnu" "4.27.2" + "@rollup/rollup-linux-riscv64-gnu" "4.27.2" + "@rollup/rollup-linux-s390x-gnu" "4.27.2" + "@rollup/rollup-linux-x64-gnu" "4.27.2" + "@rollup/rollup-linux-x64-musl" "4.27.2" + "@rollup/rollup-win32-arm64-msvc" "4.27.2" + "@rollup/rollup-win32-ia32-msvc" "4.27.2" + "@rollup/rollup-win32-x64-msvc" "4.27.2" + fsevents "~2.3.2" + +run-applescript@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/run-applescript/-/run-applescript-7.0.0.tgz#e5a553c2bffd620e169d276c1cd8f1b64778fbeb" + integrity sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A== + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +rxjs@7.8.1, rxjs@~7.8.0: + version "7.8.1" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" + integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== + dependencies: + tslib "^2.1.0" + +safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.1.0, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +sass-loader@16.0.0: + version "16.0.0" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-16.0.0.tgz#9b8d497e24bc176dc368df2b5b9e90b4ad24bf4e" + integrity sha512-n13Z+3rU9A177dk4888czcVFiC8CL9dii4qpXWUg3YIIgZEvi9TCFKjOQcbK0kJM7DJu9VucrZFddvNfYCPwtw== + dependencies: + neo-async "^2.6.2" + +sass@1.77.6: + version "1.77.6" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.77.6.tgz#898845c1348078c2e6d1b64f9ee06b3f8bd489e4" + integrity sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q== + dependencies: + chokidar ">=3.0.0 <4.0.0" + immutable "^4.0.0" + source-map-js ">=0.6.2 <2.0.0" + +sax@^1.2.4: + version "1.4.1" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz#44cc8988377f126304d3b3fc1010c733b929ef0f" + integrity sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg== + +schema-utils@^3.1.1, schema-utils@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" + integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== + dependencies: + "@types/json-schema" "^7.0.8" + ajv "^6.12.5" + ajv-keywords "^3.5.2" + +schema-utils@^4.0.0, schema-utils@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b" + integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== + dependencies: + "@types/json-schema" "^7.0.9" + ajv "^8.9.0" + ajv-formats "^2.1.1" + ajv-keywords "^5.1.0" + +select-hose@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" + integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== + +selfsigned@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.4.1.tgz#560d90565442a3ed35b674034cec4e95dceb4ae0" + integrity sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q== + dependencies: + "@types/node-forge" "^1.3.0" + node-forge "^1" + +semver@7.6.3, semver@^7.0.0, semver@^7.1.1, semver@^7.3.5, semver@^7.5.3, semver@^7.5.4: + version "7.6.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" + integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== + +semver@^5.6.0: + version "5.7.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== + +semver@^6.3.0, semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +send@0.19.0: + version "0.19.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.19.0.tgz#bbc5a388c8ea6c048967049dbeac0e4a3f09d7f8" + integrity sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw== + dependencies: + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "2.0.0" + mime "1.6.0" + ms "2.1.3" + on-finished "2.4.1" + range-parser "~1.2.1" + statuses "2.0.1" + +serialize-javascript@^6.0.1, serialize-javascript@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2" + integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g== + dependencies: + randombytes "^2.1.0" + +serve-index@^1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" + integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw== + dependencies: + accepts "~1.3.4" + batch "0.6.1" + debug "2.6.9" + escape-html "~1.0.3" + http-errors "~1.6.2" + mime-types "~2.1.17" + parseurl "~1.3.2" + +serve-static@1.16.2: + version "1.16.2" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.16.2.tgz#b6a5343da47f6bdd2673848bf45754941e803296" + integrity sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw== + dependencies: + encodeurl "~2.0.0" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.19.0" + +set-function-length@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + +setprototypeof@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== + +setprototypeof@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== + +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shell-quote@^1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" + integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== + +side-channel@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" + integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + object-inspect "^1.13.1" + +signal-exit@^3.0.2, signal-exit@^3.0.3: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +signal-exit@^4.0.1, signal-exit@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== + +sigstore@^2.2.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-2.3.1.tgz#0755dd2cc4820f2e922506da54d3d628e13bfa39" + integrity sha512-8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ== + dependencies: + "@sigstore/bundle" "^2.3.2" + "@sigstore/core" "^1.0.0" + "@sigstore/protobuf-specs" "^0.3.2" + "@sigstore/sign" "^2.3.2" + "@sigstore/tuf" "^2.3.4" + "@sigstore/verify" "^1.2.1" + +slash@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-5.1.0.tgz#be3adddcdf09ac38eebe8dcdc7b1a57a75b095ce" + integrity sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg== + +slice-ansi@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-5.0.0.tgz#b73063c57aa96f9cd881654b15294d95d285c42a" + integrity sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ== + dependencies: + ansi-styles "^6.0.0" + is-fullwidth-code-point "^4.0.0" + +slice-ansi@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-7.1.0.tgz#cd6b4655e298a8d1bdeb04250a433094b347b9a9" + integrity sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg== + dependencies: + ansi-styles "^6.2.1" + is-fullwidth-code-point "^5.0.0" + +smart-buffer@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" + integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== + +socket.io-adapter@~2.5.2: + version "2.5.5" + resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-2.5.5.tgz#c7a1f9c703d7756844751b6ff9abfc1780664082" + integrity sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg== + dependencies: + debug "~4.3.4" + ws "~8.17.1" + +socket.io-parser@~4.2.4: + version "4.2.4" + resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-4.2.4.tgz#c806966cf7270601e47469ddeec30fbdfda44c83" + integrity sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew== + dependencies: + "@socket.io/component-emitter" "~3.1.0" + debug "~4.3.1" + +socket.io@^4.7.2: + version "4.8.1" + resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-4.8.1.tgz#fa0eaff965cc97fdf4245e8d4794618459f7558a" + integrity sha512-oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg== + dependencies: + accepts "~1.3.4" + base64id "~2.0.0" + cors "~2.8.5" + debug "~4.3.2" + engine.io "~6.6.0" + socket.io-adapter "~2.5.2" + socket.io-parser "~4.2.4" + +sockjs@^0.3.24: + version "0.3.24" + resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce" + integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== + dependencies: + faye-websocket "^0.11.3" + uuid "^8.3.2" + websocket-driver "^0.7.4" + +socks-proxy-agent@^8.0.3: + version "8.0.4" + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz#9071dca17af95f483300316f4b063578fa0db08c" + integrity sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw== + dependencies: + agent-base "^7.1.1" + debug "^4.3.4" + socks "^2.8.3" + +socks@^2.8.3: + version "2.8.3" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.3.tgz#1ebd0f09c52ba95a09750afe3f3f9f724a800cb5" + integrity sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw== + dependencies: + ip-address "^9.0.5" + smart-buffer "^4.2.0" + +"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.2, source-map-js@^1.2.0, source-map-js@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" + integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== + +source-map-loader@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-5.0.0.tgz#f593a916e1cc54471cfc8851b905c8a845fc7e38" + integrity sha512-k2Dur7CbSLcAH73sBcIkV5xjPV4SzqO1NJ7+XaQl8if3VODDUj3FNchNGpqgJSKbvUfJuhVdv8K2Eu8/TNl2eA== + dependencies: + iconv-lite "^0.6.3" + source-map-js "^1.0.2" + +source-map-support@0.5.21, source-map-support@^0.5.5, source-map-support@~0.5.20: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +source-map@0.7.4: + version "0.7.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" + integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== + +spdx-correct@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" + integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz#5d607d27fc806f66d7b64a766650fa890f04ed66" + integrity sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.20" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz#e44ed19ed318dd1e5888f93325cee800f0f51b89" + integrity sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw== + +spdy-transport@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" + integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== + dependencies: + debug "^4.1.0" + detect-node "^2.0.4" + hpack.js "^2.1.6" + obuf "^1.1.2" + readable-stream "^3.0.6" + wbuf "^1.7.3" + +spdy@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" + integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== + dependencies: + debug "^4.1.0" + handle-thing "^2.0.0" + http-deceiver "^1.2.7" + select-hose "^2.0.0" + spdy-transport "^3.0.0" + +sprintf-js@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" + integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== + +ssri@^10.0.0: + version "10.0.6" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.6.tgz#a8aade2de60ba2bce8688e3fa349bad05c7dc1e5" + integrity sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ== + dependencies: + minipass "^7.0.3" + +statuses@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + +"statuses@>= 1.4.0 < 2", statuses@~1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== + +streamroller@^3.1.5: + version "3.1.5" + resolved "https://registry.yarnpkg.com/streamroller/-/streamroller-3.1.5.tgz#1263182329a45def1ffaef58d31b15d13d2ee7ff" + integrity sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw== + dependencies: + date-format "^4.0.14" + debug "^4.3.4" + fs-extra "^8.1.0" + +"string-width-cjs@npm:string-width@^4.2.0": + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^5.0.1, string-width@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" + integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== + dependencies: + eastasianwidth "^0.2.0" + emoji-regex "^9.2.2" + strip-ansi "^7.0.1" + +string-width@^7.0.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-7.2.0.tgz#b5bb8e2165ce275d4d43476dd2700ad9091db6dc" + integrity sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ== + dependencies: + emoji-regex "^10.3.0" + get-east-asian-width "^1.0.0" + strip-ansi "^7.1.0" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-ansi@^7.0.1, strip-ansi@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" + integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== + dependencies: + ansi-regex "^6.0.1" + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-color@^8.0.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +symbol-observable@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-4.0.0.tgz#5b425f192279e87f2f9b937ac8540d1984b39205" + integrity sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ== + +tapable@^2.1.1, tapable@^2.2.0, tapable@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" + integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== + +tar@^6.1.11, tar@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a" + integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A== + dependencies: + chownr "^2.0.0" + fs-minipass "^2.0.0" + minipass "^5.0.0" + minizlib "^2.1.1" + mkdirp "^1.0.3" + yallist "^4.0.0" + +terser-webpack-plugin@^5.3.10: + version "5.3.10" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz#904f4c9193c6fd2a03f693a2150c62a92f40d199" + integrity sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w== + dependencies: + "@jridgewell/trace-mapping" "^0.3.20" + jest-worker "^27.4.5" + schema-utils "^3.1.1" + serialize-javascript "^6.0.1" + terser "^5.26.0" + +terser@5.31.6: + version "5.31.6" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.31.6.tgz#c63858a0f0703988d0266a82fcbf2d7ba76422b1" + integrity sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg== + dependencies: + "@jridgewell/source-map" "^0.3.3" + acorn "^8.8.2" + commander "^2.20.0" + source-map-support "~0.5.20" + +terser@^5.26.0: + version "5.36.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.36.0.tgz#8b0dbed459ac40ff7b4c9fd5a3a2029de105180e" + integrity sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w== + dependencies: + "@jridgewell/source-map" "^0.3.3" + acorn "^8.8.2" + commander "^2.20.0" + source-map-support "~0.5.20" + +thingies@^1.20.0: + version "1.21.0" + resolved "https://registry.yarnpkg.com/thingies/-/thingies-1.21.0.tgz#e80fbe58fd6fdaaab8fad9b67bd0a5c943c445c1" + integrity sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g== + +thunky@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" + integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +tmp@^0.2.1: + version "0.2.3" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.3.tgz#eb783cc22bc1e8bebd0671476d46ea4eb32a79ae" + integrity sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toidentifier@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== + +tree-dump@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/tree-dump/-/tree-dump-1.0.2.tgz#c460d5921caeb197bde71d0e9a7b479848c5b8ac" + integrity sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ== + +tree-kill@1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc" + integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A== + +tslib@2.6.3: + version "2.6.3" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.3.tgz#0438f810ad7a9edcde7a241c3d80db693c8cbfe0" + integrity sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ== + +tslib@^2.0.0, tslib@^2.1.0, tslib@^2.3.0: + version "2.8.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f" + integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== + +tuf-js@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-2.2.1.tgz#fdd8794b644af1a75c7aaa2b197ddffeb2911b56" + integrity sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA== + dependencies: + "@tufjs/models" "2.0.1" + debug "^4.3.4" + make-fetch-happen "^13.0.1" + +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + +type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + +typed-assert@^1.0.8: + version "1.0.9" + resolved "https://registry.yarnpkg.com/typed-assert/-/typed-assert-1.0.9.tgz#8af9d4f93432c4970ec717e3006f33f135b06213" + integrity sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg== + +typescript@~5.4.2: + version "5.4.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.5.tgz#42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611" + integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ== + +ua-parser-js@^0.7.30: + version "0.7.39" + resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.39.tgz#c71efb46ebeabc461c4612d22d54f88880fabe7e" + integrity sha512-IZ6acm6RhQHNibSt7+c09hhvsKy9WUr4DVbeq9U8o71qxyYtJpQeDxQnMrVqnIFMLcQjHO0I9wgfO2vIahht4w== + +undici-types@~6.19.8: + version "6.19.8" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02" + integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw== + +unicode-canonical-property-names-ecmascript@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz#cb3173fe47ca743e228216e4a3ddc4c84d628cc2" + integrity sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg== + +unicode-match-property-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" + integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== + dependencies: + unicode-canonical-property-names-ecmascript "^2.0.0" + unicode-property-aliases-ecmascript "^2.0.0" + +unicode-match-property-value-ecmascript@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz#a0401aee72714598f739b68b104e4fe3a0cb3c71" + integrity sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg== + +unicode-property-aliases-ecmascript@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== + +unicorn-magic@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.1.0.tgz#1bb9a51c823aaf9d73a8bfcd3d1a23dde94b0ce4" + integrity sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ== + +unique-filename@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-3.0.0.tgz#48ba7a5a16849f5080d26c760c86cf5cf05770ea" + integrity sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g== + dependencies: + unique-slug "^4.0.0" + +unique-slug@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-4.0.0.tgz#6bae6bb16be91351badd24cdce741f892a6532e3" + integrity sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ== + dependencies: + imurmurhash "^0.1.4" + +universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + +update-browserslist-db@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz#80846fba1d79e82547fb661f8d141e0945755fe5" + integrity sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A== + dependencies: + escalade "^3.2.0" + picocolors "^1.1.0" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +validate-npm-package-license@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +validate-npm-package-name@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz#a316573e9b49f3ccd90dbb6eb52b3f06c6d604e8" + integrity sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ== + +vary@^1, vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + +vite@5.4.6: + version "5.4.6" + resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.6.tgz#85a93a1228a7fb5a723ca1743e337a2588ed008f" + integrity sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q== + dependencies: + esbuild "^0.21.3" + postcss "^8.4.43" + rollup "^4.20.0" + optionalDependencies: + fsevents "~2.3.3" + +void-elements@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec" + integrity sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung== + +watchpack@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.1.tgz#29308f2cac150fa8e4c92f90e0ec954a9fed7fff" + integrity sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + +watchpack@^2.4.1: + version "2.4.2" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.2.tgz#2feeaed67412e7c33184e5a79ca738fbd38564da" + integrity sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + +wbuf@^1.1.0, wbuf@^1.7.3: + version "1.7.3" + resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" + integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== + dependencies: + minimalistic-assert "^1.0.0" + +wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== + dependencies: + defaults "^1.0.3" + +weak-lru-cache@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/weak-lru-cache/-/weak-lru-cache-1.2.2.tgz#fdbb6741f36bae9540d12f480ce8254060dccd19" + integrity sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw== + +webpack-dev-middleware@7.4.2, webpack-dev-middleware@^7.1.0: + version "7.4.2" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-7.4.2.tgz#40e265a3d3d26795585cff8207630d3a8ff05877" + integrity sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA== + dependencies: + colorette "^2.0.10" + memfs "^4.6.0" + mime-types "^2.1.31" + on-finished "^2.4.1" + range-parser "^1.2.1" + schema-utils "^4.0.0" + +webpack-dev-server@5.0.4: + version "5.0.4" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-5.0.4.tgz#cb6ea47ff796b9251ec49a94f24a425e12e3c9b8" + integrity sha512-dljXhUgx3HqKP2d8J/fUMvhxGhzjeNVarDLcbO/EWMSgRizDkxHQDZQaLFL5VJY9tRBj2Gz+rvCEYYvhbqPHNA== + dependencies: + "@types/bonjour" "^3.5.13" + "@types/connect-history-api-fallback" "^1.5.4" + "@types/express" "^4.17.21" + "@types/serve-index" "^1.9.4" + "@types/serve-static" "^1.15.5" + "@types/sockjs" "^0.3.36" + "@types/ws" "^8.5.10" + ansi-html-community "^0.0.8" + bonjour-service "^1.2.1" + chokidar "^3.6.0" + colorette "^2.0.10" + compression "^1.7.4" + connect-history-api-fallback "^2.0.0" + default-gateway "^6.0.3" + express "^4.17.3" + graceful-fs "^4.2.6" + html-entities "^2.4.0" + http-proxy-middleware "^2.0.3" + ipaddr.js "^2.1.0" + launch-editor "^2.6.1" + open "^10.0.3" + p-retry "^6.2.0" + rimraf "^5.0.5" + schema-utils "^4.2.0" + selfsigned "^2.4.1" + serve-index "^1.9.1" + sockjs "^0.3.24" + spdy "^4.0.2" + webpack-dev-middleware "^7.1.0" + ws "^8.16.0" + +webpack-merge@6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-6.0.1.tgz#50c776868e080574725abc5869bd6e4ef0a16c6a" + integrity sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg== + dependencies: + clone-deep "^4.0.1" + flat "^5.0.2" + wildcard "^2.0.1" + +webpack-sources@^3.0.0, webpack-sources@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" + integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== + +webpack-subresource-integrity@5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/webpack-subresource-integrity/-/webpack-subresource-integrity-5.1.0.tgz#8b7606b033c6ccac14e684267cb7fb1f5c2a132a" + integrity sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q== + dependencies: + typed-assert "^1.0.8" + +webpack@5.94.0: + version "5.94.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.94.0.tgz#77a6089c716e7ab90c1c67574a28da518a20970f" + integrity sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg== + dependencies: + "@types/estree" "^1.0.5" + "@webassemblyjs/ast" "^1.12.1" + "@webassemblyjs/wasm-edit" "^1.12.1" + "@webassemblyjs/wasm-parser" "^1.12.1" + acorn "^8.7.1" + acorn-import-attributes "^1.9.5" + browserslist "^4.21.10" + chrome-trace-event "^1.0.2" + enhanced-resolve "^5.17.1" + es-module-lexer "^1.2.1" + eslint-scope "5.1.1" + events "^3.2.0" + glob-to-regexp "^0.4.1" + graceful-fs "^4.2.11" + json-parse-even-better-errors "^2.3.1" + loader-runner "^4.2.0" + mime-types "^2.1.27" + neo-async "^2.6.2" + schema-utils "^3.2.0" + tapable "^2.1.1" + terser-webpack-plugin "^5.3.10" + watchpack "^2.4.1" + webpack-sources "^3.2.3" + +websocket-driver@>=0.5.1, websocket-driver@^0.7.4: + version "0.7.4" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" + integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== + dependencies: + http-parser-js ">=0.5.1" + safe-buffer ">=5.1.0" + websocket-extensions ">=0.1.1" + +websocket-extensions@>=0.1.1: + version "0.1.4" + resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" + integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== + +which@^1.2.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +which@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/which/-/which-4.0.0.tgz#cd60b5e74503a3fbcfbf6cd6b4138a8bae644c1a" + integrity sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg== + dependencies: + isexe "^3.1.1" + +wildcard@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" + integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== + +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" + integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== + dependencies: + ansi-styles "^6.1.0" + string-width "^5.0.1" + strip-ansi "^7.0.1" + +wrap-ansi@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-9.0.0.tgz#1a3dc8b70d85eeb8398ddfb1e4a02cd186e58b3e" + integrity sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q== + dependencies: + ansi-styles "^6.2.1" + string-width "^7.0.0" + strip-ansi "^7.1.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +ws@^8.16.0: + version "8.18.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc" + integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw== + +ws@~8.17.1: + version "8.17.1" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.17.1.tgz#9293da530bb548febc95371d90f9c878727d919b" + integrity sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs-parser@^21.1.1: + version "21.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + +yargs@17.7.2, yargs@^17.2.1: + version "17.7.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== + dependencies: + cliui "^8.0.1" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.1.1" + +yargs@^16.1.1: + version "16.2.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yocto-queue@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.1.1.tgz#fef65ce3ac9f8a32ceac5a634f74e17e5b232110" + integrity sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g== + +yoctocolors-cjs@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yoctocolors-cjs/-/yoctocolors-cjs-2.1.2.tgz#f4b905a840a37506813a7acaa28febe97767a242" + integrity sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA== + +zone.js@~0.14.3: + version "0.14.10" + resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.14.10.tgz#23b8b29687c6bffece996e5ee5b854050e7775c8" + integrity sha512-YGAhaO7J5ywOXW6InXNlLmfU194F8lVgu7bRntUF3TiG8Y3nBK0x1UJJuHUP/e8IyihkjCYqhCScpSwnlaSRkQ==