From f55861528ad85322457791a47e86ab6fb6a7cf25 Mon Sep 17 00:00:00 2001 From: Refringe Date: Thu, 28 Nov 2024 10:51:53 -0500 Subject: [PATCH] Compress Database Location Files (#954) Due to LFS storage issues... This PR removes all current LFS files (the location loot files) and replaces them with a single 7-zip archive. The archive is stored in LFS, but has decreased in size by roughly 95%. The location `.json` files are now git-ignored. There are two new npm commands to aid in working with the archive: - `npm run database:compress` Compresses the JSON files into an archive *which can be committed into the project*. - `npm run database:decompress` Decompresses the archive into the original JSON files located in the working directory. The gulp file that handles builds has been updated to ensure that the archive files are *always* used when a build is processed, regardless of if the JSON files are already present in the working directory. --- .gitattributes | 62 +- .gitignore | 4 + README.md | 44 +- .../assets/compressed/database/locations.7z | 3 + project/assets/database/locations/base.json | 32 - .../locations/bigmap/allExtracts.json | 600 - .../database/locations/bigmap/base.json | 9117 ---------- .../database/locations/bigmap/looseLoot.json | 3 - .../database/locations/bigmap/staticAmmo.json | 3 - .../locations/bigmap/staticContainers.json | 3 - .../database/locations/bigmap/staticLoot.json | 3 - .../database/locations/bigmap/statics.json | 1539 -- .../database/locations/develop/base.json | 592 - .../locations/factory4_day/allExtracts.json | 186 - .../database/locations/factory4_day/base.json | 5152 ------ .../locations/factory4_day/looseLoot.json | 3 - .../locations/factory4_day/staticAmmo.json | 3 - .../factory4_day/staticContainers.json | 3 - .../locations/factory4_day/staticLoot.json | 3 - .../locations/factory4_day/statics.json | 559 - .../locations/factory4_night/allExtracts.json | 186 - .../locations/factory4_night/base.json | 5148 ------ .../locations/factory4_night/looseLoot.json | 3 - .../locations/factory4_night/staticAmmo.json | 3 - .../factory4_night/staticContainers.json | 3 - .../locations/factory4_night/staticLoot.json | 3 - .../locations/factory4_night/statics.json | 559 - .../database/locations/hideout/base.json | 173 - .../locations/interchange/allExtracts.json | 186 - .../database/locations/interchange/base.json | 7574 -------- .../locations/interchange/looseLoot.json | 3 - .../locations/interchange/staticAmmo.json | 3 - .../interchange/staticContainers.json | 3 - .../locations/interchange/staticLoot.json | 3 - .../locations/interchange/statics.json | 2539 --- .../locations/laboratory/allExtracts.json | 232 - .../database/locations/laboratory/base.json | 5725 ------- .../locations/laboratory/looseLoot.json | 3 - .../locations/laboratory/staticAmmo.json | 3 - .../laboratory/staticContainers.json | 3 - .../locations/laboratory/staticLoot.json | 3 - .../locations/laboratory/statics.json | 979 -- .../locations/lighthouse/allExtracts.json | 278 - .../database/locations/lighthouse/base.json | 8331 --------- .../locations/lighthouse/looseLoot.json | 3 - .../locations/lighthouse/staticAmmo.json | 3 - .../lighthouse/staticContainers.json | 3 - .../locations/lighthouse/staticLoot.json | 3 - .../locations/lighthouse/statics.json | 1649 -- .../database/locations/privatearea/base.json | 125 - .../locations/rezervbase/allExtracts.json | 232 - .../database/locations/rezervbase/base.json | 6814 -------- .../locations/rezervbase/looseLoot.json | 3 - .../locations/rezervbase/staticAmmo.json | 3 - .../rezervbase/staticContainers.json | 3 - .../locations/rezervbase/staticLoot.json | 3 - .../locations/rezervbase/statics.json | 3775 ---- .../locations/sandbox/allExtracts.json | 163 - .../database/locations/sandbox/base.json | 6203 ------- .../database/locations/sandbox/looseLoot.json | 3 - .../locations/sandbox/staticAmmo.json | 3 - .../locations/sandbox/staticContainers.json | 3 - .../locations/sandbox/staticLoot.json | 3 - .../database/locations/sandbox/statics.json | 1787 -- .../locations/sandbox_high/allExtracts.json | 163 - .../database/locations/sandbox_high/base.json | 6406 ------- .../locations/sandbox_high/looseLoot.json | 3 - .../locations/sandbox_high/staticAmmo.json | 3 - .../sandbox_high/staticContainers.json | 3 - .../locations/sandbox_high/staticLoot.json | 3 - .../locations/sandbox_high/statics.json | 1787 -- .../locations/shoreline/allExtracts.json | 324 - .../database/locations/shoreline/base.json | 9880 ----------- .../locations/shoreline/looseLoot.json | 3 - .../locations/shoreline/staticAmmo.json | 3 - .../locations/shoreline/staticContainers.json | 3 - .../locations/shoreline/staticLoot.json | 3 - .../database/locations/shoreline/statics.json | 3026 ---- .../database/locations/suburbs/base.json | 119 - .../locations/tarkovstreets/allExtracts.json | 423 - .../locations/tarkovstreets/base.json | 14298 ---------------- .../locations/tarkovstreets/looseLoot.json | 3 - .../locations/tarkovstreets/staticAmmo.json | 3 - .../tarkovstreets/staticContainers.json | 3 - .../locations/tarkovstreets/staticLoot.json | 3 - .../locations/tarkovstreets/statics.json | 3992 ----- .../database/locations/terminal/base.json | 126 - .../assets/database/locations/town/base.json | 119 - .../database/locations/woods/allExtracts.json | 462 - .../assets/database/locations/woods/base.json | 10410 ----------- .../database/locations/woods/looseLoot.json | 3 - .../database/locations/woods/staticAmmo.json | 3 - .../locations/woods/staticContainers.json | 3 - .../database/locations/woods/staticLoot.json | 3 - .../database/locations/woods/statics.json | 1393 -- project/gulpfile.mjs | 80 +- project/package.json | 10 +- project/scripts/databaseCompress.js | 28 + project/scripts/databaseDecompress.js | 47 + project/scripts/fix-7za-permissions.js | 30 + project/src/Program.ts | 5 + project/src/di/Container.ts | 4 + .../src/utils/DatabaseDecompressionUtil.ts | 143 + 103 files changed, 371 insertions(+), 123596 deletions(-) create mode 100644 project/assets/compressed/database/locations.7z delete mode 100644 project/assets/database/locations/base.json delete mode 100644 project/assets/database/locations/bigmap/allExtracts.json delete mode 100644 project/assets/database/locations/bigmap/base.json delete mode 100644 project/assets/database/locations/bigmap/looseLoot.json delete mode 100644 project/assets/database/locations/bigmap/staticAmmo.json delete mode 100644 project/assets/database/locations/bigmap/staticContainers.json delete mode 100644 project/assets/database/locations/bigmap/staticLoot.json delete mode 100644 project/assets/database/locations/bigmap/statics.json delete mode 100644 project/assets/database/locations/develop/base.json delete mode 100644 project/assets/database/locations/factory4_day/allExtracts.json delete mode 100644 project/assets/database/locations/factory4_day/base.json delete mode 100644 project/assets/database/locations/factory4_day/looseLoot.json delete mode 100644 project/assets/database/locations/factory4_day/staticAmmo.json delete mode 100644 project/assets/database/locations/factory4_day/staticContainers.json delete mode 100644 project/assets/database/locations/factory4_day/staticLoot.json delete mode 100644 project/assets/database/locations/factory4_day/statics.json delete mode 100644 project/assets/database/locations/factory4_night/allExtracts.json delete mode 100644 project/assets/database/locations/factory4_night/base.json delete mode 100644 project/assets/database/locations/factory4_night/looseLoot.json delete mode 100644 project/assets/database/locations/factory4_night/staticAmmo.json delete mode 100644 project/assets/database/locations/factory4_night/staticContainers.json delete mode 100644 project/assets/database/locations/factory4_night/staticLoot.json delete mode 100644 project/assets/database/locations/factory4_night/statics.json delete mode 100644 project/assets/database/locations/hideout/base.json delete mode 100644 project/assets/database/locations/interchange/allExtracts.json delete mode 100644 project/assets/database/locations/interchange/base.json delete mode 100644 project/assets/database/locations/interchange/looseLoot.json delete mode 100644 project/assets/database/locations/interchange/staticAmmo.json delete mode 100644 project/assets/database/locations/interchange/staticContainers.json delete mode 100644 project/assets/database/locations/interchange/staticLoot.json delete mode 100644 project/assets/database/locations/interchange/statics.json delete mode 100644 project/assets/database/locations/laboratory/allExtracts.json delete mode 100644 project/assets/database/locations/laboratory/base.json delete mode 100644 project/assets/database/locations/laboratory/looseLoot.json delete mode 100644 project/assets/database/locations/laboratory/staticAmmo.json delete mode 100644 project/assets/database/locations/laboratory/staticContainers.json delete mode 100644 project/assets/database/locations/laboratory/staticLoot.json delete mode 100644 project/assets/database/locations/laboratory/statics.json delete mode 100644 project/assets/database/locations/lighthouse/allExtracts.json delete mode 100644 project/assets/database/locations/lighthouse/base.json delete mode 100644 project/assets/database/locations/lighthouse/looseLoot.json delete mode 100644 project/assets/database/locations/lighthouse/staticAmmo.json delete mode 100644 project/assets/database/locations/lighthouse/staticContainers.json delete mode 100644 project/assets/database/locations/lighthouse/staticLoot.json delete mode 100644 project/assets/database/locations/lighthouse/statics.json delete mode 100644 project/assets/database/locations/privatearea/base.json delete mode 100644 project/assets/database/locations/rezervbase/allExtracts.json delete mode 100644 project/assets/database/locations/rezervbase/base.json delete mode 100644 project/assets/database/locations/rezervbase/looseLoot.json delete mode 100644 project/assets/database/locations/rezervbase/staticAmmo.json delete mode 100644 project/assets/database/locations/rezervbase/staticContainers.json delete mode 100644 project/assets/database/locations/rezervbase/staticLoot.json delete mode 100644 project/assets/database/locations/rezervbase/statics.json delete mode 100644 project/assets/database/locations/sandbox/allExtracts.json delete mode 100644 project/assets/database/locations/sandbox/base.json delete mode 100644 project/assets/database/locations/sandbox/looseLoot.json delete mode 100644 project/assets/database/locations/sandbox/staticAmmo.json delete mode 100644 project/assets/database/locations/sandbox/staticContainers.json delete mode 100644 project/assets/database/locations/sandbox/staticLoot.json delete mode 100644 project/assets/database/locations/sandbox/statics.json delete mode 100644 project/assets/database/locations/sandbox_high/allExtracts.json delete mode 100644 project/assets/database/locations/sandbox_high/base.json delete mode 100644 project/assets/database/locations/sandbox_high/looseLoot.json delete mode 100644 project/assets/database/locations/sandbox_high/staticAmmo.json delete mode 100644 project/assets/database/locations/sandbox_high/staticContainers.json delete mode 100644 project/assets/database/locations/sandbox_high/staticLoot.json delete mode 100644 project/assets/database/locations/sandbox_high/statics.json delete mode 100644 project/assets/database/locations/shoreline/allExtracts.json delete mode 100644 project/assets/database/locations/shoreline/base.json delete mode 100644 project/assets/database/locations/shoreline/looseLoot.json delete mode 100644 project/assets/database/locations/shoreline/staticAmmo.json delete mode 100644 project/assets/database/locations/shoreline/staticContainers.json delete mode 100644 project/assets/database/locations/shoreline/staticLoot.json delete mode 100644 project/assets/database/locations/shoreline/statics.json delete mode 100644 project/assets/database/locations/suburbs/base.json delete mode 100644 project/assets/database/locations/tarkovstreets/allExtracts.json delete mode 100644 project/assets/database/locations/tarkovstreets/base.json delete mode 100644 project/assets/database/locations/tarkovstreets/looseLoot.json delete mode 100644 project/assets/database/locations/tarkovstreets/staticAmmo.json delete mode 100644 project/assets/database/locations/tarkovstreets/staticContainers.json delete mode 100644 project/assets/database/locations/tarkovstreets/staticLoot.json delete mode 100644 project/assets/database/locations/tarkovstreets/statics.json delete mode 100644 project/assets/database/locations/terminal/base.json delete mode 100644 project/assets/database/locations/town/base.json delete mode 100644 project/assets/database/locations/woods/allExtracts.json delete mode 100644 project/assets/database/locations/woods/base.json delete mode 100644 project/assets/database/locations/woods/looseLoot.json delete mode 100644 project/assets/database/locations/woods/staticAmmo.json delete mode 100644 project/assets/database/locations/woods/staticContainers.json delete mode 100644 project/assets/database/locations/woods/staticLoot.json delete mode 100644 project/assets/database/locations/woods/statics.json create mode 100644 project/scripts/databaseCompress.js create mode 100644 project/scripts/databaseDecompress.js create mode 100644 project/scripts/fix-7za-permissions.js create mode 100644 project/src/utils/DatabaseDecompressionUtil.ts diff --git a/.gitattributes b/.gitattributes index 0ef37475..d96d6be4 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,64 +1,4 @@ # Normalize Line Endings * text=auto eol=lf -# LFS File Listing -project/assets/database/locations/interchange/looseLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/interchange/staticLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/interchange/staticContainers.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/interchange/staticAmmo.json filter=lfs diff=lfs merge=lfs -text - -project/assets/database/locations/lighthouse/looseLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/lighthouse/staticLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/lighthouse/staticContainers.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/lighthouse/staticAmmo.json filter=lfs diff=lfs merge=lfs -text - -project/assets/database/locations/shoreline/looseLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/shoreline/staticLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/shoreline/staticContainers.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/shoreline/staticAmmo.json filter=lfs diff=lfs merge=lfs -text - -project/assets/database/locations/tarkovstreets/looseLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/tarkovstreets/staticLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/tarkovstreets/staticContainers.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/tarkovstreets/staticAmmo.json filter=lfs diff=lfs merge=lfs -text - -project/assets/database/locations/woods/looseLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/woods/staticLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/woods/staticContainers.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/woods/staticAmmo.json filter=lfs diff=lfs merge=lfs -text - -project/assets/database/locations/factory4_day/looseLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/factory4_day/staticLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/factory4_day/staticContainers.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/factory4_day/staticAmmo.json filter=lfs diff=lfs merge=lfs -text - -project/assets/database/locations/factory4_night/looseLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/factory4_night/staticLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/factory4_night/staticContainers.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/factory4_night/staticAmmo.json filter=lfs diff=lfs merge=lfs -text - -project/assets/database/locations/rezervbase/looseLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/rezervbase/staticLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/rezervbase/staticContainers.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/rezervbase/staticAmmo.json filter=lfs diff=lfs merge=lfs -text - -project/assets/database/locations/bigmap/looseLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/bigmap/staticLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/bigmap/staticContainers.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/bigmap/staticAmmo.json filter=lfs diff=lfs merge=lfs -text - -project/assets/database/locations/laboratory/looseLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/laboratory/staticLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/laboratory/staticContainers.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/laboratory/staticAmmo.json filter=lfs diff=lfs merge=lfs -text - -project/assets/database/locations/sandbox/looseLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/sandbox/staticLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/sandbox/staticContainers.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/sandbox/staticAmmo.json filter=lfs diff=lfs merge=lfs -text - -project/assets/database/locations/sandbox_high/looseLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/sandbox_high/staticLoot.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/sandbox_high/staticContainers.json filter=lfs diff=lfs merge=lfs -text -project/assets/database/locations/sandbox_high/staticAmmo.json filter=lfs diff=lfs merge=lfs -text - +project/assets/compressed/database/locations.7z filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore index 6bf060c4..16b66c3a 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ *.exe *.zip *.d.ts +project/assets/database/locations/ project/build/ project/obj/ project/dist/ @@ -32,6 +33,9 @@ yarn.lock ## windows desktop.ini +## OSX +.DS_Store + ## parcel .parcel-cache/ diff --git a/README.md b/README.md index f1ea22e1..19690f53 100644 --- a/README.md +++ b/README.md @@ -51,27 +51,29 @@ To prepare the project for development you will need to: The following commands are available after the initial setup. Run them with `npm run `. -| Command | Description | -|----------------------|---------------------------------------------------------------------------| -| `check:circular` | Check for circular dependencies in the project. | -| `lint` | Check the project for coding standards issues using Biome. | -| `lint:fix` | Automatically fix coding standards issues using Biome. | -| `style` | Check the project for formatting issues using Biome. | -| `style:fix` | Automatically fix formatting issues using Biome. | -| `format` | Automatically fix all coding standards and formatting issues using Biome. | -| `test` | Run all tests. | -| `test:watch` | Run tests in watch mode. Tests will re-run when files are changed. | -| `test:coverage` | Run tests and generate a coverage report. | -| `test:ui` | Run tests in UI mode. This will open a browser window to view tests. | -| `build:release` | Build the project for release. | -| `build:debug` | Build the project for debugging. | -| `build:bleeding` | Build the project on the bleeding edge. | -| `build:bleedingmods` | Build the project on the bleeding edge with mods. | -| `run:build` | Run the project in build mode. | -| `run:debug` | Run the project in debug mode. | -| `run:profiler` | Run the project in profiler mode. | -| `gen:types` | Generate types for the project. | -| `gen:docs` | Generate documentation for the project. | +| Command | Description | +|-----------------------|---------------------------------------------------------------------------| +| `check:circular` | Check for circular dependencies in the project. | +| `lint` | Check the project for coding standards issues using Biome. | +| `lint:fix` | Automatically fix coding standards issues using Biome. | +| `style` | Check the project for formatting issues using Biome. | +| `style:fix` | Automatically fix formatting issues using Biome. | +| `format` | Automatically fix all coding standards and formatting issues using Biome. | +| `test` | Run all tests. | +| `test:watch` | Run tests in watch mode. Tests will re-run when files are changed. | +| `test:coverage` | Run tests and generate a coverage report. | +| `test:ui` | Run tests in UI mode. This will open a browser window to view tests. | +| `build:release` | Build the project for release. | +| `build:debug` | Build the project for debugging. | +| `build:bleeding` | Build the project on the bleeding edge. | +| `build:bleedingmods` | Build the project on the bleeding edge with mods. | +| `run:build` | Run the project in build mode. | +| `run:debug` | Run the project in debug mode. | +| `run:profiler` | Run the project in profiler mode. | +| `gen:types` | Generate types for the project. | +| `gen:docs` | Generate documentation for the project. | +| `database:compress` | Compress database files from working directory into archive. | +| `database:decompress` | Decompress database archives into working directory. | ### Debugging diff --git a/project/assets/compressed/database/locations.7z b/project/assets/compressed/database/locations.7z new file mode 100644 index 00000000..79491b6f --- /dev/null +++ b/project/assets/compressed/database/locations.7z @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d6083cc4da7fe86bdc16a309b0620e7c37b2d2eef06845041483a4b070c4835 +size 22287650 diff --git a/project/assets/database/locations/base.json b/project/assets/database/locations/base.json deleted file mode 100644 index 3b852b79..00000000 --- a/project/assets/database/locations/base.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "locations": {}, - "paths": [{ - "Source": "653e6760052c01c1c805532f", - "Destination": "5714dc692459777137212e12" - }, { - "Source": "5b0fc42d86f7744a585f9105", - "Destination": "5714dc692459777137212e12" - }, { - "Source": "5714dc692459777137212e12", - "Destination": "5714dbc024597771384a510d" - }, { - "Source": "5714dbc024597771384a510d", - "Destination": "56f40101d2720b2a4d8b45d6" - }, { - "Source": "56f40101d2720b2a4d8b45d6", - "Destination": "55f2d3fd4bdc2d5f408b4567" - }, { - "Source": "55f2d3fd4bdc2d5f408b4567", - "Destination": "5704e3c2d2720bac5b8b4567" - }, { - "Source": "5704e3c2d2720bac5b8b4567", - "Destination": "5704e5fad2720bc05b8b4567" - }, { - "Source": "5704e5fad2720bc05b8b4567", - "Destination": "5704e4dad2720bb55b8b4567" - }, { - "Source": "5704e4dad2720bb55b8b4567", - "Destination": "5704e554d2720bac5b8b456e" - } - ] -} \ No newline at end of file diff --git a/project/assets/database/locations/bigmap/allExtracts.json b/project/assets/database/locations/bigmap/allExtracts.json deleted file mode 100644 index 0733fa53..00000000 --- a/project/assets/database/locations/bigmap/allExtracts.json +++ /dev/null @@ -1,600 +0,0 @@ -[ - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Customs,Boiler Tanks", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "EXFIL_ZB013", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 50.0, - "ChancePVE": 50.0, - "Count": 5000, - "CountPve": 0, - "EntryPoints": "Customs,Boiler Tanks", - "EventAvailable": false, - "ExfiltrationTime": 60.0, - "ExfiltrationTimePVE": 60.0, - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Dorms V-Ex", - "PassageRequirement": "TransferItem", - "PlayersCount": 4, - "PlayersCountPVE": 4, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Item", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Customs", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "ZB-1011", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Boiler Tanks", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Crossroads", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 50.0, - "ChancePVE": 50.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Customs", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Old Gas Station", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Boiler Tanks", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Trailer Park", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Boiler Tanks", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "RUAF Roadblock", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 50.0, - "ChancePVE": 50.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Boiler Tanks", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Smuggler's Boat", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 50.0, - "ChancePVE": 50.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Customs", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "ZB-1012", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Shack", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Beyond Fuel Tank", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Railroad To Military Base", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Old Road Gate", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Sniper Roadblock", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Railroad To Port", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Crossroads", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Trailer Park Workers Shack", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Railroad To Tarkov", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "RUAF Roadblock_scav", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Warehouse 17", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Factory Shacks", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Warehouse 4", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Old Azs Gate", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Factory Far Corner", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Administration Gate", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Military Checkpoint", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - } -] \ No newline at end of file diff --git a/project/assets/database/locations/bigmap/base.json b/project/assets/database/locations/bigmap/base.json deleted file mode 100644 index 389f57b2..00000000 --- a/project/assets/database/locations/bigmap/base.json +++ /dev/null @@ -1,9117 +0,0 @@ -{ - "AccessKeys": [], - "AccessKeysPvE": [], - "AirdropParameters": [ - { - "AirdropPointDeactivateDistance": 50, - "MinPlayersCountToSpawnAirdrop": 6, - "PlaneAirdropChance": 0.2, - "PlaneAirdropCooldownMax": 700, - "PlaneAirdropCooldownMin": 600, - "PlaneAirdropEnd": 1200, - "PlaneAirdropMax": 1, - "PlaneAirdropStartMax": 900, - "PlaneAirdropStartMin": 300, - "UnsuccessfulTryPenalty": 600 - } - ], - "Area": 0, - "AveragePlayTime": 25, - "AveragePlayerLevel": 20, - "Banners": [ - { - "id": "5464e0404bdc2d2a708b4567", - "pic": { - "path": "CONTENT/banners/banner_usec.jpg", - "rcid": "" - } - }, - { - "id": "5464e0454bdc2d06708b4567", - "pic": { - "path": "CONTENT/banners/banner_bear.jpg", - "rcid": "" - } - }, - { - "id": "5803a58524597710ca36fcb2", - "pic": { - "path": "CONTENT/banners/banner_terragroup.jpg", - "rcid": "" - } - }, - { - "id": "5807bfe124597742a92e0a4c", - "pic": { - "path": "CONTENT/banners/norvinskzone.jpg", - "rcid": "" - } - }, - { - "id": "5807c3f124597746bf2db2ce", - "pic": { - "path": "CONTENT/banners/banner_scav.jpg", - "rcid": "" - } - }, - { - "id": "5807be8924597742c603fa19", - "pic": { - "path": "CONTENT/banners/banner_tarkov.jpg", - "rcid": "" - } - }, - { - "id": "5805f617245977100b2c1f41", - "pic": { - "path": "CONTENT/banners/tglabs.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT/banners/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "64c0ad6af99768b777048f4e", - "pic": { - "path": "CONTENT/banners/banner_emissary.jpg", - "rcid": "" - } - } - ], - "BossLocationSpawn": [ - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "0", - "BossEscortDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossName": "bossPartisan", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": true, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": 900, - "TriggerId": "PARTISAN_TRIGGER", - "TriggerName": "botEvent" - }, - { - "BossChance": 4, - "BossDifficult": "normal", - "BossEscortAmount": "2,2,3,3,3,4,4,5", - "BossEscortDifficult": "normal", - "BossEscortType": "skier", - "BossName": "skier", - "BossPlayer": false, - "BossZone": "ZoneScavBase,ZoneDormitory,ZoneFactoryCenter,ZoneCustoms,ZoneBrige", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "2", - "BossEscortDifficult": "normal", - "BossEscortType": "exUsec", - "BossName": "bossKnight", - "BossPlayer": false, - "BossZone": "ZoneScavBase", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": true, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": [ - { - "BossEscortAmount": "1", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerBigPipe" - }, - { - "BossEscortAmount": "1", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerBirdEye" - }, - { - "BossEscortAmount": "0", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerGluharScout" - } - ], - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "4", - "BossEscortDifficult": "normal", - "BossEscortType": "followerBully", - "BossName": "bossBully", - "BossPlayer": false, - "BossZone": "ZoneDormitory,ZoneGasStation,ZoneScavBase", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 40, - "BossDifficult": "normal", - "BossEscortAmount": "4", - "BossEscortDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossName": "sectantPriest", - "BossPlayer": false, - "BossZone": "ZoneScavBase", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 5, - "BossDifficult": "normal", - "BossEscortAmount": "3,4", - "BossEscortDifficult": "normal", - "BossEscortType": "arenaFighterEvent", - "BossName": "arenaFighterEvent", - "BossPlayer": false, - "BossZone": "ZoneFactoryCenter,ZoneScavBase", - "Delay": 0, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": [], - "Time": -1, - "TriggerId": "", - "TriggerName": "" - } - ], - "BotAssault": 80, - "BotEasy": 10, - "BotHard": 40, - "BotImpossible": 0, - "BotLocationModifier": { - "AccuracySpeed": 1, - "AdditionalHostilitySettings": [ - { - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 75, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcBEAR", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - }, - { - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 90, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcUSEC", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - } - ], - "DistToActivate": 265, - "DistToActivatePvE": 265, - "DistToPersueAxemanCoef": 1, - "DistToSleep": 300, - "DistToSleepPvE": 300, - "GainSight": 1, - "KhorovodChance": 0, - "MagnetPower": 44, - "MarksmanAccuratyCoef": 1, - "MaxExfiltrationTime": 1800, - "MinExfiltrationTime": 1200, - "Scattering": 1, - "VisibleDistance": 1 - }, - "BotMarksman": 20, - "BotMax": 19, - "BotMaxPlayer": 9, - "BotMaxPvE": 30, - "BotMaxTimePlayer": 1000, - "BotNormal": 50, - "BotSpawnCountStep": 4, - "BotSpawnPeriodCheck": 15, - "BotSpawnTimeOffMax": 30, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOnMax": 320, - "BotSpawnTimeOnMin": 260, - "BotStart": 20, - "BotStartPlayer": 210, - "BotStop": 1500, - "Description": "Very Big Map", - "DisabledForScav": false, - "DisabledScavExits": "", - "EnableCoop": true, - "Enabled": true, - "EscapeTimeLimit": 40, - "EscapeTimeLimitCoop": 25, - "EscapeTimeLimitPVE": 40, - "Events": { - "Halloween2024": { - "CrowdAttackBlockRadius": 100, - "CrowdAttackSpawnParams": [ - { - "Difficulty": "easy", - "Role": "infectedAssault", - "Weight": 30 - }, - { - "Difficulty": "normal", - "Role": "infectedAssault", - "Weight": 110 - }, - { - "Difficulty": "hard", - "Role": "infectedAssault", - "Weight": 40 - }, - { - "Difficulty": "easy", - "Role": "infectedPmc", - "Weight": 15 - }, - { - "Difficulty": "normal", - "Role": "infectedPmc", - "Weight": 55 - }, - { - "Difficulty": "hard", - "Role": "infectedPmc", - "Weight": 20 - }, - { - "Difficulty": "easy", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "easy", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedLaborant", - "Weight": 0 - } - ], - "CrowdCooldownPerPlayerSec": 300, - "CrowdsLimit": 2, - "InfectedLookCoeff": 2, - "InfectionPercentage": 0, - "MaxCrowdAttackSpawnLimit": 18, - "MinInfectionPercentage": 0, - "MinSpawnDistToPlayer": 50, - "TargetPointSearchRadiusLimit": 200, - "ZombieCallDeltaRadius": 20, - "ZombieCallPeriodSec": 1, - "ZombieCallRadiusLimit": 200, - "ZombieMultiplier": 5 - } - }, - "ForceOnlineRaidInPVE": false, - "GenerateLocalLootCache": true, - "GlobalContainerChanceModifier": 1, - "GlobalLootChanceModifier": 0.4, - "GlobalLootChanceModifierPvE": 0.9, - "IconX": 550, - "IconY": 460, - "Id": "bigmap", - "Insurance": true, - "IsSecret": false, - "Locked": false, - "Loot": [], - "MatchMakerMinPlayersByWaitTime": [ - { - "minPlayers": 7, - "time": 60 - }, - { - "minPlayers": 6, - "time": 70 - }, - { - "minPlayers": 5, - "time": 120 - }, - { - "minPlayers": 4, - "time": 180 - }, - { - "minPlayers": 3, - "time": 250 - }, - { - "minPlayers": 2, - "time": 330 - }, - { - "minPlayers": 1, - "time": 420 - } - ], - "MaxBotPerZone": 4, - "MaxCoopGroup": 12, - "MaxDistToFreePoint": 200, - "MaxPlayers": 12, - "MinDistToExitPoint": 30, - "MinDistToFreePoint": 60, - "MinMaxBots": [ - { - "WildSpawnType": "marksman", - "max": 10, - "min": 2 - } - ], - "MinPlayerLvlAccessKeys": 0, - "MinPlayers": 10, - "Name": "Customs", - "NewSpawn": true, - "NewSpawnForPlayers": true, - "NonWaveGroupScenario": { - "Chance": 50, - "Enabled": true, - "MaxToBeGroup": 3, - "MinToBeGroup": 2 - }, - "OcculsionCullingEnabled": false, - "OfflineNewSpawn": true, - "OfflineOldSpawn": true, - "OldSpawn": true, - "OpenZones": "ZoneBrige,ZoneCrossRoad,ZoneDormitory,ZoneGasStation,ZoneFactoryCenter,ZoneFactorySide,ZoneOldAZS,ZoneSnipeBrige,ZoneSnipeTower,ZoneSnipeFactory,ZoneBlockPost,ZoneBlockPostSniper,ZoneBlockPostSniper3,ZoneBlockPost,ZoneTankSquare,ZoneWade,ZoneCustoms", - "PlayersRequestCount": -1, - "PmcMaxPlayersInGroup": 5, - "Preview": { - "path": "", - "rcid": "" - }, - "RequiredPlayerLevelMax": 100, - "RequiredPlayerLevelMin": 0, - "Rules": "AvoidAllPmc", - "SafeLocation": false, - "ScavMaxPlayersInGroup": 4, - "Scene": { - "path": "maps/customs_preset.bundle", - "rcid": "bigmap.scenespreset.asset" - }, - "SpawnPointParams": [ - { - "BotZoneName": "ZoneWade", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 164.4 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 6, - "Id": "0321a8fe-1219-4574-9557-4d7cb2ae1c0e", - "Infiltration": "", - "Position": { - "x": 5.87000275, - "y": 1.37882686, - "z": -90.5099945 - }, - "Rotation": 229.912613, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0327c5d1-cc7f-432f-92dc-f95fb4719f1b", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 571.41, - "y": 1.49, - "z": -53.4799957 - }, - "Rotation": 180.13, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "06305c94-bdc3-4355-b2df-4b9060f54ed2", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 584.06, - "y": 9.66, - "z": 146.22 - }, - "Rotation": 230.030014, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCustoms", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 6, - "Id": "06609aab-bf3d-4a8e-9c0f-ba60366663ad", - "Infiltration": "", - "Position": { - "x": -170.240021, - "y": 1.063748, - "z": -46.4629974 - }, - "Rotation": 273.068, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneCustoms", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 6, - "Id": "06da51ee-f83e-47f3-a947-8d0e6254edce", - "Infiltration": "", - "Position": { - "x": -329.382019, - "y": 1.01902342, - "z": -211.054 - }, - "Rotation": 99.65997, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0a780428-48e0-4268-9ef8-0a7f999cc632", - "Infiltration": "Customs", - "Position": { - "x": -220.212, - "y": 1.0710001, - "z": -141.936 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGasStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77.17 - } - }, - "CorePointId": 25, - "DelayToCanSpawnSec": 6, - "Id": "0b6da56b-3e12-49e9-adfe-d33d4bd56d34", - "Infiltration": "", - "Position": { - "x": 420.47, - "y": 1.14899969, - "z": 22.5500011 - }, - "Rotation": 126.588921, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0bfe7760-902e-4b79-8722-7ce2ad0a970c", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 288.068, - "y": 1.718, - "z": -201.166 - }, - "Rotation": 17.73762, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0f054aeb-dae4-4de4-8f19-e96baac1def6", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 531.88, - "y": 9.52, - "z": 195.790009 - }, - "Rotation": 225.49, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0fd52df3-8419-4644-917f-efd18d99c85a", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 546.888, - "y": 2.208, - "z": 45.5639954 - }, - "Rotation": 342.4109, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "105e161c-c1ad-4004-8c02-f3c95164a75e", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 574, - "y": 1.46, - "z": -114.85 - }, - "Rotation": 283.46, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "10a75815-d786-43e2-9639-6b94071433f8", - "Infiltration": "Customs", - "Position": { - "x": 101.76799, - "y": 1.18800008, - "z": 11.8939972 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCrossRoad", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 6, - "Id": "10b76618-8674-4b79-ad6b-ce258f54bb73", - "Infiltration": "", - "Position": { - "x": 175.290009, - "y": 1.21891308, - "z": -5.380005 - }, - "Rotation": 38.0980873, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "119b220b-ec7f-41a8-bdb2-eeb831e2c17b", - "Infiltration": "Customs", - "Position": { - "x": 569.208, - "y": -0.322000027, - "z": -8.846008 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneOldAZS", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 6, - "Id": "11d4887b-54a6-40bf-87cf-f70d0721da0c", - "Infiltration": "", - "Position": { - "x": 291.5036, - "y": 2.35399628, - "z": -169.449524 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "11e7dc8d-ee50-4800-a400-a2f2761b6e9f", - "Infiltration": "Customs", - "Position": { - "x": -195.952, - "y": 1.458, - "z": -234.646 - }, - "Rotation": 17.2243824, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneFactorySide", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 6, - "Id": "12463505-23d7-4b12-afe7-4e540c04373a", - "Infiltration": "", - "Position": { - "x": 513.6549, - "y": 1.21008575, - "z": -55.33365 - }, - "Rotation": 100.786774, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneCustoms", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 6, - "Id": "12b8a48c-1b41-4e9f-a2e4-197d9c469d61", - "Infiltration": "", - "Position": { - "x": -157.741013, - "y": 1.60435379, - "z": -190.766 - }, - "Rotation": 273.068, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneScavBase", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "130a034a-5c2d-4d81-a04f-728f20421cc2", - "Infiltration": "", - "Position": { - "x": 255.4663, - "y": 1.21224034, - "z": -108.379227 - }, - "Rotation": 135.08139, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "158ea18b-12e5-4495-8774-0cb185ce83ba", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 587.85, - "y": 8.89, - "z": 141.949982 - }, - "Rotation": 216.79, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "15a5b4ce-8d57-41b8-8f2b-bcf806a8e803", - "Infiltration": "Customs", - "Position": { - "x": -223.232, - "y": 1.118, - "z": -147.516 - }, - "Rotation": 13.3819723, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneScavBase", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "16894fca-9b05-4c00-956e-1e352ab68131", - "Infiltration": "", - "Position": { - "x": 133.786285, - "y": 1.74224031, - "z": -82.02922 - }, - "Rotation": 189.840561, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneGasStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 62.3 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 6, - "Id": "16ac5894-aca4-435f-8646-53a2ed3b17df", - "Infiltration": "", - "Position": { - "x": 430.815033, - "y": 1.88306046, - "z": 54.8594666 - }, - "Rotation": 343.038422, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "181f7000-df70-4bc7-bff3-a709291c907f", - "Infiltration": "Customs", - "Position": { - "x": 100.158005, - "y": 1.18800008, - "z": 11.9940033 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1a39d596-25e4-4b63-b6da-325aa8409576", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 570.06, - "y": 1.49, - "z": -54.9799957 - }, - "Rotation": 191.11, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1ae5dc66-b54c-4584-bc24-174f5b3194ec", - "Infiltration": "Customs", - "Position": { - "x": 569.347961, - "y": -0.322000027, - "z": -10.6060028 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneOldAZS", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 6, - "Id": "1b202f92-51b5-4888-acfd-8784a130e14c", - "Infiltration": "", - "Position": { - "x": 339.321442, - "y": 1.189998, - "z": -190.771988 - }, - "Rotation": 52.6828651, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1b636e5b-ae6d-4df3-93ea-159f5a2437fd", - "Infiltration": "Customs", - "Position": { - "x": -132.9, - "y": -1.66999984, - "z": 39.8999939 - }, - "Rotation": 180.13, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1b65286c-52e8-48ef-a369-e89bfd0ab95e", - "Infiltration": "Customs", - "Position": { - "x": -133.812, - "y": 0.718000054, - "z": 14.2939911 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneDormitory", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 6, - "Id": "1b70ff23-343f-4f57-a21b-b9c22b98a6db", - "Infiltration": "", - "Position": { - "x": 185.443283, - "y": 2.83624029, - "z": 182.801788 - }, - "Rotation": 168.224945, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1b9fddbc-f667-4344-98ef-3d198229bd41", - "Infiltration": "Customs", - "Position": { - "x": -151.782, - "y": 1.258, - "z": -129.81601 - }, - "Rotation": 135.46, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1c26a886-b1f5-490e-8fdd-153d991dc393", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 363.248, - "y": 12.698, - "z": 155.594 - }, - "Rotation": 180.91, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCrossRoad", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 6, - "Id": "1cb1e3f5-0718-4178-95cf-39f3a5bbddfd", - "Infiltration": "", - "Position": { - "x": 213.6, - "y": 1.24984646, - "z": 1.949997 - }, - "Rotation": 327.055481, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1d0f26c8-85e5-42d0-b115-7d8f325f97d4", - "Infiltration": "Customs", - "Position": { - "x": -130.65, - "y": -2.11, - "z": 38.9100037 - }, - "Rotation": 180.13, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneWade", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 6, - "Id": "1d5a53ba-2b64-4915-9de8-826f06c7ba97", - "Infiltration": "", - "Position": { - "x": 6.49000549, - "y": 1.26882577, - "z": -95.06 - }, - "Rotation": 168.0339, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1d80614c-e211-42d5-b661-8e2bb1aeae79", - "Infiltration": "Customs", - "Position": { - "x": 100.598007, - "y": 1.168, - "z": -110.826004 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1fb2eba7-250e-4fd1-ba2a-75fb3d640ed7", - "Infiltration": "Customs", - "Position": { - "x": -131.27, - "y": -2.09, - "z": 42.6900024 - }, - "Rotation": 180.13, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "20495255-3094-4add-8744-14efc6e05308", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 525.62, - "y": 8.88, - "z": 199 - }, - "Rotation": 225.49, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2051eb7b-3ae8-49b8-adcb-c13f0ddc7972", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 317.338, - "y": 1.128, - "z": -78.756 - }, - "Rotation": 11.5521812, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "222800ad-50c8-4c75-b94b-ff1ec3d807d0", - "Infiltration": "Customs", - "Position": { - "x": 569.537964, - "y": -0.322000027, - "z": -12.9960022 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneScavBase", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "232e59b2-edec-429d-99e3-06f70241ce28", - "Infiltration": "", - "Position": { - "x": 260.2963, - "y": 1.21224034, - "z": -91.08922 - }, - "Rotation": 283.470825, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "253e504c-4d28-4aa0-926d-14dcbdeebc1c", - "Infiltration": "Customs", - "Position": { - "x": -309.95, - "y": 0.99, - "z": -94.51 - }, - "Rotation": 141.8, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "27aa4110-1b16-4454-b505-35026255b7f9", - "Infiltration": "Customs", - "Position": { - "x": -147.872, - "y": 1.678, - "z": -135.636 - }, - "Rotation": 21.67, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBlockPost", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 6, - "Id": "2810239e-d13d-4738-9be9-a7289f29ab82", - "Infiltration": "", - "Position": { - "x": 568.8878, - "y": -1.46942234, - "z": -25.5359821 - }, - "Rotation": 343.038422, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneTankSquare", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 6, - "Id": "28635a4e-a46b-4880-a081-714bd9d14e2d", - "Infiltration": "", - "Position": { - "x": 119.710007, - "y": 1.10880566, - "z": -34.1 - }, - "Rotation": 309.78418, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "287bf35f-5cdc-44dc-97b6-c035d5054bfa", - "Infiltration": "Customs", - "Position": { - "x": 100.664017, - "y": 1.18800008, - "z": 16.3029938 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneDormitory", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 6, - "Id": "2953587e-0cbb-49b1-9189-951adb63a277", - "Infiltration": "", - "Position": { - "x": 171.889282, - "y": 2.83300018, - "z": 172.208786 - }, - "Rotation": 46.6169, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2b5a6af0-0e2e-4fa1-bbf3-a390276b0b13", - "Infiltration": "Customs", - "Position": { - "x": -216.552, - "y": -1.46199989, - "z": -2.10600281 - }, - "Rotation": 138.324036, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2c286540-f748-4719-9a6d-6bd0e9a3c143", - "Infiltration": "Customs", - "Position": { - "x": 13.0980072, - "y": 1.19800007, - "z": -125.625992 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2c5cc586-9010-4b6c-8a67-fbfacb76a225", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 518.3, - "y": 8.35, - "z": 187.459991 - }, - "Rotation": 225.49, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2cb9950d-20ec-484e-919c-5489bb7abd5c", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 478, - "y": 2.7, - "z": -83.14 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneFactoryCenter", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 114.7 - } - }, - "CorePointId": 21, - "DelayToCanSpawnSec": 6, - "Id": "2d9d53d3-4263-4911-b76f-7a4fb678898a", - "Infiltration": "", - "Position": { - "x": 365.1455, - "y": 1.32006228, - "z": -108.90036 - }, - "Rotation": 277.4024, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2e02fd39-ee4a-4c26-bb44-12324b433a02", - "Infiltration": "Customs", - "Position": { - "x": -133.631989, - "y": 0.718000054, - "z": 8.393997 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneScavBase", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "2f311383-6639-46da-a804-ae43bf804a6a", - "Infiltration": "", - "Position": { - "x": 41.7462921, - "y": 1.23424029, - "z": -143.6092 - }, - "Rotation": 135.08139, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneWade", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 6, - "Id": "31d79ff8-4b21-448a-866d-289775a7f5dd", - "Infiltration": "", - "Position": { - "x": -17.1999969, - "y": 0.0100492239, - "z": -140.959991 - }, - "Rotation": 333.506073, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSnipeTower", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } - }, - "CorePointId": 10, - "DelayToCanSpawnSec": 1700, - "Id": "33cd6564-129e-444f-91b7-1fc3bfee4f87", - "Infiltration": "", - "Position": { - "x": 255.2391, - "y": 53.4429932, - "z": -27.01771 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneGasStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77.17 - } - }, - "CorePointId": 25, - "DelayToCanSpawnSec": 6, - "Id": "34e059d8-8d8c-4b35-a747-4d08d3e28561", - "Infiltration": "", - "Position": { - "x": 411.6, - "y": 0.96478796, - "z": 0.100000381 - }, - "Rotation": 209.40004, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3735903c-ebbd-407d-ba27-46129dc360c3", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 539.688, - "y": 2.948, - "z": 48.0039978 - }, - "Rotation": 342.4109, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "38a13157-f0cd-48d5-bada-dff42472b410", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 569.75, - "y": 1.49, - "z": -52.54001 - }, - "Rotation": 180.26, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "38aaf44a-c4a7-49a0-a669-96520c28332d", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 582.31, - "y": 9.79, - "z": 147.5 - }, - "Rotation": 216.79, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneScavBase", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "3a7db815-a833-40e2-a297-5f2d08c6489c", - "Infiltration": "", - "Position": { - "x": 236.2663, - "y": 1.21224034, - "z": -95.11922 - }, - "Rotation": 111.995163, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3b128730-ba41-4ac8-9c08-517655a787dd", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 570.45, - "y": 1.48, - "z": -111.76 - }, - "Rotation": 192.38, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3b54601a-2e4b-4991-988e-962f1ee45668", - "Infiltration": "Customs", - "Position": { - "x": 96.1380157, - "y": 1.18800008, - "z": 13.3840027 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3bb03dcc-70b9-455d-ab44-058121da9469", - "Infiltration": "Customs", - "Position": { - "x": -221.702, - "y": -0.741999865, - "z": -3.35600281 - }, - "Rotation": 149.69, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCustoms", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 6, - "Id": "3e792359-d3d3-4d42-8b3f-83d81721e9fe", - "Infiltration": "", - "Position": { - "x": -183.647, - "y": 1.60172462, - "z": -190.065 - }, - "Rotation": 75.66953, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3ef3c5d0-afaf-44cb-82c5-530c0e6300ab", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 385.709961, - "y": 1.12, - "z": -116.17 - }, - "Rotation": 188.39, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCustoms", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 131.24 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 6, - "Id": "3feedcc0-c2be-4462-a242-222e23072c69", - "Infiltration": "", - "Position": { - "x": -162.957016, - "y": 3.21176076, - "z": -168.46 - }, - "Rotation": 273.068, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "413a6ac7-3f9d-4a38-9652-f3c68505dcc0", - "Infiltration": "Customs", - "Position": { - "x": -154.35199, - "y": 1.038, - "z": -128.096008 - }, - "Rotation": 7.197772, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "41440b15-7ff8-42fa-893a-5b4b59eaf13b", - "Infiltration": "Customs", - "Position": { - "x": -313.92, - "y": 0.940000057, - "z": -88.66 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "426e619c-f5a9-4529-b10b-4796f82d9f6d", - "Infiltration": "Customs", - "Position": { - "x": -190.972, - "y": 1.518, - "z": -236.686 - }, - "Rotation": 3.01640677, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "42904c13-d45a-4375-9bd1-67a9da6cdb2e", - "Infiltration": "Customs", - "Position": { - "x": -218.681992, - "y": 1.072, - "z": -148.428009 - }, - "Rotation": 13.3557768, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "42933fa9-9478-4db3-a97f-7d120afa4ca9", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 503.2, - "y": 1.18, - "z": -59.83 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4293a264-a66e-4d7d-8ce7-65cade015117", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 585.74, - "y": 9.53, - "z": 145.81 - }, - "Rotation": 216.79, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneFactorySide", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 6, - "Id": "4309052b-e7f7-41d1-89b0-6060c57d06b5", - "Infiltration": "", - "Position": { - "x": 654.803955, - "y": 1.11981535, - "z": -164.4396 - }, - "Rotation": 265.8543, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneFactoryCenter", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 21, - "DelayToCanSpawnSec": 3, - "Id": "43e9c231-d666-402f-a8ed-9d946cd3d8ce", - "Infiltration": "", - "Position": { - "x": 410.909271, - "y": 1.38835239, - "z": -112.0087 - }, - "Rotation": 308.3462, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "468b8eec-29bd-430f-920b-e32d89e2beda", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 548.068, - "y": 2.838, - "z": 47.554 - }, - "Rotation": 342.4109, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 95 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "471799c4-3aed-4c0e-9489-fabc2e76dd06", - "Infiltration": "Customs", - "Position": { - "x": -14.371994, - "y": -7.74200058, - "z": 126.363983 - }, - "Rotation": 137.37, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneFactoryCenter", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 21, - "DelayToCanSpawnSec": 6, - "Id": "48d0dd2c-206e-40a6-ba44-08410446439a", - "Infiltration": "", - "Position": { - "x": 323.287872, - "y": 1.64894223, - "z": -98.48353 - }, - "Rotation": 179.388351, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneCustoms", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 6, - "Id": "48d1cef3-efce-4d8f-a67b-31ddbbc28f47", - "Infiltration": "", - "Position": { - "x": -286.342, - "y": 0.228545427, - "z": -232.641 - }, - "Rotation": 320.675232, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4ba3ef50-0c41-4f25-9419-58152197b15b", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 315.797, - "y": 1.128, - "z": -82.132 - }, - "Rotation": 187.420029, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4c18262a-245d-47ee-99c9-f4d36a095d56", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 645.31, - "y": 1.5, - "z": 46.22 - }, - "Rotation": 293.47, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4d2e6d0c-078c-4918-8227-8df098a47a39", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 478.86, - "y": 2.7, - "z": -79.23001 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneFactorySide", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 6, - "Id": "4d5a42f3-50a8-457a-ad94-7e4c451681e8", - "Infiltration": "", - "Position": { - "x": 587.9925, - "y": 1.09995508, - "z": -64.35727 - }, - "Rotation": 4.26114464, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4d676699-1243-452b-b4d7-3353616854fb", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 614.44, - "y": -0.3499999, - "z": -102.62 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneTankSquare", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 6, - "Id": "4e108f92-cd14-4d0a-915c-f2ca6d5611f9", - "Infiltration": "", - "Position": { - "x": 141.97, - "y": 1.14876676, - "z": -14.9800034 - }, - "Rotation": 25.7275429, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4e876370-2396-4517-81c1-c535811d18e0", - "Infiltration": "Customs", - "Position": { - "x": -133.722, - "y": 0.718000054, - "z": 12.6239929 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4f865c11-d533-4fce-9833-fe41a6cb52af", - "Infiltration": "Customs", - "Position": { - "x": 101.408005, - "y": 1.21600008, - "z": 17.673996 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4fb0d413-cf19-4580-8217-b2d6ca431e91", - "Infiltration": "Customs", - "Position": { - "x": 101.599991, - "y": 1.18800008, - "z": 19.0269928 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4fb8d6d8-c158-42f5-b4d2-5e28feb8c675", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 503.829956, - "y": 1.19, - "z": -55.25 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "51169827-146f-4993-af37-0de3ccec8d45", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 291.65802, - "y": 1.45800006, - "z": -197.106 - }, - "Rotation": 17.73762, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBrige", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 6, - "Id": "51940f3f-de97-4aea-a31f-29ea6ee3861c", - "Infiltration": "", - "Position": { - "x": 27.54927, - "y": -1.12046, - "z": 127.26 - }, - "Rotation": 183.768738, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "519599b1-5b4d-4c91-8530-13042c3a3a37", - "Infiltration": "Customs", - "Position": { - "x": -197.232, - "y": 1.508, - "z": -233.506 - }, - "Rotation": 358.432373, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "52e74209-8ff4-4121-85ef-a54b5b6689be", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 391.589966, - "y": 1.32, - "z": -117.73 - }, - "Rotation": 177.74, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "53635fda-547d-4b4c-af82-e9adfd93daf2", - "Infiltration": "Customs", - "Position": { - "x": -217.642, - "y": 1.06800008, - "z": -144.936 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "537c1307-b83a-4c57-8c51-21380f5605a1", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 641.47, - "y": 1.27, - "z": 43.53 - }, - "Rotation": 324.43, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 95 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "54991d80-f85d-49fd-8ae0-f686d6fdf828", - "Infiltration": "Customs", - "Position": { - "x": -1.93199158, - "y": -5.042, - "z": 126.95401 - }, - "Rotation": 147.73, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5621e44b-9f44-494b-9695-143a88146d43", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 294.288025, - "y": 1.398, - "z": -195.736008 - }, - "Rotation": 17.73762, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "582b9ea6-4404-4af1-8443-da3db48fcaad", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 480.55, - "y": 2.7, - "z": -81.46 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "58a91424-a24c-44e1-9f8a-c5cc6c66489f", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 314.128, - "y": 1.20800006, - "z": -90.7260056 - }, - "Rotation": 196.37, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5a551a12-ca0e-41af-9845-270ffce6808a", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 620.14, - "y": -0.3499999, - "z": -96.98 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5caf5e1b-0113-41fc-9867-007e37ffe906", - "Infiltration": "Customs", - "Position": { - "x": 95.968, - "y": 1.18800008, - "z": 11.6539917 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSnipeFactory", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 1700, - "Id": "5d1bbc44-9b97-4a35-9bc3-acfbbe8eae52", - "Infiltration": "", - "Position": { - "x": 476.11853, - "y": 14.7500124, - "z": -71.85715 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBrige", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 6, - "Id": "5de7ed5d-918f-4433-bedf-d7444fc4e82d", - "Infiltration": "", - "Position": { - "x": 19.3312683, - "y": -0.88446, - "z": 36.432 - }, - "Rotation": 104.141586, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBrige", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 6, - "Id": "5fe0d0c8-d429-4f54-96f6-33fff540c2ca", - "Infiltration": "", - "Position": { - "x": 29.8222656, - "y": 1.11054, - "z": -29.4749985 - }, - "Rotation": 168.0339, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneCustoms", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 131.24 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 6, - "Id": "60c4be2a-82b8-4cf1-b8c4-fdd4f95ee3cb", - "Infiltration": "", - "Position": { - "x": -273.483, - "y": 0.9775678, - "z": -72.127 - }, - "Rotation": 151.257034, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "61aba24c-79d9-445f-8a1c-f887b36a8417", - "Infiltration": "Customs", - "Position": { - "x": 569.368, - "y": -0.491999865, - "z": -6.98600769 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "61e3a2a4-55af-4b66-bf4f-302f9cdac5b2", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 348.438, - "y": 8.858, - "z": 152.824 - }, - "Rotation": 171.7, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "62a46181-d31d-4abb-855d-3e24886e171b", - "Infiltration": "Customs", - "Position": { - "x": -323.862, - "y": 1.16, - "z": -225.596008 - }, - "Rotation": 85.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "62f5b14d-cb51-4529-b572-f5a8f5815bb5", - "Infiltration": "Customs", - "Position": { - "x": 104.246017, - "y": 1.21600008, - "z": 18.7420044 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCustoms", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 6, - "Id": "63fef3bf-fd73-4d4f-99d2-50d26f8e8bc6", - "Infiltration": "", - "Position": { - "x": -179.40802, - "y": 1.42873216, - "z": -235.034 - }, - "Rotation": 350.38678, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBrige", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 117.5 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 6, - "Id": "659377dd-2b6a-4ffa-8a5d-43b104196ad9", - "Infiltration": "", - "Position": { - "x": -9.670734, - "y": -6.85845947, - "z": 127.67 - }, - "Rotation": 176.0234, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "66ab21e5-21b1-42aa-bb0a-e7525f793536", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 569.89, - "y": 1.49, - "z": -50.4499969 - }, - "Rotation": 182.67, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneScavBase", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "66ff3527-a97e-4ffe-97c9-35c9ab38ef46", - "Infiltration": "", - "Position": { - "x": 225.976288, - "y": 1.10224032, - "z": -80.73921 - }, - "Rotation": 189.840561, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "677581fc-5c9f-4e13-913d-e32798dfd61c", - "Infiltration": "Customs", - "Position": { - "x": 569.378, - "y": -0.322000027, - "z": -11.9060059 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneFactorySide", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 6, - "Id": "67995511-8d08-4bdc-ba17-d38e81aad1d0", - "Infiltration": "", - "Position": { - "x": 603.5282, - "y": 1.14991, - "z": -139.339142 - }, - "Rotation": 265.8543, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6889bd40-9338-4297-8c15-0f1af8f4f74f", - "Infiltration": "Customs", - "Position": { - "x": 15.9580078, - "y": 1.30800009, - "z": -126.866005 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCustoms", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 6, - "Id": "6a77d0e8-8b88-462a-8138-df49da8d21a6", - "Infiltration": "", - "Position": { - "x": -311.924, - "y": 0.966500759, - "z": -124.966 - }, - "Rotation": 93.0682755, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6d8626ec-449b-4d63-a066-38e802756ec9", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 480.24, - "y": 2.7, - "z": -84.47 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6df008d3-3928-4213-b05b-8285bd15e7c2", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 377.708, - "y": 1.418, - "z": -93.356 - }, - "Rotation": 94.4417953, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBlockPost", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 6, - "Id": "6e2300c9-e9ff-48ff-be43-44c13e8b138d", - "Infiltration": "", - "Position": { - "x": 487.64, - "y": 1.68252087, - "z": 41.11 - }, - "Rotation": 186.6658, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6e3ad315-21c1-4816-84f5-e6d5ad0568af", - "Infiltration": "Customs", - "Position": { - "x": 569.588, - "y": -0.322000027, - "z": -14.1759949 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6fbb2585-70d7-4f2f-9242-11f88d8dc2f3", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 647.48, - "y": 1.88, - "z": 48.3699951 - }, - "Rotation": 297.33, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBlockPost", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 6, - "Id": "70ddd35e-f67e-473c-97b5-d16f0c8da170", - "Infiltration": "", - "Position": { - "x": 580, - "y": -0.594014168, - "z": 33.12 - }, - "Rotation": 343.038422, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "751ed8cb-d9c5-4c3a-ad31-7ae979f66316", - "Infiltration": "Customs", - "Position": { - "x": -133.528992, - "y": 0.85800004, - "z": 6.78999329 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "75b634c6-60a6-4846-8d15-c8e79cab0c78", - "Infiltration": "Customs", - "Position": { - "x": -134.19, - "y": -1.37000012, - "z": 38.11 - }, - "Rotation": 180.13, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneFactorySide", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 6, - "Id": "76b57ba8-351e-4d24-a7b5-9a91d226080a", - "Infiltration": "", - "Position": { - "x": 569.0529, - "y": 1.46199012, - "z": -54.5297432 - }, - "Rotation": 100.786774, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7994d5ba-6c84-44fc-a66e-a16a169fbaed", - "Infiltration": "Customs", - "Position": { - "x": -206.282, - "y": -1.28199983, - "z": 2.2440033 - }, - "Rotation": 150.1406, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCustoms", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 6, - "Id": "79e06ada-a5df-4109-8f48-3b44bec2e4c5", - "Infiltration": "", - "Position": { - "x": -335.62, - "y": 0.307707071, - "z": -159.7 - }, - "Rotation": 276.286957, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7afa635c-296e-42be-8a76-26be3f736827", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 375.088, - "y": 1.418, - "z": -88.7960052 - }, - "Rotation": 15.8534, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7bf576fa-4a6f-48dc-90a8-8ddd3029816f", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 519.84, - "y": 7.7699995, - "z": 204.15 - }, - "Rotation": 225.49, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7c349cb6-2e80-4166-919d-63ae486f618c", - "Infiltration": "Customs", - "Position": { - "x": 98.088, - "y": 1.138, - "z": -107.216 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneFactorySide", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 6, - "Id": "7ca0eb6c-dae2-49e0-9eba-b4668dfdac90", - "Infiltration": "", - "Position": { - "x": 663.252441, - "y": 1.21781647, - "z": -99.46105 - }, - "Rotation": 265.8543, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBrige", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 85.4 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 6, - "Id": "7cb21772-a203-4587-a28a-4716a6c59e27", - "Infiltration": "", - "Position": { - "x": 19.389267, - "y": 1.14054, - "z": -66.09 - }, - "Rotation": 287.111938, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7d47b29d-9758-4925-a614-3e70ed1374f4", - "Infiltration": "Customs", - "Position": { - "x": -148.302, - "y": 1.608, - "z": -143.646 - }, - "Rotation": 123.844284, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneDormitory", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 6, - "Id": "7d4d2abe-e2b8-4973-a478-1783dd79f7c4", - "Infiltration": "", - "Position": { - "x": 190.702286, - "y": -0.1337597, - "z": 175.85379 - }, - "Rotation": 355.9929, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneOldAZS", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 6, - "Id": "807a3df0-eebb-4f16-ac08-64e3644a40dc", - "Infiltration": "", - "Position": { - "x": 294.9489, - "y": 2.10008216, - "z": -160.2394 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneCustoms", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 131.24 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 6, - "Id": "8189ba85-9253-4f28-8bf1-781506302bef", - "Infiltration": "", - "Position": { - "x": -161.647, - "y": 3.21376324, - "z": -126.492004 - }, - "Rotation": 273.068, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "81fa9972-7d9f-4ad9-9f86-6db8656e211c", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 544.698, - "y": 2.898, - "z": 48.0639954 - }, - "Rotation": 342.4109, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneTankSquare", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 6, - "Id": "8408652f-55cb-400c-95b3-244aa72b112f", - "Infiltration": "", - "Position": { - "x": 172.51001, - "y": 1.22871351, - "z": -6.28000259 - }, - "Rotation": 0.00353926537, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8464e389-d91c-45d4-9e99-5b61d5bcdc69", - "Infiltration": "Customs", - "Position": { - "x": -133.682, - "y": 0.718000054, - "z": 9.783997 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneFactorySide", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 6, - "Id": "84d13ed5-5ee0-4154-bded-1fc68d0cc7da", - "Infiltration": "", - "Position": { - "x": 536.939453, - "y": 1.38835239, - "z": -114.267776 - }, - "Rotation": 100.786774, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "85efb186-180f-4fdc-9d1b-abf4b1b07696", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 394.927979, - "y": 1.418, - "z": -84.026 - }, - "Rotation": 163.583008, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGasStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 6, - "Id": "864f381c-9fde-4553-87ff-07b68e8c1e60", - "Infiltration": "", - "Position": { - "x": 467.41, - "y": 1.56773758, - "z": 60.0600052 - }, - "Rotation": 232.230225, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneDormitory", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 6, - "Id": "870ab421-0541-44e6-9965-e1b8816bf103", - "Infiltration": "", - "Position": { - "x": 178.5893, - "y": -0.1337597, - "z": 181.282791 - }, - "Rotation": 132.05188, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8878252a-9516-4f33-a54d-56f9705098b6", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 617.51, - "y": -0.3499999, - "z": -103.12 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCrossRoad", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 6, - "Id": "898d0b69-ee35-4d07-9072-991ab93e0678", - "Infiltration": "", - "Position": { - "x": 226.41, - "y": -0.861175954, - "z": 121.28 - }, - "Rotation": 186.911575, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8998cdf3-aa44-40e9-b34e-df32f1bf4540", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 642.1, - "y": 1.43, - "z": 45.54001 - }, - "Rotation": 319.46, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "89fe6e6f-7ebc-458e-8297-621824d1d6ac", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 568.08, - "y": 1.48, - "z": -111.66 - }, - "Rotation": 193.88, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneFactoryCenter", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 3, - "Id": "8a370e43-eba4-44fa-bad8-6b1ea61286e2", - "Infiltration": "", - "Position": { - "x": 391.856567, - "y": 1.39002156, - "z": -86.1867752 - }, - "Rotation": 189.658691, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8b301a0d-e694-4f24-b938-32329a5084f5", - "Infiltration": "Customs", - "Position": { - "x": 105.498, - "y": 1.197, - "z": 17.3639984 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8bae21f5-6d20-4368-a820-0a05730f81ad", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 569.03, - "y": 1.48, - "z": -117.38 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8cb5b38c-2355-4093-8b47-f99c6673a566", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 355.818, - "y": 10.018, - "z": 152.064 - }, - "Rotation": 177.79, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8d6e133a-e996-431b-a120-efa9a96f69e7", - "Infiltration": "Customs", - "Position": { - "x": -151.962, - "y": 1.288, - "z": -137.946 - }, - "Rotation": 147.46, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8e31a0d6-0d23-4e79-bf7d-089bf232f4ac", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 378.977966, - "y": 1.22, - "z": -116.846 - }, - "Rotation": 196.37, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8e59cd3f-750b-4d00-841a-9ebfc41a1ac1", - "Infiltration": "Customs", - "Position": { - "x": 8.678009, - "y": 1.258, - "z": -127.796005 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCustoms", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 6, - "Id": "91855264-51c0-4474-81ca-9df166e7ad43", - "Infiltration": "", - "Position": { - "x": -236.430008, - "y": 1.4996326, - "z": -235.900009 - }, - "Rotation": 350.38678, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "92eddb79-cfd5-491d-85ed-23769ee28f95", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 368.438, - "y": 1.418, - "z": -90.076004 - }, - "Rotation": 104.504547, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBrige", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 6, - "Id": "92ee45f4-921c-4782-81a1-3eb1a2e053f5", - "Infiltration": "", - "Position": { - "x": 46.75, - "y": -3.94977927, - "z": 126.18 - }, - "Rotation": 182.889908, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "93427305-4f03-44d6-8690-7c24dbbb4128", - "Infiltration": "Customs", - "Position": { - "x": -133.612, - "y": 0.718000054, - "z": 11.1640015 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGasStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77.17 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 6, - "Id": "9371d198-a811-4d79-8613-61fbf8518882", - "Infiltration": "", - "Position": { - "x": 447.43, - "y": 7.59999943, - "z": 111.09 - }, - "Rotation": 196.259735, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "95259830-27ef-4056-8bee-cfbba562dedc", - "Infiltration": "Customs", - "Position": { - "x": -309.94, - "y": 1, - "z": -96.98 - }, - "Rotation": 148.43, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 95 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "967f3d09-de07-4f11-b68f-2f42ba684f51", - "Infiltration": "Customs", - "Position": { - "x": -14.7019958, - "y": -7.74200058, - "z": 121.603973 - }, - "Rotation": 150.83, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "97185451-3b24-4e74-baa1-6a706f09c520", - "Infiltration": "Customs", - "Position": { - "x": 99.222, - "y": 1.18800008, - "z": 18.9140015 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "97513a7b-d467-454a-8232-2e77f3e386ef", - "Infiltration": "Customs", - "Position": { - "x": 569.548, - "y": -0.292000055, - "z": -19.1260071 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "989f1148-f609-4191-8a09-de4d40b117e4", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 571.17, - "y": 1.49, - "z": -51.70999 - }, - "Rotation": 176.15, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "999c413b-05eb-4c30-a4ef-4e0c95c838ef", - "Infiltration": "Customs", - "Position": { - "x": 569.458, - "y": -0.491999865, - "z": -5.43600464 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9a904fab-076c-4fc5-89e3-d6983cba8d89", - "Infiltration": "Customs", - "Position": { - "x": 90.12901, - "y": 1.357, - "z": -102.023 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9b6a8b4a-f315-4dc2-b294-49094c0c0490", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 388.419983, - "y": 1.12, - "z": -114.33 - }, - "Rotation": 180.09, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneFactorySide", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 6, - "Id": "9ca25ce6-8110-4425-a7a9-43e453b29ecb", - "Infiltration": "", - "Position": { - "x": 658.0241, - "y": 1.12983537, - "z": -59.1834259 - }, - "Rotation": 58.09279, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9d396201-600c-4920-a915-3e5d0aff2280", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 545.018, - "y": 3.238, - "z": 50.95401 - }, - "Rotation": 342.4109, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9d4a13b3-bad7-41ee-9d4e-d83149736816", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 388.888, - "y": 1.418, - "z": -97.196 - }, - "Rotation": 272.3188, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9dd4bcc0-062e-45a4-9346-2b488ed4ad72", - "Infiltration": "Customs", - "Position": { - "x": 104.638016, - "y": 1.197, - "z": 14.3540039 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneFactorySide", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 141.4 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 6, - "Id": "9e487143-1230-4f12-87cb-e50f9a0f50d9", - "Infiltration": "", - "Position": { - "x": 657.8154, - "y": 1.12998486, - "z": -134.82048 - }, - "Rotation": 280.85022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9f6cbe96-7d68-45bf-8f4b-4ccac2550961", - "Infiltration": "Customs", - "Position": { - "x": 569.568, - "y": -0.292000055, - "z": -16.1860046 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a092494e-01bf-496f-b789-8e9790639784", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 502.349976, - "y": 1.18, - "z": -64.42999 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a1e820f6-34ae-474c-818f-aa67c35266aa", - "Infiltration": "Customs", - "Position": { - "x": -194.301987, - "y": 1.558, - "z": -232.946 - }, - "Rotation": 346.9238, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a44d5d64-8570-48b7-b696-52db3db8ac13", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 648.75, - "y": 1.81, - "z": 50.1600037 - }, - "Rotation": 319.88, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a64e8bd1-42f5-4c0d-b132-ddc01cd46d33", - "Infiltration": "Customs", - "Position": { - "x": -189.071991, - "y": 1.538, - "z": -235.216 - }, - "Rotation": 350.7271, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGasStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 93.4 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 6, - "Id": "a8063503-8f74-4305-9ae9-548fa5ff7fe6", - "Infiltration": "", - "Position": { - "x": 423.79, - "y": 1.0539999, - "z": 42.34 - }, - "Rotation": 343.038422, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a8dafd79-4811-4598-9061-7062654a1200", - "Infiltration": "Customs", - "Position": { - "x": 96.618, - "y": 1.268, - "z": -106.206 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a97b15dc-9f2b-4de6-ae02-ec4417bef821", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 394.919983, - "y": 2.18, - "z": -120.68 - }, - "Rotation": 179.19, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneOldAZS", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 6, - "Id": "ae5d8ae0-3fb4-4853-9f71-c868cb2c2060", - "Infiltration": "", - "Position": { - "x": 310.722839, - "y": 1.33199024, - "z": -157.0032 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneTankSquare", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 6, - "Id": "aeac7f0b-3c23-46e9-a7af-fd9aae4fc8b4", - "Infiltration": "", - "Position": { - "x": 87.05, - "y": 1.04846621, - "z": -59.2000046 - }, - "Rotation": 289.6524, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b0126d65-ba76-45ad-b25e-32f4f3509904", - "Infiltration": "Customs", - "Position": { - "x": 102.168015, - "y": 1.228, - "z": 19.8840027 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b049c6f8-afb9-42f9-9591-2f265fef2097", - "Infiltration": "Customs", - "Position": { - "x": 99.65102, - "y": 1.18800008, - "z": 14.6369934 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b1a57f2f-89ab-49ae-81ab-3d4e5f6e9f1c", - "Infiltration": "Customs", - "Position": { - "x": -217.362, - "y": 1.19, - "z": -136.956009 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBlockPostSniper", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 115 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 1700, - "Id": "b33fb6f9-36aa-48f0-9bad-60f3ce2cd16a", - "Infiltration": "", - "Position": { - "x": 581.8, - "y": 3.06499958, - "z": 0.9200001 - }, - "Rotation": 343.038422, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneGasStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 6, - "Id": "b4e899f8-8da5-4f9c-878b-37320aff71c9", - "Infiltration": "", - "Position": { - "x": 454.8, - "y": 2.0766468, - "z": 61.09 - }, - "Rotation": 223.641632, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b523d044-6957-4cd1-b039-b653cd4acbe4", - "Infiltration": "Customs", - "Position": { - "x": -320.612, - "y": 0.940000057, - "z": -223.796 - }, - "Rotation": 59.1799965, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b54ce786-74b8-41b1-889f-0fe62c36d8e0", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 481.06, - "y": 2.7, - "z": -79.22 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b5552110-2313-4285-9a06-769077e3c16b", - "Infiltration": "Customs", - "Position": { - "x": -132.87, - "y": -1.81000018, - "z": 43.9799957 - }, - "Rotation": 180.13, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 95 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b623ab89-4538-4afa-b6a6-49e9aad4324a", - "Infiltration": "Customs", - "Position": { - "x": -21.2619934, - "y": -8.542, - "z": 115.303986 - }, - "Rotation": 101.48, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b736a3e7-270e-4797-92d0-6c3a7927f008", - "Infiltration": "Customs", - "Position": { - "x": 18.778, - "y": 1.358, - "z": -127.086 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b96df3dc-23f2-4e1d-8a9a-9fbe05a94f47", - "Infiltration": "Customs", - "Position": { - "x": 102.318008, - "y": 1.21600008, - "z": 16.2639923 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneWade", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 6, - "Id": "b9d55350-ef6c-40a4-86a0-2a29f02c7b3a", - "Infiltration": "", - "Position": { - "x": 21.010006, - "y": 1.28880048, - "z": -109.49 - }, - "Rotation": 249.573578, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bb1128eb-b548-48b8-a785-c18ef08d7c37", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 571.59, - "y": 11.37, - "z": 145.269989 - }, - "Rotation": 216.79, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneFactorySide", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 114.7 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 6, - "Id": "bcdd9759-698e-4924-9f19-0c41dfd5b25c", - "Infiltration": "", - "Position": { - "x": 629.6786, - "y": 1.42986572, - "z": -135.632492 - }, - "Rotation": 184.215363, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneDormitory", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 6, - "Id": "bdd442fd-c45c-486c-8de5-61c6a6f7dd60", - "Infiltration": "", - "Position": { - "x": 181.1043, - "y": -0.1127597, - "z": 178.053787 - }, - "Rotation": 185.167953, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBrige", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 131.24 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 6, - "Id": "c0192b74-ef4d-41de-8bd9-81712ad31ba0", - "Infiltration": "", - "Position": { - "x": 34.1792679, - "y": 1.08854008, - "z": -49.5179977 - }, - "Rotation": 347.1565, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c11f719c-3491-4a60-901e-cf20832b432e", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 617.72, - "y": -0.3499999, - "z": -96.86 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c21695bd-f460-4e72-8138-54d7aa92b965", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 522.43, - "y": 10.14, - "z": 179.68 - }, - "Rotation": 225.49, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c26390c5-80e1-428e-a11f-5d34d33fcc69", - "Infiltration": "Customs", - "Position": { - "x": -323.872, - "y": 1.13, - "z": -222.056 - }, - "Rotation": 19.29, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c351748e-915b-4be3-ae56-2bb13470f278", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 296.557983, - "y": 1.868, - "z": -200.606 - }, - "Rotation": 17.73762, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c36b37b1-e654-45b8-a921-4864d1a325a4", - "Infiltration": "Customs", - "Position": { - "x": 98.10802, - "y": 1.18800008, - "z": 11.9839935 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneWade", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 164.4 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 6, - "Id": "c6e01f12-08c7-4b2a-ba95-7b27e2018b7c", - "Infiltration": "", - "Position": { - "x": 5.78900528, - "y": 1.16781759, - "z": -103.391 - }, - "Rotation": 229.912613, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c70da15f-6bc8-4dda-b666-e4163754bcd5", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 576.38, - "y": 1.48, - "z": -115.35 - }, - "Rotation": 270.35, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneDormitory", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 6, - "Id": "c789117c-9d94-456b-be1d-25dd5043a359", - "Infiltration": "", - "Position": { - "x": 172.605286, - "y": 2.84324026, - "z": 157.337784 - }, - "Rotation": 94.87478, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneFactoryCenter", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 6, - "Id": "c7ba0d24-249b-459f-8364-51ae66454bff", - "Infiltration": "", - "Position": { - "x": 356.541382, - "y": 1.15009761, - "z": -24.1884918 - }, - "Rotation": 105.675018, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c838176a-28e6-4871-89a2-827ec044b3f4", - "Infiltration": "Customs", - "Position": { - "x": -321.022, - "y": 0.950000048, - "z": -220.866013 - }, - "Rotation": 34.52, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c8b04f3f-1f80-49a7-8530-3180b3ff71e9", - "Infiltration": "Customs", - "Position": { - "x": 103.26799, - "y": 1.197, - "z": 15.322998 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c98a753b-d534-4fa4-9430-478b7d8bf27d", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 502.7, - "y": 1.18, - "z": -62.1199951 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBlockPost", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 6, - "Id": "cb0dd763-21a3-4c29-95ea-f3ef51e412fd", - "Infiltration": "", - "Position": { - "x": 571.71, - "y": -0.9350004, - "z": 6.60000038 - }, - "Rotation": 183.570679, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneTankSquare", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 115 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 6, - "Id": "cc2436ce-797c-4bd5-995d-255b7a0b7c37", - "Infiltration": "", - "Position": { - "x": 73.591, - "y": 1.11978245, - "z": -63.465004 - }, - "Rotation": 83.042244, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cd52aa33-141e-4f89-9120-2dd899fd23f2", - "Infiltration": "Customs", - "Position": { - "x": -209.142, - "y": -1.43199992, - "z": 0.694000244 - }, - "Rotation": 144.14, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cdabcf05-fa38-4640-89a6-294133b99a5c", - "Infiltration": "Customs", - "Position": { - "x": -131.743988, - "y": 0.718000054, - "z": 7.36000061 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneWade", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 6, - "Id": "ce31b755-dc15-4c1f-80b8-f35a2d4804b4", - "Infiltration": "", - "Position": { - "x": 20.0500031, - "y": 1.138802, - "z": -115.49 - }, - "Rotation": 174.01767, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ce469ace-55c1-4381-b3a1-6458f1bea611", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 503.409973, - "y": 1.18, - "z": -57.5599976 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cec675dc-0443-44f1-90bb-61b0fc25b2fc", - "Infiltration": "Customs", - "Position": { - "x": -131.972, - "y": 0.718000054, - "z": 12.5540009 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBrige", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 6, - "Id": "cf783f2b-042c-42fe-8417-4f7d75139aeb", - "Infiltration": "", - "Position": { - "x": 19.3192673, - "y": 1.28754, - "z": -109.24 - }, - "Rotation": 168.0339, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cfb2039d-a575-4246-9903-bd20336478de", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 315.768, - "y": 1.128, - "z": -79.116 - }, - "Rotation": 11.5521812, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneFactoryCenter", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 3, - "Id": "d035661b-dbba-4f54-a66e-d4ac53e2f2c1", - "Infiltration": "", - "Position": { - "x": 471.196716, - "y": 2.6568923, - "z": -54.2984543 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 95 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d12962b9-c23f-47c4-96fa-afe2b1ef30be", - "Infiltration": "Customs", - "Position": { - "x": -19.7720032, - "y": -8.492001, - "z": 113.283966 - }, - "Rotation": 131.598984, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneDormitory", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 6, - "Id": "d18b6493-9fc7-462c-952d-df410e4924b2", - "Infiltration": "", - "Position": { - "x": 122.026291, - "y": 0.2622403, - "z": 129.290787 - }, - "Rotation": 46.6169, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneCustoms", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 131.24 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 6, - "Id": "d23681ef-3f6c-466d-924b-d2a76db60f4f", - "Infiltration": "", - "Position": { - "x": -247.488, - "y": -0.234708309, - "z": -14.3019981 - }, - "Rotation": 156.825577, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d591be31-c6f9-444d-9b7e-15faf5825066", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 288.998, - "y": 1.388, - "z": -196.146 - }, - "Rotation": 17.73762, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCustoms", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 131.24 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 6, - "Id": "d655a83e-c30f-493c-b3cf-6a9872426bd6", - "Infiltration": "", - "Position": { - "x": -300.564, - "y": 0.032841444, - "z": -44.071 - }, - "Rotation": 102.860092, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneFactorySide", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 6, - "Id": "d75cbe99-8316-4e7a-a913-f3048198062c", - "Infiltration": "", - "Position": { - "x": 537.491455, - "y": 1.08002615, - "z": -130.868164 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d7bae537-f5a0-416d-9849-d939cc3575f4", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 615.61, - "y": -0.3499999, - "z": -96.83 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneFactoryCenter", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 5, - "Id": "d86d794e-6f15-4a9e-ac69-8bf0172d3893", - "Infiltration": "", - "Position": { - "x": 454.29303, - "y": 2.67591476, - "z": -81.5390244 - }, - "Rotation": 89.51053, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "daaa4a02-1f51-460b-bdf8-29b3bd2c838b", - "Infiltration": "Customs", - "Position": { - "x": 96.56099, - "y": 1.238, - "z": 17.1719971 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "dbab2e51-b5f5-4bd8-9324-9f3fd4cc977f", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 365.458, - "y": 11.478, - "z": 149.264 - }, - "Rotation": 220.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneScavBase", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "dbcf3640-5c76-453e-8022-6c8aaa21c77b", - "Infiltration": "", - "Position": { - "x": 227.906281, - "y": 1.29224026, - "z": -86.3992157 - }, - "Rotation": 189.840561, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneOldAZS", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 6, - "Id": "dce9812c-a766-40c8-8718-161a483337c4", - "Infiltration": "", - "Position": { - "x": 313.802277, - "y": 1.16418183, - "z": -191.568161 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneCrossRoad", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 6, - "Id": "dd2cab78-453d-4341-8180-bd2d93e37b06", - "Infiltration": "", - "Position": { - "x": 188.06, - "y": 1.289891, - "z": -1.38000488 - }, - "Rotation": 17.3450165, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "dd81d0d1-c0de-48c2-afed-49522f652d00", - "Infiltration": "Customs", - "Position": { - "x": -306.09, - "y": 1.01, - "z": -89.42 - }, - "Rotation": 44.5400047, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ddca1267-6caa-4986-bd13-0ed29a81e6d2", - "Infiltration": "Customs", - "Position": { - "x": 104.470016, - "y": 1.197, - "z": 16.5079956 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBlockPost", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 6, - "Id": "de83684c-cb7a-446c-81c1-dd40ef737d12", - "Infiltration": "", - "Position": { - "x": 529.57, - "y": 2.519843, - "z": 43.679 - }, - "Rotation": 188.080261, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "df949703-1471-4367-a395-3afa78fcf886", - "Infiltration": "Customs", - "Position": { - "x": -134.012, - "y": 0.718000054, - "z": 15.9940033 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGasStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 6, - "Id": "e028a78a-7785-4f59-bbe4-bb7de71fb182", - "Infiltration": "", - "Position": { - "x": 418.83, - "y": 1.10948467, - "z": 56.67 - }, - "Rotation": 210.9319, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSnipeBrige", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 12, - "DelayToCanSpawnSec": 1700, - "Id": "e388e0c4-74a8-44c1-b03a-10b1296def6a", - "Infiltration": "", - "Position": { - "x": 107.138275, - "y": 16.2157822, - "z": -47.88827 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneScavBase", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "e44d3970-258b-4d91-a96e-2fd10c4a7b38", - "Infiltration": "", - "Position": { - "x": 195.336288, - "y": 1.78624034, - "z": -126.129227 - }, - "Rotation": 252.354721, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneCustoms", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 37 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 6, - "Id": "e5999caf-d8b9-40f9-9e3f-0963106a7b86", - "Infiltration": "", - "Position": { - "x": -160.840012, - "y": 3.12176442, - "z": -101.729996 - }, - "Rotation": 273.068, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e5da63fb-4d33-4ebb-a621-dd414deecab5", - "Infiltration": "Customs", - "Position": { - "x": 569.548, - "y": -0.292000055, - "z": -17.6360016 - }, - "Rotation": 270.218658, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCustoms", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 6, - "Id": "e5fcfb36-0475-48a8-8243-afbfc051bbfc", - "Infiltration": "", - "Position": { - "x": -333.830017, - "y": -0.424789667, - "z": -84.4799957 - }, - "Rotation": 102.860092, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneCrossRoad", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 6, - "Id": "e630b29d-fd39-48f3-bbfd-3c1b1befd9ca", - "Infiltration": "", - "Position": { - "x": 219.26, - "y": -0.5611635, - "z": 196.37 - }, - "Rotation": 186.911575, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneFactorySide", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 114.7 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 6, - "Id": "e66da548-6555-4abe-a132-1629e68b6f25", - "Infiltration": "", - "Position": { - "x": 604.9504, - "y": 1.21291232, - "z": -119.5414 - }, - "Rotation": 4.26114464, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e765e08d-9ea3-46f0-ad0b-774d78da5478", - "Infiltration": "Customs", - "Position": { - "x": 91.29799, - "y": 1.218, - "z": -104.936005 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBrige", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 6, - "Id": "e7cfc09e-bb1f-4993-a887-9b203097c210", - "Infiltration": "", - "Position": { - "x": -30.9607353, - "y": -12.0579987, - "z": 126.24 - }, - "Rotation": 183.768738, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneScavBase", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "e8398178-82d4-4042-bcf8-342bca0e65b8", - "Infiltration": "", - "Position": { - "x": 252.16629, - "y": 1.21224034, - "z": -108.459213 - }, - "Rotation": 135.08139, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e8dcecc5-1fda-4553-bffb-7efbd681c11d", - "Infiltration": "Customs", - "Position": { - "x": 20.428009, - "y": 1.218, - "z": -124.846 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneScavBase", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "ec55a5b0-6317-4f27-8add-62b150a0d424", - "Infiltration": "", - "Position": { - "x": 125.176292, - "y": 1.32224035, - "z": -146.1392 - }, - "Rotation": 253.594025, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f0113a3b-12cd-4801-ad39-c5ebc9578d38", - "Infiltration": "Customs", - "Position": { - "x": -131.786987, - "y": 0.718000054, - "z": 9.414993 - }, - "Rotation": 85.46295, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f02af868-e415-4779-bbf6-a1eabeee7ae3", - "Infiltration": "Customs", - "Position": { - "x": -214.582, - "y": -1.23199987, - "z": -0.3959961 - }, - "Rotation": 128.039261, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneDormitory", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 6, - "Id": "f1a9dfc3-1bad-43cd-b6e5-f2348468789d", - "Infiltration": "", - "Position": { - "x": 186.527283, - "y": 2.84524035, - "z": 173.873779 - }, - "Rotation": 92.26318, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f2755660-ab11-4982-a774-26119ce5241e", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 359.958, - "y": 11.478, - "z": 154.314 - }, - "Rotation": 171.58, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneTankSquare", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 6, - "Id": "f31226a6-20e7-42f7-b7b7-cffda28fb4eb", - "Infiltration": "", - "Position": { - "x": 57.6700058, - "y": 1.18891406, - "z": -37.5 - }, - "Rotation": 11.0327263, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBlockPost", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 6, - "Id": "f39537d4-1aef-4af6-9e06-be1d17a637ec", - "Infiltration": "", - "Position": { - "x": 510.865, - "y": 3.43099976, - "z": 46.168 - }, - "Rotation": 186.6658, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneScavBase", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "f543ed8a-858e-44c1-92b0-043f7002c8ce", - "Infiltration": "", - "Position": { - "x": 208.2033, - "y": 1.78224027, - "z": -116.860214 - }, - "Rotation": 189.840561, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneScavBase", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "f55825ba-d987-4238-ae5a-dfcfdd40af07", - "Infiltration": "", - "Position": { - "x": 77.77829, - "y": 1.43224025, - "z": -108.103226 - }, - "Rotation": 135.08139, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneDormitory", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 6, - "Id": "f5741813-5583-42dc-acd1-5c45b948a7d2", - "Infiltration": "", - "Position": { - "x": 174.652283, - "y": -0.12775971, - "z": 152.706787 - }, - "Rotation": 81.11248, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f61dc8f4-8ab8-4a1b-9771-8c4d26568769", - "Infiltration": "Customs", - "Position": { - "x": 103.658005, - "y": 1.18800008, - "z": 11.7939911 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneScavBase", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 4, - "Id": "f67b7e7f-4060-4fac-9a98-33a308349022", - "Infiltration": "", - "Position": { - "x": 195.096283, - "y": 1.49224031, - "z": -170.1392 - }, - "Rotation": 189.840561, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneGasStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77.17 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 6, - "Id": "f722d19c-37f1-436a-a82e-14ef8b6a87cd", - "Infiltration": "", - "Position": { - "x": 422.29, - "y": 4.16, - "z": 97.16 - }, - "Rotation": 196.259735, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneTankSquare", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 6, - "Id": "f827894f-23cd-4720-ab4f-c5dc137895bb", - "Infiltration": "", - "Position": { - "x": 101.430008, - "y": 1.22583747, - "z": 22.07 - }, - "Rotation": 204.6489, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f87de9ef-e4f7-4cf4-b241-85cc17724acd", - "Infiltration": "Customs", - "Position": { - "x": -303.39, - "y": 1.01, - "z": -89.49 - }, - "Rotation": 28.48, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f8fa00b6-4941-4c21-b10b-77ff30b0c382", - "Infiltration": "Boiler Tanks", - "Position": { - "x": 314.867981, - "y": 1.158, - "z": -93.1160049 - }, - "Rotation": 196.37, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneFactoryCenter", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 114.7 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 6, - "Id": "fd03b7ac-e83c-43b7-9046-09a4c6a901e1", - "Infiltration": "", - "Position": { - "x": 463.7923, - "y": 1.207964, - "z": -117.402084 - }, - "Rotation": 147.656372, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fd246e19-a658-4f37-ad29-43b37ca413a1", - "Infiltration": "Customs", - "Position": { - "x": -320.572021, - "y": 0.940000057, - "z": -227.806 - }, - "Rotation": 68.36, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fd6734ed-6ba8-423b-8a7b-2943f31c6527", - "Infiltration": "Customs", - "Position": { - "x": 97.4080048, - "y": 1.18800008, - "z": 13.8939972 - }, - "Rotation": 167.010742, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCrossRoad", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 6, - "Id": "fe9878ea-5664-4981-86a9-e8de8ecf73bb", - "Infiltration": "", - "Position": { - "x": 191.46, - "y": 1.22457552, - "z": -2.51000214 - }, - "Rotation": 38.0980873, - "Sides": [ - "Savage" - ] - } - ], - "UnixDateTime": 1636382469, - "_Id": "56f40101d2720b2a4d8b45d6", - "doors": [], - "exit_access_time": 60, - "exit_count": 2, - "exit_time": 1, - "exits": [ - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Boiler Tanks", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Crossroads", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequirementTip": "" - }, - { - "Chance": 50, - "ChancePVE": 50, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Boiler Tanks", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Smuggler's Boat", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Boiler Tanks", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "RUAF Roadblock", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequirementTip": "" - }, - { - "Chance": 50, - "ChancePVE": 50, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Customs", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "ZB-1012", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Customs", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "ZB-1011", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Boiler Tanks", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Trailer Park", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequirementTip": "" - }, - { - "Chance": 50, - "ChancePVE": 50, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Customs", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Old Gas Station", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequirementTip": "" - }, - { - "Chance": 50, - "ChancePVE": 50, - "Count": 5000, - "CountPVE": 5000, - "EntryPoints": "Customs,Boiler Tanks", - "EventAvailable": false, - "ExfiltrationTime": 60, - "ExfiltrationTimePVE": 60, - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Dorms V-Ex", - "PassageRequirement": "TransferItem", - "PlayersCount": 4, - "PlayersCountPVE": 4, - "RequirementTip": "EXFIL_Item" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Customs,Boiler Tanks", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "EXFIL_ZB013", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequirementTip": "" - } - ], - "filter_ex": [], - "limits": [], - "matching_min_seconds": 60, - "maxItemCountInLocation": [ - { - "TemplateId": "634959225289190e5e773b3b", - "Value": 6 - } - ], - "sav_summon_seconds": 60, - "tmp_location_field_remove_me": 0, - "transits": [ - { - "activateAfterSec": 60, - "active": true, - "conditions": "CUS_TRANSIT_9_COND", - "description": "CUS_TRANSIT_9_DESC", - "id": 9, - "location": "RezervBase", - "name": "CUS_TRANSIT_9", - "target": "5704e5fad2720bc05b8b4567", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": true, - "conditions": "CUS_TRANSIT_10_COND", - "description": "CUS_TRANSIT_10_DESC", - "id": 10, - "location": "factory4_day", - "name": "CUS_TRANSIT_10", - "target": "55f2d3fd4bdc2d5f408b4567", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": true, - "conditions": "CUS_TRANSIT_11_COND", - "description": "CUS_TRANSIT_11_DESC", - "id": 11, - "location": "Interchange", - "name": "CUS_TRANSIT_11", - "target": "5714dbc024597771384a510d", - "time": 30 - } - ], - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "waves": [] -} diff --git a/project/assets/database/locations/bigmap/looseLoot.json b/project/assets/database/locations/bigmap/looseLoot.json deleted file mode 100644 index 45ac9399..00000000 --- a/project/assets/database/locations/bigmap/looseLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:64396228209c02473cb75bffc924200ccb68bd5cb4e9f760cac2e6c729176898 -size 22632668 diff --git a/project/assets/database/locations/bigmap/staticAmmo.json b/project/assets/database/locations/bigmap/staticAmmo.json deleted file mode 100644 index 63624030..00000000 --- a/project/assets/database/locations/bigmap/staticAmmo.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bf3d8c6d33f5b6916d36defa2185a09c372f4db1b7feb81ce24ede0033225aa7 -size 11273 diff --git a/project/assets/database/locations/bigmap/staticContainers.json b/project/assets/database/locations/bigmap/staticContainers.json deleted file mode 100644 index 6bb1dcf2..00000000 --- a/project/assets/database/locations/bigmap/staticContainers.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ef1ae760e6a8de857753a826ff111dadbb0b440f9c21eb4d77774e40c17b0863 -size 208256 diff --git a/project/assets/database/locations/bigmap/staticLoot.json b/project/assets/database/locations/bigmap/staticLoot.json deleted file mode 100644 index c6d34a82..00000000 --- a/project/assets/database/locations/bigmap/staticLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:449229e34fe6fdaaf3cb032d0cab96dc3518f84fd7b2d0169cb0b8bb17155cd4 -size 694165 diff --git a/project/assets/database/locations/bigmap/statics.json b/project/assets/database/locations/bigmap/statics.json deleted file mode 100644 index 51484e97..00000000 --- a/project/assets/database/locations/bigmap/statics.json +++ /dev/null @@ -1,1539 +0,0 @@ -{ - "containersGroups": { - "BagSport_N3_3_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "supplyBoxFood_N2_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N5_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N13_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N3_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N7_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N19_3_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N17_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N22_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N20_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N9_3_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N5_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N16_3_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N17_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N16_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N12_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N1_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N20_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N11_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N2_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N8_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N4_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N6_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N7_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N7_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N2_3_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N9_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "Blue_Barrel_customs": { - "minContainers": 12, - "maxContainers": 16 - }, - "PlasticSuitcase_N19_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "supplyBoxFood_N1_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N8_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N15_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N24_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "supplyBoxTools_N4_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N17_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N14_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "Medbag_N1_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N6_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N2_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N11_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N10_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N5_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N14_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N15_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N13_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N10_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N18_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N23_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "supplyBoxMedicine_N2_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "ContainerGrenade_N2_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N11_3_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N25_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N1_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N15_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N3_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N18_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N9_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N12_3_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "supplyBoxTools_N3_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N21_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N13_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N6_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N16_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N18_3_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N10_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N1_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N4_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N12_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "ContainerGrenade_N1_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N4_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "PlasticSuitcase_N8_2_custom": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeapnoBox_N14_2_custom": { - "minContainers": 0, - "maxContainers": 2 - } - }, - "containers": { - "container_custom_DesignStuff_00087": { - "groupId": "" - }, - "container_custom_DesignStuff_00099": { - "groupId": "" - }, - "container_custom_DesignStuff_00074": { - "groupId": "" - }, - "container_custom_DesignStuff_00033": { - "groupId": "" - }, - "container_custom_DesignStuff_00032": { - "groupId": "" - }, - "container_custom_DesignStuff_00034": { - "groupId": "" - }, - "container_custom_DesignStuff_00035": { - "groupId": "" - }, - "container_custom_DesignStuff_00006": { - "groupId": "" - }, - "container_custom_DesignStuff_00007": { - "groupId": "" - }, - "container_custom_DesignStuff_00005": { - "groupId": "" - }, - "container_custom_DesignStuff_00004": { - "groupId": "" - }, - "Lootable_00002": { - "groupId": "" - }, - "container_custom_DesignStuff_00068": { - "groupId": "" - }, - "container_custom_DesignStuff_00088": { - "groupId": "" - }, - "container_custom_DesignStuff_00094": { - "groupId": "" - }, - "container_custom_DesignStuff_00080": { - "groupId": "" - }, - "container_custom_DesignStuff_00079": { - "groupId": "" - }, - "container_custom_DesignStuff_00102": { - "groupId": "" - }, - "Lootable_00008": { - "groupId": "" - }, - "Lootable_00007": { - "groupId": "" - }, - "Lootable_00005": { - "groupId": "" - }, - "Lootable_00006": { - "groupId": "" - }, - "container_custom_DesignStuff_00064": { - "groupId": "" - }, - "container_custom_DesignStuff_00112": { - "groupId": "" - }, - "container_custom_DesignStuff_00083": { - "groupId": "" - }, - "container_custom_DesignStuff_00096": { - "groupId": "" - }, - "container_custom_DesignStuff_00001": { - "groupId": "" - }, - "container_custom_DesignStuff_00000": { - "groupId": "" - }, - "container_custom_DesignStuff_00002": { - "groupId": "" - }, - "container_custom_DesignStuff_00003": { - "groupId": "" - }, - "container_custom_DesignStuff_00030": { - "groupId": "" - }, - "container_custom_DesignStuff_00031": { - "groupId": "" - }, - "container_custom_DesignStuff_00029": { - "groupId": "" - }, - "container_custom_DesignStuff_00028": { - "groupId": "" - }, - "container_custom_DesignStuff_00097": { - "groupId": "" - }, - "container_custom_DesignStuff_00092": { - "groupId": "" - }, - "container_custom_DesignStuff_00082": { - "groupId": "" - }, - "container_custom_DesignStuff_00095": { - "groupId": "" - }, - "container_custom_DesignStuff_00066": { - "groupId": "" - }, - "container_custom_DesignStuff_00110": { - "groupId": "" - }, - "container_custom_DesignStuff_00072": { - "groupId": "" - }, - "container_custom_DesignStuff_00107": { - "groupId": "" - }, - "container_custom_DesignStuff_00106": { - "groupId": "" - }, - "container_custom_DesignStuff_00081": { - "groupId": "" - }, - "container_custom_DesignStuff_00071": { - "groupId": "" - }, - "Lootable_00000": { - "groupId": "" - }, - "container_custom_DesignStuff_00093": { - "groupId": "" - }, - "container_custom_DesignStuff_00085": { - "groupId": "" - }, - "container_custom_DesignStuff_00101": { - "groupId": "" - }, - "container_custom_DesignStuff_00089": { - "groupId": "" - }, - "container_custom_DesignStuff_00076": { - "groupId": "" - }, - "container_custom_DesignStuff_00020": { - "groupId": "" - }, - "container_custom_DesignStuff_00021": { - "groupId": "" - }, - "container_custom_DesignStuff_00023": { - "groupId": "" - }, - "container_custom_DesignStuff_00022": { - "groupId": "" - }, - "container_custom_DesignStuff_00091": { - "groupId": "" - }, - "container_custom_DesignStuff_00109": { - "groupId": "" - }, - "container_custom_DesignStuff_00078": { - "groupId": "" - }, - "container_custom_DesignStuff_00073": { - "groupId": "" - }, - "container_custom_DesignStuff_00104": { - "groupId": "" - }, - "container_custom_DesignStuff_00077": { - "groupId": "" - }, - "container_custom_DesignStuff_00086": { - "groupId": "" - }, - "Lootable_00001": { - "groupId": "" - }, - "container_custom_DesignStuff_00113": { - "groupId": "" - }, - "container_custom_DesignStuff_00103": { - "groupId": "" - }, - "container_custom_DesignStuff_00084": { - "groupId": "" - }, - "container_custom_DesignStuff_00042": { - "groupId": "" - }, - "container_custom_DesignStuff_00043": { - "groupId": "" - }, - "container_custom_DesignStuff_00041": { - "groupId": "" - }, - "container_custom_DesignStuff_00040": { - "groupId": "" - }, - "container_custom_DesignStuff_00108": { - "groupId": "" - }, - "container_custom_DesignStuff_00067": { - "groupId": "" - }, - "container_custom_DesignStuff_00090": { - "groupId": "" - }, - "container_custom_DesignStuff_00075": { - "groupId": "" - }, - "container_custom_DesignStuff_00010": { - "groupId": "" - }, - "container_custom_DesignStuff_00011": { - "groupId": "" - }, - "container_custom_DesignStuff_00009": { - "groupId": "" - }, - "container_custom_DesignStuff_00008": { - "groupId": "" - }, - "container_custom_DesignStuff_00065": { - "groupId": "" - }, - "container_custom_DesignStuff_00070": { - "groupId": "" - }, - "container_custom_DesignStuff_00025": { - "groupId": "" - }, - "container_custom_DesignStuff_00024": { - "groupId": "" - }, - "container_custom_DesignStuff_00026": { - "groupId": "" - }, - "container_custom_DesignStuff_00027": { - "groupId": "" - }, - "container_custom_DesignStuff_00100": { - "groupId": "" - }, - "container_custom_DesignStuff_00105": { - "groupId": "" - }, - "container_custom_DesignStuff_00111": { - "groupId": "" - }, - "container_custom_DesignStuff_00018": { - "groupId": "" - }, - "container_custom_DesignStuff_00019": { - "groupId": "" - }, - "container_custom_DesignStuff_00017": { - "groupId": "" - }, - "container_custom_DesignStuff_00016": { - "groupId": "" - }, - "container_custom_DesignStuff_00069": { - "groupId": "" - }, - "container_custom_DesignStuff_00039": { - "groupId": "" - }, - "container_custom_DesignStuff_00038": { - "groupId": "" - }, - "container_custom_DesignStuff_00036": { - "groupId": "" - }, - "container_custom_DesignStuff_00037": { - "groupId": "" - }, - "container_custom_DesignStuff_00098": { - "groupId": "" - }, - "container_custom_DesignStuff_00014": { - "groupId": "" - }, - "container_custom_DesignStuff_00015": { - "groupId": "" - }, - "container_custom_DesignStuff_00013": { - "groupId": "" - }, - "container_custom_DesignStuff_00012": { - "groupId": "" - }, - "Lootable_00009": { - "groupId": "" - }, - "container_custom_DesignStuff_00055": { - "groupId": "" - }, - "container_custom_DesignStuff_00054": { - "groupId": "" - }, - "container_custom_DesignStuff_00056": { - "groupId": "" - }, - "container_custom_DesignStuff_00057": { - "groupId": "" - }, - "container_custom_DesignStuff_00058": { - "groupId": "" - }, - "container_custom_DesignStuff_00059": { - "groupId": "" - }, - "container_custom_DesignStuff_00060": { - "groupId": "" - }, - "container_custom_DesignStuff_00061": { - "groupId": "" - }, - "container_custom_DesignStuff_00063": { - "groupId": "" - }, - "container_custom_DesignStuff_00062": { - "groupId": "" - }, - "container_custom_DesignStuff_00382": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00347": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00385": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00369": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00388": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00376": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00350": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00379": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00356": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00393": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00359": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00378": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00344": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00390": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00353": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00355": { - "groupId": "Blue_Barrel_customs" - }, - "Lootable_00072": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00341": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00360": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00380": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00371": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00386": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00373": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00340": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00387": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00352": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00342": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00374": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00364": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00366": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00392": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00384": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00368": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00370": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00383": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00357": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00394": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00361": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00354": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00362": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00367": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00358": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00343": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00391": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00372": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00365": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00375": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00389": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00349": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00377": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00346": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00351": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00363": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00381": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00348": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00345": { - "groupId": "Blue_Barrel_customs" - }, - "container_custom_DesignStuff_00255": { - "groupId": "BagSport_N1_2_custom" - }, - "container_custom_DesignStuff_00295": { - "groupId": "BagSport_N19_3_custom" - }, - "container_custom_DesignStuff_00296": { - "groupId": "BagSport_N19_3_custom" - }, - "container_custom_DesignStuff_00291": { - "groupId": "BagSport_N17_2_custom" - }, - "container_custom_DesignStuff_00152": { - "groupId": "" - }, - "container_custom_DesignStuff_00290": { - "groupId": "BagSport_N16_3_custom" - }, - "container_custom_DesignStuff_00154": { - "groupId": "" - }, - "container_custom_DesignStuff_00278": { - "groupId": "BagSport_N11_2_custom" - }, - "container_custom_DesignStuff_00268": { - "groupId": "BagSport_N6_2_custom" - }, - "container_custom_DesignStuff_00261": { - "groupId": "BagSport_N3_3_custom" - }, - "container_custom_DesignStuff_00275": { - "groupId": "BagSport_N9_2_custom" - }, - "container_custom_DesignStuff_00270": { - "groupId": "BagSport_N7_2_custom" - }, - "container_custom_DesignStuff_00287": { - "groupId": "BagSport_N15_2_custom" - }, - "container_custom_DesignStuff_00284": { - "groupId": "BagSport_N14_2_custom" - }, - "container_custom_DesignStuff_00277": { - "groupId": "BagSport_N10_2_custom" - }, - "container_custom_DesignStuff_00151": { - "groupId": "" - }, - "container_custom_DesignStuff_00259": { - "groupId": "BagSport_N2_3_custom" - }, - "container_custom_DesignStuff_00256": { - "groupId": "BagSport_N1_2_custom" - }, - "container_custom_DesignStuff_00260": { - "groupId": "BagSport_N3_3_custom" - }, - "container_custom_DesignStuff_00281": { - "groupId": "BagSport_N12_2_custom" - }, - "container_custom_DesignStuff_00298": { - "groupId": "BagSport_N20_2_custom" - }, - "container_Test_for_export_00000": { - "groupId": "" - }, - "container_custom_DesignStuff_00282": { - "groupId": "BagSport_N13_2_custom" - }, - "container_custom_DesignStuff_00266": { - "groupId": "BagSport_N5_2_custom" - }, - "container_custom_DesignStuff_00288": { - "groupId": "BagSport_N16_3_custom" - }, - "container_custom_DesignStuff_00289": { - "groupId": "BagSport_N16_3_custom" - }, - "container_custom_DesignStuff_00267": { - "groupId": "BagSport_N6_2_custom" - }, - "container_custom_DesignStuff_00148": { - "groupId": "" - }, - "container_custom_DesignStuff_00286": { - "groupId": "BagSport_N15_2_custom" - }, - "container_custom_DesignStuff_00285": { - "groupId": "BagSport_N14_2_custom" - }, - "container_custom_DesignStuff_00265": { - "groupId": "BagSport_N5_2_custom" - }, - "container_custom_DesignStuff_00150": { - "groupId": "" - }, - "container_custom_DesignStuff_00395": { - "groupId": "" - }, - "container_custom_DesignStuff_00262": { - "groupId": "BagSport_N3_3_custom" - }, - "container_custom_DesignStuff_00294": { - "groupId": "BagSport_N18_3_custom" - }, - "container_custom_DesignStuff_00297": { - "groupId": "BagSport_N19_3_custom" - }, - "container_custom_DesignStuff_00299": { - "groupId": "BagSport_N20_2_custom" - }, - "container_custom_DesignStuff_00274": { - "groupId": "BagSport_N9_2_custom" - }, - "container_custom_DesignStuff_00264": { - "groupId": "BagSport_N4_2_custom" - }, - "container_custom_DesignStuff_00258": { - "groupId": "BagSport_N2_3_custom" - }, - "container_custom_DesignStuff_00293": { - "groupId": "BagSport_N18_3_custom" - }, - "container_custom_DesignStuff_00279": { - "groupId": "BagSport_N11_2_custom" - }, - "container_custom_DesignStuff_00155": { - "groupId": "" - }, - "container_custom_DesignStuff_00283": { - "groupId": "BagSport_N13_2_custom" - }, - "container_custom_DesignStuff_00273": { - "groupId": "BagSport_N8_2_custom" - }, - "container_custom_DesignStuff_00272": { - "groupId": "BagSport_N8_2_custom" - }, - "container_custom_DesignStuff_00276": { - "groupId": "BagSport_N10_2_custom" - }, - "container_custom_DesignStuff_00271": { - "groupId": "BagSport_N8_2_custom" - }, - "container_custom_DesignStuff_00149": { - "groupId": "" - }, - "container_custom_DesignStuff_00269": { - "groupId": "BagSport_N7_2_custom" - }, - "container_custom_DesignStuff_00280": { - "groupId": "BagSport_N12_2_custom" - }, - "container_custom_DesignStuff_00153": { - "groupId": "" - }, - "container_custom_DesignStuff_00263": { - "groupId": "BagSport_N4_2_custom" - }, - "container_custom_DesignStuff_00257": { - "groupId": "BagSport_N2_3_custom" - }, - "container_custom_DesignStuff_00292": { - "groupId": "BagSport_N17_2_custom" - }, - "Lootable_00068": { - "groupId": "" - }, - "container_custom_DesignStuff_00196": { - "groupId": "" - }, - "container_custom_DesignStuff_00194": { - "groupId": "" - }, - "container_custom_DesignStuff_00192": { - "groupId": "" - }, - "container_custom_DesignStuff_00198": { - "groupId": "" - }, - "container_custom_DesignStuff_00191": { - "groupId": "" - }, - "container_custom_DesignStuff_00197": { - "groupId": "" - }, - "container_custom_DesignStuff_00193": { - "groupId": "" - }, - "container_custom_DesignStuff_00195": { - "groupId": "" - }, - "container_custom_DesignStuff_00179": { - "groupId": "" - }, - "container_custom_DesignStuff_00177": { - "groupId": "" - }, - "container_custom_DesignStuff_00176": { - "groupId": "" - }, - "container_custom_DesignStuff_00175": { - "groupId": "" - }, - "container_custom_DesignStuff_00173": { - "groupId": "" - }, - "container_custom_DesignStuff_00178": { - "groupId": "" - }, - "container_custom_DesignStuff_00172": { - "groupId": "" - }, - "container_custom_DesignStuff_00174": { - "groupId": "" - }, - "container_custom_DesignStuff_00185": { - "groupId": "" - }, - "container_custom_DesignStuff_00189": { - "groupId": "" - }, - "container_custom_DesignStuff_00186": { - "groupId": "" - }, - "container_custom_DesignStuff_00181": { - "groupId": "" - }, - "container_custom_DesignStuff_00180": { - "groupId": "" - }, - "container_custom_DesignStuff_00183": { - "groupId": "" - }, - "container_custom_DesignStuff_00182": { - "groupId": "" - }, - "container_custom_DesignStuff_00184": { - "groupId": "" - }, - "container_custom_DesignStuff_00187": { - "groupId": "" - }, - "container_custom_DesignStuff_00188": { - "groupId": "" - }, - "container_custom_DesignStuff_00190": { - "groupId": "" - }, - "container_custom_DesignStuff_00138": { - "groupId": "" - }, - "container_custom_DesignStuff_00137": { - "groupId": "" - }, - "container_custom_DesignStuff_00139": { - "groupId": "" - }, - "Lootable_00004": { - "groupId": "" - }, - "container_custom_DesignStuff_00140": { - "groupId": "" - }, - "container_custom_DesignStuff_00136": { - "groupId": "" - }, - "container_custom_DesignStuff_00135": { - "groupId": "" - }, - "container_custom_DesignStuff_00047": { - "groupId": "" - }, - "container_custom_DesignStuff_00044": { - "groupId": "" - }, - "Lootable_00010": { - "groupId": "" - }, - "container_custom_DesignStuff_00046": { - "groupId": "" - }, - "container_custom_DesignStuff_00048": { - "groupId": "" - }, - "container_custom_DesignStuff_00045": { - "groupId": "" - }, - "00012": { - "groupId": "supplyBoxTools_N4_2_custom" - }, - "container_custom_DesignStuff_00156": { - "groupId": "supplyBoxFood_N1_2_custom" - }, - "container_custom_DesignStuff_00159": { - "groupId": "supplyBoxMedicine_N2_2_custom" - }, - "container_custom_DesignStuff_00158": { - "groupId": "supplyBoxMedicine_N2_2_custom" - }, - "container_custom_DesignStuff_00051": { - "groupId": "" - }, - "container_custom_DesignStuff_00053": { - "groupId": "" - }, - "container_custom_DesignStuff_00049": { - "groupId": "" - }, - "container_custom_DesignStuff_00157": { - "groupId": "supplyBoxFood_N1_2_custom" - }, - "container_custom_DesignStuff_00160": { - "groupId": "supplyBoxTools_N3_2_custom" - }, - "container_custom_DesignStuff_00050": { - "groupId": "" - }, - "container_custom_DesignStuff_00162": { - "groupId": "supplyBoxTools_N4_2_custom" - }, - "container_custom_DesignStuff_00052": { - "groupId": "" - }, - "container_custom_DesignStuff_00161": { - "groupId": "supplyBoxTools_N3_2_custom" - }, - "container_ProfileEditor_00001": { - "groupId": "" - }, - "container_custom_DesignStuff_00301": { - "groupId": "Medbag_N1_2_custom" - }, - "container_custom_DesignStuff_00171": { - "groupId": "" - }, - "container_custom_DesignStuff_00300": { - "groupId": "Medbag_N1_2_custom" - }, - "container_custom_DesignStuff_00169": { - "groupId": "" - }, - "container_custom_DesignStuff_00170": { - "groupId": "" - }, - "container_custom_DesignStuff_00143": { - "groupId": "" - }, - "container_custom_DesignStuff_00144": { - "groupId": "" - }, - "container_custom_DesignStuff_00145": { - "groupId": "" - }, - "container_custom_DesignStuff_00146": { - "groupId": "" - }, - "n1": { - "groupId": "supplyBoxFood_N2_2_custom" - }, - "container_custom_DesignStuff_00254": { - "groupId": "supplyBoxFood_N2_2_custom" - }, - "container_custom_DesignStuff_00142": { - "groupId": "" - }, - "container_custom_DesignStuff_00147": { - "groupId": "" - }, - "container_custom_DesignStuff_00134": { - "groupId": "" - }, - "container_custom_DesignStuff_00243": { - "groupId": "PlasticSuitcase_N23_2_custom" - }, - "container_custom_DesignStuff_00241": { - "groupId": "PlasticSuitcase_N22_2_custom" - }, - "container_custom_DesignStuff_00244": { - "groupId": "PlasticSuitcase_N23_2_custom" - }, - "container_custom_DesignStuff_00242": { - "groupId": "PlasticSuitcase_N22_2_custom" - }, - "container_custom_DesignStuff_00249": { - "groupId": "PlasticSuitcase_N25_2_custom" - }, - "container_custom_DesignStuff_00133": { - "groupId": "" - }, - "container_custom_DesignStuff_00246": { - "groupId": "PlasticSuitcase_N24_2_custom" - }, - "container_custom_DesignStuff_00245": { - "groupId": "PlasticSuitcase_N24_2_custom" - }, - "container_custom_DesignStuff_00250": { - "groupId": "PlasticSuitcase_N25_2_custom" - }, - "container_custom_DesignStuff_00115": { - "groupId": "" - }, - "container_custom_DesignStuff_00125": { - "groupId": "" - }, - "container_custom_DesignStuff_00114": { - "groupId": "" - }, - "container_custom_DesignStuff_00116": { - "groupId": "" - }, - "container_custom_DesignStuff_00122": { - "groupId": "" - }, - "container_custom_DesignStuff_00124": { - "groupId": "" - }, - "container_custom_DesignStuff_00119": { - "groupId": "" - }, - "container_custom_DesignStuff_00117": { - "groupId": "" - }, - "container_custom_DesignStuff_00120": { - "groupId": "" - }, - "container_custom_DesignStuff_00121": { - "groupId": "" - }, - "container_custom_DesignStuff_00123": { - "groupId": "" - }, - "container_custom_DesignStuff_00118": { - "groupId": "" - }, - "container_custom_DesignStuff_00302": { - "groupId": "WeapnoBox_N1_2_custom" - }, - "container_custom_DesignStuff_00200": { - "groupId": "" - }, - "container_custom_DesignStuff_00324": { - "groupId": "WeapnoBox_N11_3_custom" - }, - "container_custom_DesignStuff_00303": { - "groupId": "WeapnoBox_N1_2_custom" - }, - "container_custom_DesignStuff_00328": { - "groupId": "WeapnoBox_N12_3_custom" - }, - "container_custom_DesignStuff_00201": { - "groupId": "" - }, - "container_custom_DesignStuff_00202": { - "groupId": "" - }, - "container_custom_DesignStuff_00307": { - "groupId": "WeapnoBox_N3_2_custom" - }, - "container_custom_DesignStuff_00199": { - "groupId": "" - }, - "container_custom_DesignStuff_00320": { - "groupId": "WeapnoBox_N9_3_custom" - }, - "container_custom_DesignStuff_00338": { - "groupId": "WeapnoBox_N17_2_custom" - }, - "container_custom_DesignStuff_00339": { - "groupId": "WeapnoBox_N18_2_custom" - }, - "container_custom_DesignStuff_00203": { - "groupId": "" - }, - "container_custom_DesignStuff_00334": { - "groupId": "WeapnoBox_N15_2_custom" - }, - "container_custom_DesignStuff_00318": { - "groupId": "WeapnoBox_N9_3_custom" - }, - "container_custom_DesignStuff_00322": { - "groupId": "WeapnoBox_N10_2_custom" - }, - "container_custom_DesignStuff_00330": { - "groupId": "WeapnoBox_N13_2_custom" - }, - "container_custom_DesignStuff_00329": { - "groupId": "WeapnoBox_N13_2_custom" - }, - "container_custom_DesignStuff_00337": { - "groupId": "WeapnoBox_N17_2_custom" - }, - "container_custom_DesignStuff_00310": { - "groupId": "WeapnoBox_N5_2_custom" - }, - "Lootable_00003": { - "groupId": "WeapnoBox_N18_2_custom" - }, - "container_custom_DesignStuff_00332": { - "groupId": "WeapnoBox_N14_2_custom" - }, - "container_custom_DesignStuff_00304": { - "groupId": "WeapnoBox_N2_2_custom" - }, - "container_custom_DesignStuff_00314": { - "groupId": "WeapnoBox_N7_2_custom" - }, - "container_custom_DesignStuff_00204": { - "groupId": "" - }, - "container_custom_DesignStuff_00308": { - "groupId": "WeapnoBox_N4_2_custom" - }, - "container_custom_DesignStuff_00315": { - "groupId": "WeapnoBox_N7_2_custom" - }, - "container_custom_DesignStuff_00325": { - "groupId": "WeapnoBox_N11_3_custom" - }, - "container_custom_DesignStuff_00316": { - "groupId": "WeapnoBox_N8_2_custom" - }, - "container_custom_DesignStuff_00306": { - "groupId": "WeapnoBox_N3_2_custom" - }, - "container_custom_DesignStuff_00327": { - "groupId": "WeapnoBox_N12_3_custom" - }, - "container_custom_DesignStuff_00326": { - "groupId": "WeapnoBox_N12_3_custom" - }, - "container_custom_DesignStuff_00313": { - "groupId": "WeapnoBox_N6_2_custom" - }, - "container_custom_DesignStuff_00319": { - "groupId": "WeapnoBox_N9_3_custom" - }, - "container_custom_DesignStuff_00205": { - "groupId": "" - }, - "container_custom_DesignStuff_00336": { - "groupId": "WeapnoBox_N16_2_custom" - }, - "container_custom_DesignStuff_00305": { - "groupId": "WeapnoBox_N2_2_custom" - }, - "container_custom_DesignStuff_00317": { - "groupId": "WeapnoBox_N8_2_custom" - }, - "container_custom_DesignStuff_00312": { - "groupId": "WeapnoBox_N6_2_custom" - }, - "container_custom_DesignStuff_00311": { - "groupId": "WeapnoBox_N5_2_custom" - }, - "container_custom_DesignStuff_00335": { - "groupId": "WeapnoBox_N16_2_custom" - }, - "container_custom_DesignStuff_00309": { - "groupId": "WeapnoBox_N4_2_custom" - }, - "container_custom_DesignStuff_00321": { - "groupId": "WeapnoBox_N10_2_custom" - }, - "container_custom_DesignStuff_00333": { - "groupId": "WeapnoBox_N15_2_custom" - }, - "container_custom_DesignStuff_00331": { - "groupId": "WeapnoBox_N14_2_custom" - }, - "container_custom_DesignStuff_00323": { - "groupId": "WeapnoBox_N11_3_custom" - }, - "container_Test_for_export_00001": { - "groupId": "" - }, - "container_custom_DesignStuff_00252": { - "groupId": "ContainerGrenade_N2_2_custom" - }, - "container_custom_DesignStuff_00248": { - "groupId": "ContainerGrenade_N1_2_custom" - }, - "container_custom_DesignStuff_00141": { - "groupId": "" - }, - "container_custom_DesignStuff_00253": { - "groupId": "ContainerGrenade_N2_2_custom" - }, - "container_custom_DesignStuff_00251": { - "groupId": "ContainerGrenade_N2_2_custom" - }, - "container_custom_DesignStuff_00247": { - "groupId": "ContainerGrenade_N1_2_custom" - }, - "container_custom_DesignStuff_00128": { - "groupId": "" - }, - "container_custom_DesignStuff_00130": { - "groupId": "" - }, - "container_custom_DesignStuff_00129": { - "groupId": "" - }, - "container_custom_DesignStuff_00210": { - "groupId": "PlasticSuitcase_N6_2_custom" - }, - "container_custom_DesignStuff_00220": { - "groupId": "PlasticSuitcase_N11_2_custom" - }, - "container_custom_DesignStuff_00126": { - "groupId": "" - }, - "container_custom_DesignStuff_00221": { - "groupId": "PlasticSuitcase_N11_2_custom" - }, - "container_custom_DesignStuff_00222": { - "groupId": "PlasticSuitcase_N12_2_custom" - }, - "container_custom_DesignStuff_00127": { - "groupId": "" - }, - "container_custom_DesignStuff_00218": { - "groupId": "PlasticSuitcase_N10_2_custom" - }, - "container_custom_DesignStuff_00163": { - "groupId": "PlasticSuitcase_N1_2_custom" - }, - "container_custom_DesignStuff_00168": { - "groupId": "PlasticSuitcase_N3_2_custom" - }, - "container_Test_for_export_00002": { - "groupId": "PlasticSuitcase_N12_2_custom" - }, - "container_custom_DesignStuff_00213": { - "groupId": "PlasticSuitcase_N7_2_custom" - }, - "container_custom_DesignStuff_00206": { - "groupId": "PlasticSuitcase_N4_2_custom" - }, - "container_custom_DesignStuff_00219": { - "groupId": "PlasticSuitcase_N10_2_custom" - }, - "container_custom_DesignStuff_00207": { - "groupId": "PlasticSuitcase_N4_2_custom" - }, - "container_custom_DesignStuff_00216": { - "groupId": "PlasticSuitcase_N9_2_custom" - }, - "container_custom_DesignStuff_00211": { - "groupId": "PlasticSuitcase_N6_2_custom" - }, - "container_custom_DesignStuff_00214": { - "groupId": "PlasticSuitcase_N8_2_custom" - }, - "container_custom_DesignStuff_00208": { - "groupId": "PlasticSuitcase_N5_2_custom" - }, - "container_custom_DesignStuff_00212": { - "groupId": "PlasticSuitcase_N7_2_custom" - }, - "container_custom_DesignStuff_00217": { - "groupId": "PlasticSuitcase_N9_2_custom" - }, - "container_custom_DesignStuff_00215": { - "groupId": "PlasticSuitcase_N8_2_custom" - }, - "container_custom_DesignStuff_00167": { - "groupId": "PlasticSuitcase_N3_2_custom" - }, - "container_custom_DesignStuff_00209": { - "groupId": "PlasticSuitcase_N5_2_custom" - }, - "container_custom_DesignStuff_00164": { - "groupId": "PlasticSuitcase_N1_2_custom" - }, - "container_custom_DesignStuff_00165": { - "groupId": "PlasticSuitcase_N2_2_custom" - }, - "container_custom_DesignStuff_00166": { - "groupId": "PlasticSuitcase_N2_2_custom" - }, - "container_custom_DesignStuff_00234": { - "groupId": "PlasticSuitcase_N18_2_custom" - }, - "container_custom_DesignStuff_00225": { - "groupId": "PlasticSuitcase_N14_2_custom" - }, - "container_custom_DesignStuff_00237": { - "groupId": "PlasticSuitcase_N20_2_custom" - }, - "container_custom_DesignStuff_00131": { - "groupId": "" - }, - "container_custom_DesignStuff_00240": { - "groupId": "PlasticSuitcase_N21_2_custom" - }, - "container_custom_DesignStuff_00238": { - "groupId": "PlasticSuitcase_N20_2_custom" - }, - "container_custom_DesignStuff_00231": { - "groupId": "PlasticSuitcase_N17_2_custom" - }, - "container_custom_DesignStuff_00235": { - "groupId": "PlasticSuitcase_N19_2_custom" - }, - "container_custom_DesignStuff_00227": { - "groupId": "PlasticSuitcase_N15_2_custom" - }, - "container_custom_DesignStuff_00239": { - "groupId": "PlasticSuitcase_N21_2_custom" - }, - "container_custom_DesignStuff_00226": { - "groupId": "PlasticSuitcase_N14_2_custom" - }, - "container_custom_DesignStuff_00228": { - "groupId": "PlasticSuitcase_N15_2_custom" - }, - "container_custom_DesignStuff_00232": { - "groupId": "PlasticSuitcase_N17_2_custom" - }, - "container_custom_DesignStuff_00229": { - "groupId": "PlasticSuitcase_N16_2_custom" - }, - "container_custom_DesignStuff_00132": { - "groupId": "" - }, - "container_custom_DesignStuff_00224": { - "groupId": "PlasticSuitcase_N13_2_custom" - }, - "container_custom_DesignStuff_00233": { - "groupId": "PlasticSuitcase_N18_2_custom" - }, - "container_custom_DesignStuff_00230": { - "groupId": "PlasticSuitcase_N16_2_custom" - }, - "container_custom_DesignStuff_00236": { - "groupId": "PlasticSuitcase_N19_2_custom" - }, - "container_custom_DesignStuff_00223": { - "groupId": "PlasticSuitcase_N13_2_custom" - } - } -} \ No newline at end of file diff --git a/project/assets/database/locations/develop/base.json b/project/assets/database/locations/develop/base.json deleted file mode 100644 index 5f79614c..00000000 --- a/project/assets/database/locations/develop/base.json +++ /dev/null @@ -1,592 +0,0 @@ -{ - "Enabled": false, - "Locked": false, - "Insurance": false, - "SafeLocation": false, - "Name": "Arena", - "Scene": { - "path": "maps/develop_preset.bundle", - "rcid": "develop.scenespreset.asset" - }, - "Area": 0, - "RequiredPlayerLevel": 1, - "MinPlayers": 1, - "MaxPlayers": 10, - "exit_count": 0, - "exit_access_time": 0, - "exit_time": 0, - "IconX": 156, - "IconY": 551, - "waves": [ - { - "number": 0, - "time_min": 0, - "time_max": 10, - "slots_min": 1, - "slots_max": 2, - "BotSide": "Savage", - "BotPreset": "normal", - "SpawnPoints": "BotZoneMain", - "WildSpawnType": "assault", - "isPlayers": true - }, - { - "number": 1, - "time_min": 10, - "time_max": 120, - "slots_min": 2, - "slots_max": 3, - "BotSide": "Savage", - "BotPreset": "easy", - "SpawnPoints": "BotZoneMain", - "WildSpawnType": "assault", - "isPlayers": true - }, - { - "number": 0, - "time_min": 120, - "time_max": 240, - "slots_min": 3, - "slots_max": 4, - "BotSide": "Savage", - "BotPreset": "hard", - "SpawnPoints": "BotZoneMain", - "WildSpawnType": "assault", - "isPlayers": true - } - ], - "limits": [], - "AveragePlayTime": 2, - "AveragePlayerLevel": 10, - "escape_time_limit": 60000, - "Rules": "Normal", - "IsSecret": false, - "doors": [], - "tmp_location_field_remove_me": 0, - "MinDistToExitPoint": 0, - "MaxDistToFreePoint": 900, - "MinDistToFreePoint": 10, - "MaxBotPerZone": 0, - "OpenZones": "", - "OcculsionCullingEnabled": true, - "GlobalLootChanceModifier": 0, - "OldSpawn": true, - "NewSpawn": false, - "BotMax": 5, - "BotStart": 30, - "BotStop": 2400, - "BotMaxTimePlayer": 0, - "BotSpawnTimeOnMin": 0, - "BotSpawnTimeOnMax": 0, - "BotSpawnTimeOffMin": 0, - "BotSpawnTimeOffMax": 0, - "BotMaxPlayer": 0, - "BotEasy": 0, - "BotNormal": 0, - "BotHard": 0, - "BotImpossible": 0, - "BotAssault": 0, - "BotMarksman": 0, - "DisabledScavExits": "", - "AccessKeys": [], - "UnixDateTime": 1600869802, - "users_gather_seconds": 0, - "users_spawn_seconds_n": 0, - "users_spawn_seconds_n2": 0, - "users_summon_seconds": 0, - "sav_summon_seconds": 0, - "matching_min_seconds": 0, - "MinMaxBots": [], - "BotLocationModifier": { - "AccuracySpeed": 1, - "Scattering": 1, - "GainSight": 1, - "MarksmanAccuratyCoef": 1, - "VisibleDistance": 1, - "DistToSleep": 100, - "DistToActivate": 80, - "MagnetPower": 10 - }, - "exits": [ - { - "Name": "UN Roadblock", - "EntryPoints": "House,Houseb", - "Chance": 100, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 10, - "PassageRequirement": "TransferItem", - "ExfiltrationType": "SharedTimer", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "5449016a4bdc2d6f028b456f", - "RequirementTip": "Сотку должен", - "Count": 100 - }, - { - "Name": "Elevator", - "EntryPoints": "House,Houseb", - "Chance": 100, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 3, - "ExfiltrationTime": 10, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0 - }, - { - "Name": "Outskirts", - "EntryPoints": "House,Houseb", - "Chance": 100, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 10, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0 - }, - { - "Name": "Hangar Gate", - "EntryPoints": "House,Houseb", - "Chance": 100, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 10, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0 - }, - { - "Name": "Tunnel", - "EntryPoints": "House,Houseb", - "Chance": 100, - "MinTime": 0, - "MaxTime": 0, - "PlayersCount": 0, - "ExfiltrationTime": 10, - "PassageRequirement": "None", - "ExfiltrationType": "Individual", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "", - "RequirementTip": "", - "Count": 0 - }, - { - "Name": "EXFIL_Train", - "EntryPoints": "House,Houseb", - "Chance": 100, - "MinTime": 30, - "MaxTime": 60, - "PlayersCount": 0, - "ExfiltrationTime": 5, - "PassageRequirement": "Train", - "ExfiltrationType": "SharedTimer", - "RequiredSlot": "FirstPrimaryWeapon", - "Id": "0", - "RequirementTip": "TIP IS HARDCODED", - "Count": 90 - } - ], - "DisabledForScav": false, - "BossLocationSpawn": [], - "SpawnPointParams": [ - { - "Id": "03841924-ea1a-4e5c-bf27-82af7868beb1", - "Position": { - "x": -30.359436, - "y": 0.1, - "z": -6.39318848 - }, - "Rotation": 87.10709, - "Sides": [ - "Bear" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4, - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 2.2, - "y": 2.04, - "z": 2.14 - } - } - }, - "BotZoneName": "" - }, - { - "Id": "0da5b986-424a-44d1-906a-1d7cc118413a", - "Position": { - "x": 19.715271, - "y": 0.06, - "z": 5.14703369 - }, - "Rotation": 269.253418, - "Sides": [ - "Bear" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Houseb", - "DelayToCanSpawnSec": 4, - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 2.2, - "y": 2.04, - "z": 2.14 - } - } - }, - "BotZoneName": "" - }, - { - "Id": "110e3c75-e58d-461c-ab61-9f6a715ca6b1", - "Position": { - "x": -30.0410156, - "y": 0.1, - "z": -1.40075684 - }, - "Rotation": 87.10709, - "Sides": [ - "Bear" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4, - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 2.2, - "y": 2.04, - "z": 2.14 - } - } - }, - "BotZoneName": "" - }, - { - "Id": "1a40138b-6f65-4866-bad2-64162d7772de", - "Position": { - "x": -29.2000122, - "y": 0.1, - "z": 5.14001465 - }, - "Rotation": 87.10709, - "Sides": [ - "Bear" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4, - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 2.2, - "y": 2.04, - "z": 2.14 - } - } - }, - "BotZoneName": "" - }, - { - "Id": "3feb492c-8c45-405a-8e7a-8dd903433eb0", - "Position": { - "x": -23.7852783, - "y": 0.1, - "z": -2.34625244 - }, - "Rotation": 87.10709, - "Sides": [ - "Bear" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4, - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 2.2, - "y": 2.04, - "z": 2.14 - } - } - }, - "BotZoneName": "" - }, - { - "Id": "52d3284b-0e8f-47e8-a7d1-701bf4cd8e5b", - "Position": { - "x": -23.4979248, - "y": 0.1, - "z": 3.856079 - }, - "Rotation": 87.10709, - "Sides": [ - "Bear" - ], - "Categories": [ - "Player" - ], - "Infiltration": "House", - "DelayToCanSpawnSec": 4, - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 2.2, - "y": 2.04, - "z": 2.14 - } - } - }, - "BotZoneName": "" - }, - { - "Id": "870629fd-e4d5-4fa1-8274-94c223ad9692", - "Position": { - "x": 12.9941406, - "y": 0.06, - "z": 1.34918213 - }, - "Rotation": 269.253418, - "Sides": [ - "Bear" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Houseb", - "DelayToCanSpawnSec": 4, - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 2.2, - "y": 2.04, - "z": 2.14 - } - } - }, - "BotZoneName": "" - }, - { - "Id": "93a1c6d6-1379-43e6-99c2-c346178bb3e0", - "Position": { - "x": 18.1246338, - "y": 0.06, - "z": -6.334656 - }, - "Rotation": 269.253418, - "Sides": [ - "Bear" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Houseb", - "DelayToCanSpawnSec": 4, - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 2.2, - "y": 2.04, - "z": 2.14 - } - } - }, - "BotZoneName": "" - }, - { - "Id": "971882ef-596f-4419-acfb-ca2bfe52d043", - "Position": { - "x": -17.92, - "y": 0, - "z": 5.55 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ], - "Categories": [ - "Bot" - ], - "Infiltration": "", - "DelayToCanSpawnSec": 10, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 4 - } - }, - "BotZoneName": "BotZoneMain" - }, - { - "Id": "cf24125e-1c3a-457e-a024-613a8df98b06", - "Position": { - "x": 12.47467, - "y": 0.06, - "z": -4.838135 - }, - "Rotation": 269.253418, - "Sides": [ - "Bear" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Houseb", - "DelayToCanSpawnSec": 4, - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 2.2, - "y": 2.04, - "z": 2.14 - } - } - }, - "BotZoneName": "" - }, - { - "Id": "d052b031-b477-465f-8913-ae108c9ca2c3", - "Position": { - "x": 19.210022, - "y": 0.06, - "z": 0.16998291 - }, - "Rotation": 269.253418, - "Sides": [ - "Bear" - ], - "Categories": [ - "Player" - ], - "Infiltration": "Houseb", - "DelayToCanSpawnSec": 4, - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 2.2, - "y": 2.04, - "z": 2.14 - } - } - }, - "BotZoneName": "" - } - ], - "maxItemCountInLocation": [], - "Id": "develop", - "_Id": "56db0b3bd2720bb0678b4567", - "Loot": [], - "Banners": [ - { - "id": "5805f617245977100b2c1f41", - "pic": { - "path": "CONTENT/banners/tglabs.jpg", - "rcid": "" - } - }, - { - "id": "5807be8924597742c603fa19", - "pic": { - "path": "CONTENT/banners/banner_tarkov.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT/banners/banner_scavraider.jpg", - "rcid": "" - } - } - ] -} \ No newline at end of file diff --git a/project/assets/database/locations/factory4_day/allExtracts.json b/project/assets/database/locations/factory4_day/allExtracts.json deleted file mode 100644 index ba0e469c..00000000 --- a/project/assets/database/locations/factory4_day/allExtracts.json +++ /dev/null @@ -1,186 +0,0 @@ -[ - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10.0, - "ExfiltrationTimePVE": 10.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Cellars", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10.0, - "ExfiltrationTimePVE": 10.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Gate 3", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10.0, - "ExfiltrationTimePVE": 10.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Gate 0", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10.0, - "ExfiltrationTimePVE": 10.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Gate m", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10.0, - "ExfiltrationTimePVE": 10.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Gate_o", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Gate 3", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Camera Bunker Door", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Office Window", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - } -] \ No newline at end of file diff --git a/project/assets/database/locations/factory4_day/base.json b/project/assets/database/locations/factory4_day/base.json deleted file mode 100644 index 86cb650c..00000000 --- a/project/assets/database/locations/factory4_day/base.json +++ /dev/null @@ -1,5152 +0,0 @@ -{ - "AccessKeys": [], - "AccessKeysPvE": [], - "Area": 0.9, - "AveragePlayTime": 15, - "AveragePlayerLevel": 1, - "Banners": [ - { - "id": "5464e0404bdc2d2a708b4567", - "pic": { - "path": "CONTENT/banners/banner_usec.jpg", - "rcid": "" - } - }, - { - "id": "5464e0454bdc2d06708b4567", - "pic": { - "path": "CONTENT/banners/banner_bear.jpg", - "rcid": "" - } - }, - { - "id": "5803a58524597710ca36fcb2", - "pic": { - "path": "CONTENT/banners/banner_terragroup.jpg", - "rcid": "" - } - }, - { - "id": "5807bfe124597742a92e0a4c", - "pic": { - "path": "CONTENT/banners/norvinskzone.jpg", - "rcid": "" - } - }, - { - "id": "5807c3f124597746bf2db2ce", - "pic": { - "path": "CONTENT/banners/banner_scav.jpg", - "rcid": "" - } - }, - { - "id": "5807be8924597742c603fa19", - "pic": { - "path": "CONTENT/banners/banner_tarkov.jpg", - "rcid": "" - } - }, - { - "id": "5805f617245977100b2c1f41", - "pic": { - "path": "CONTENT/banners/tglabs.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT/banners/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "64c0ad6af99768b777048f4e", - "pic": { - "path": "CONTENT/banners/banner_emissary.jpg", - "rcid": "" - } - } - ], - "BossLocationSpawn": [ - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "0", - "BossEscortDifficult": "normal", - "BossEscortType": "followerBully", - "BossName": "bossTagilla", - "BossPlayer": false, - "BossZone": "BotZone", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - } - ], - "BotAssault": 0, - "BotEasy": 0, - "BotHard": 0, - "BotImpossible": 0, - "BotLocationModifier": { - "AccuracySpeed": 1, - "AdditionalHostilitySettings": [ - { - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 75, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcBEAR", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - }, - { - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 90, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcUSEC", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - } - ], - "DistToActivate": 140, - "DistToActivatePvE": 140, - "DistToPersueAxemanCoef": 0.9, - "DistToSleep": 150, - "DistToSleepPvE": 150, - "GainSight": 1, - "KhorovodChance": 0, - "MagnetPower": 15, - "MarksmanAccuratyCoef": 1, - "MaxExfiltrationTime": 900, - "MinExfiltrationTime": 600, - "Scattering": 1, - "VisibleDistance": 1 - }, - "BotMarksman": 0, - "BotMax": 0, - "BotMaxPlayer": 0, - "BotMaxPvE": 20, - "BotMaxTimePlayer": 0, - "BotNormal": 0, - "BotSpawnCountStep": 3, - "BotSpawnPeriodCheck": 15, - "BotSpawnTimeOffMax": 0, - "BotSpawnTimeOffMin": 0, - "BotSpawnTimeOnMax": 0, - "BotSpawnTimeOnMin": 0, - "BotStart": 0, - "BotStartPlayer": 0, - "BotStop": 0, - "Description": "The industrial estate and facilities of the chemical plant No.16 that were rented out illegally to the TerraGroup company. ", - "DisabledForScav": false, - "DisabledScavExits": "Cellars,Gate 0", - "EnableCoop": true, - "Enabled": true, - "EscapeTimeLimit": 20, - "EscapeTimeLimitCoop": 15, - "EscapeTimeLimitPVE": 20, - "Events": { - "Halloween2024": { - "CrowdAttackBlockRadius": 100, - "CrowdAttackSpawnParams": [ - { - "Difficulty": "easy", - "Role": "infectedAssault", - "Weight": 30 - }, - { - "Difficulty": "normal", - "Role": "infectedAssault", - "Weight": 110 - }, - { - "Difficulty": "hard", - "Role": "infectedAssault", - "Weight": 40 - }, - { - "Difficulty": "easy", - "Role": "infectedPmc", - "Weight": 15 - }, - { - "Difficulty": "normal", - "Role": "infectedPmc", - "Weight": 55 - }, - { - "Difficulty": "hard", - "Role": "infectedPmc", - "Weight": 20 - }, - { - "Difficulty": "easy", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "easy", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedLaborant", - "Weight": 0 - } - ], - "CrowdCooldownPerPlayerSec": 300, - "CrowdsLimit": 2, - "InfectedLookCoeff": 2, - "InfectionPercentage": 0, - "MaxCrowdAttackSpawnLimit": 13, - "MinInfectionPercentage": 0, - "MinSpawnDistToPlayer": 40, - "TargetPointSearchRadiusLimit": 80, - "ZombieCallDeltaRadius": 20, - "ZombieCallPeriodSec": 1, - "ZombieCallRadiusLimit": 50, - "ZombieMultiplier": 5 - } - }, - "ForceOnlineRaidInPVE": false, - "GenerateLocalLootCache": true, - "GlobalContainerChanceModifier": 1, - "GlobalLootChanceModifier": 0.27, - "GlobalLootChanceModifierPvE": 0.3, - "IconX": 470, - "IconY": 510, - "Id": "factory4_day", - "Insurance": true, - "IsSecret": false, - "Locked": false, - "Loot": [], - "MatchMakerMinPlayersByWaitTime": [ - { - "minPlayers": 7, - "time": 60 - }, - { - "minPlayers": 6, - "time": 70 - }, - { - "minPlayers": 5, - "time": 120 - }, - { - "minPlayers": 4, - "time": 180 - }, - { - "minPlayers": 3, - "time": 250 - }, - { - "minPlayers": 2, - "time": 330 - }, - { - "minPlayers": 1, - "time": 420 - } - ], - "MaxBotPerZone": 4, - "MaxCoopGroup": 6, - "MaxDistToFreePoint": 900, - "MaxPlayers": 8, - "MinDistToExitPoint": 30, - "MinDistToFreePoint": 10, - "MinMaxBots": [], - "MinPlayerLvlAccessKeys": 0, - "MinPlayers": 7, - "Name": "Factory", - "NewSpawn": false, - "NewSpawnForPlayers": false, - "NonWaveGroupScenario": { - "Chance": 50, - "Enabled": true, - "MaxToBeGroup": 3, - "MinToBeGroup": 2 - }, - "OcculsionCullingEnabled": true, - "OfflineNewSpawn": false, - "OfflineOldSpawn": true, - "OldSpawn": true, - "OpenZones": "BotZone", - "PlayersRequestCount": -1, - "PmcMaxPlayersInGroup": 5, - "Preview": { - "path": "", - "rcid": "" - }, - "RequiredPlayerLevelMax": 100, - "RequiredPlayerLevelMin": 0, - "Rules": "AvoidOwnPmc", - "SafeLocation": false, - "ScavMaxPlayersInGroup": 4, - "Scene": { - "path": "maps/factory_day_preset.bundle", - "rcid": "factory_day.scenespreset.asset" - }, - "SpawnPointParams": [ - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0246436c-7d69-4036-999d-ebcb956970b5", - "Infiltration": "Factory", - "Position": { - "x": -45.3968, - "y": 0.2904, - "z": 5.5814 - }, - "Rotation": 64.50763, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "02e4bb08-990a-487c-a832-5a04582891d4", - "Infiltration": "Factory", - "Position": { - "x": 51.1948128, - "y": 0.0901808739, - "z": -25.5231 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "03526917-c391-4233-ab31-89f70621c9d4", - "Infiltration": "Factory", - "Position": { - "x": -34.21619, - "y": 1.08018088, - "z": 46.2559052 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "03a779de-ef2d-43e3-a4f3-fdcfed474f05", - "Infiltration": "", - "Position": { - "x": 13.78, - "y": -2.291, - "z": -21.65 - }, - "Rotation": 81.2727051, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "05e75eb3-eb43-46c6-94d3-59e1e9ba4435", - "Infiltration": "Factory", - "Position": { - "x": 11.22, - "y": 0.04, - "z": -42.1099968 - }, - "Rotation": 150.141159, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0a8181f7-c8f0-4db1-8eb2-932dfb3545f3", - "Infiltration": "Factory", - "Position": { - "x": 42.433, - "y": -2.639, - "z": -8.306 - }, - "Rotation": 262.378082, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0a92f51c-52b4-4e76-b839-f7ce82f2b36b", - "Infiltration": "Factory", - "Position": { - "x": 56.864, - "y": 0.261, - "z": 52.568 - }, - "Rotation": 159.0315, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0e95dd99-d6b7-4562-9813-74d4da9aaf6f", - "Infiltration": "Factory", - "Position": { - "x": 49.5, - "y": 0.0729999542, - "z": 19.4500027 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "105e5c93-2399-4054-b31d-ec981a66491f", - "Infiltration": "Factory", - "Position": { - "x": 46.57556, - "y": 0.101000071, - "z": 23.17298 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "120a0777-e825-4de7-a855-c3eaa8eba46b", - "Infiltration": "Factory", - "Position": { - "x": -43.8128, - "y": 0.2904, - "z": 6.7404 - }, - "Rotation": 90.74365, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "13883982-2ab8-4dd5-a9b4-45e2c6d8e1cc", - "Infiltration": "Factory", - "Position": { - "x": 12.595, - "y": 0.04, - "z": -42.522 - }, - "Rotation": 239.798431, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "184cc4d8-9007-4769-9798-8e354e9229ec", - "Infiltration": "Factory", - "Position": { - "x": -32.88419, - "y": 1.15018082, - "z": 47.0939026 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1a5819f2-ff42-4632-af5e-fe5ea8f886fc", - "Infiltration": "Factory", - "Position": { - "x": 58.1779976, - "y": 0.261, - "z": 51.283 - }, - "Rotation": 174.141357, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1c8f1067-d5df-401c-b05a-3c2c6b36ab9a", - "Infiltration": "Factory", - "Position": { - "x": 15.7, - "y": 4.571, - "z": 38.976 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1d42b19c-7a5b-4684-9689-b801a89e041c", - "Infiltration": "Factory", - "Position": { - "x": -33.0051842, - "y": 1.08018088, - "z": 46.6718979 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1facfcfc-9ee5-4638-83b3-117fce7b3303", - "Infiltration": "Factory", - "Position": { - "x": -46.6908, - "y": 0.2904, - "z": 8.3904 - }, - "Rotation": 103.706047, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "22a7740a-5a91-4bca-af36-668342522b42", - "Infiltration": "Factory", - "Position": { - "x": 70.75821, - "y": 0.311, - "z": -72.8016052 - }, - "Rotation": 356.430054, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 41.97 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "2355be95-341b-46db-90fd-6a383e286e5c", - "Infiltration": "", - "Position": { - "x": -20.756, - "y": 0.166, - "z": 22.769 - }, - "Rotation": 101.387489, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2497205e-6fc4-49cd-a1e3-f46c780e214f", - "Infiltration": "Factory", - "Position": { - "x": 31.624, - "y": 0.119, - "z": 18.284 - }, - "Rotation": 281.606659, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "27da5013-1a81-42db-a71f-312a557af54a", - "Infiltration": "Factory", - "Position": { - "x": -35.4081841, - "y": 1.08018088, - "z": 48.8108978 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2875ed6d-0a92-4473-b641-0616a69f6388", - "Infiltration": "Factory", - "Position": { - "x": 49.989624, - "y": 0.0599999428, - "z": 15.7763767 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2984a7ec-f10b-42a8-b466-554f37f9ea3e", - "Infiltration": "Factory", - "Position": { - "x": 43.8973656, - "y": 0.1170001, - "z": 23.56006 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2a1f1b80-72be-444d-9d8d-5f645a3fc019", - "Infiltration": "Factory", - "Position": { - "x": 32.272, - "y": 0.064, - "z": -34.013 - }, - "Rotation": 100.290321, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2a5aad92-b5f9-40c0-a380-460247300227", - "Infiltration": "Factory", - "Position": { - "x": 57.944, - "y": 0.261, - "z": 49.646 - }, - "Rotation": 174.141357, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "2dcddca6-9bd7-4d57-b57d-4c013342190d", - "Infiltration": "", - "Position": { - "x": -19.19, - "y": -3.78, - "z": -4.91 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2e1843a1-fd2a-4ccd-8b38-747c1a70f228", - "Infiltration": "Factory", - "Position": { - "x": -16.91, - "y": 0.294, - "z": -39.428 - }, - "Rotation": 270, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2eed18b6-9fbb-40de-979f-985f203f251e", - "Infiltration": "Factory", - "Position": { - "x": -42.4368, - "y": 0.2904, - "z": 7.44339943 - }, - "Rotation": 83.8970261, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "30edcdf0-73e0-4ab5-a9e7-4d24a9a83aa9", - "Infiltration": "Factory", - "Position": { - "x": 27.775, - "y": 0.119, - "z": 20.567 - }, - "Rotation": 121.344116, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "336d3c25-9f38-475f-8eb9-db6393f06b6c", - "Infiltration": "Factory", - "Position": { - "x": 71.73021, - "y": 0.311, - "z": -71.4116 - }, - "Rotation": 356.430054, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "35e7edfa-5d6c-4512-b3f0-ebb823e076de", - "Infiltration": "Factory", - "Position": { - "x": 49.94165, - "y": 0.102999926, - "z": 22.0510311 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "38a8fe02-f871-4b79-91e5-69c2c68d1bbc", - "Infiltration": "Factory", - "Position": { - "x": -16.984, - "y": 0.26700002, - "z": -41.3249969 - }, - "Rotation": 270, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3906ac26-47d3-4602-8783-049633778a29", - "Infiltration": "Factory", - "Position": { - "x": 14.636, - "y": 4.571, - "z": 39.737 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3bcd754a-b299-4d63-9d7f-e4d05c2f13e3", - "Infiltration": "Factory", - "Position": { - "x": -22.174, - "y": 2.729, - "z": 23.772 - }, - "Rotation": 89.99999, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3dd5759f-3764-491f-be62-82f2db15a699", - "Infiltration": "Factory", - "Position": { - "x": 51.404438, - "y": 0.0599999428, - "z": 21.1870213 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3eed3347-ac2d-429b-870e-6e6bc076e05e", - "Infiltration": "Factory", - "Position": { - "x": 45.8, - "y": 0.0599999428, - "z": 20.9 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3f0277ba-5d1f-4e3d-b763-234a33b904e3", - "Infiltration": "Factory", - "Position": { - "x": 49.5018044, - "y": 0.1170001, - "z": 23.8470821 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "42c3f263-52c6-428c-b97f-6acd100ec669", - "Infiltration": "Factory", - "Position": { - "x": -3.28900051, - "y": -3.858, - "z": -17.514 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4393a80b-14da-4321-86c4-0d45ab6afa67", - "Infiltration": "Factory", - "Position": { - "x": 48.6368141, - "y": 0.11818099, - "z": -25.4841 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4755c538-4ee5-4125-8cd3-885787da7ad5", - "Infiltration": "Factory", - "Position": { - "x": 12.6300011, - "y": 1.797, - "z": 60.15 - }, - "Rotation": 88.5811157, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "47a23e13-9db9-4cc2-8da0-fcbc52d698d8", - "Infiltration": "Factory", - "Position": { - "x": -35.38319, - "y": 1.08018088, - "z": 50.6099 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4a4e5ee5-a314-4a78-939d-cf3c05818435", - "Infiltration": "Factory", - "Position": { - "x": -16.7849979, - "y": 0.312, - "z": -37.434 - }, - "Rotation": 246.299744, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4bc2255b-75b0-44a3-91ed-c1b35499cbc5", - "Infiltration": "Factory", - "Position": { - "x": 7.90300035, - "y": 0.04, - "z": -44.6099968 - }, - "Rotation": 195.357437, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "503cf951-8e80-4ca0-aa2d-993f71a6a4a6", - "Infiltration": "Factory", - "Position": { - "x": -44.191, - "y": 1.188, - "z": 48.4250031 - }, - "Rotation": 90, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "50560c89-4136-4cfb-b155-485519110c93", - "Infiltration": "Factory", - "Position": { - "x": -17.6909981, - "y": 0.291, - "z": -43.159996 - }, - "Rotation": 286.887238, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "57254982-c470-440d-911a-e8854f42398a", - "Infiltration": "Factory", - "Position": { - "x": -42.617, - "y": 1.279, - "z": 48.353 - }, - "Rotation": 90, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "58eb6051-b050-4ce0-b608-71759c5e05b2", - "Infiltration": "Factory", - "Position": { - "x": -35.45019, - "y": 1.08018088, - "z": 47.646904 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "595f96c9-dcf7-4b89-947c-6f5538176fe2", - "Infiltration": "Factory", - "Position": { - "x": 52.02281, - "y": 0.0901808739, - "z": -24.6441 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "5a2aaa7e-06d3-438b-a2ee-2781ed753d2d", - "Infiltration": "", - "Position": { - "x": 35.545, - "y": 8.231328, - "z": 36.41 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5be1a535-4865-433c-b645-33c7ff65bd94", - "Infiltration": "Factory", - "Position": { - "x": -46.2658, - "y": 0.2904, - "z": 7.04739952 - }, - "Rotation": 82.15895, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5f9f188b-8489-4c06-ae14-ba4ca2a46028", - "Infiltration": "Factory", - "Position": { - "x": 46.0596237, - "y": 0.03700018, - "z": 15.1563778 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "60b47eab-b2a6-4ba2-b30c-fea14a7169bf", - "Infiltration": "Factory", - "Position": { - "x": -5.918, - "y": -3.858, - "z": -14.1830006 - }, - "Rotation": 53.7435837, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "63f705ca-a0db-4f4f-8e50-20d5a97af053", - "Infiltration": "Factory", - "Position": { - "x": -0.09300041, - "y": -3.858, - "z": -12.227 - }, - "Rotation": 252.025253, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "6670b804-5f1a-45f1-a462-585cb8619d09", - "Infiltration": "", - "Position": { - "x": 8.07, - "y": 0.1, - "z": -8.61 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "67fb48f8-0359-458b-876c-2e4963cbd14e", - "Infiltration": "Factory", - "Position": { - "x": 21.4049988, - "y": -2.668999, - "z": -14.6159992 - }, - "Rotation": 255.000031, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "683f2734-6398-4b77-9bab-b87f3be35938", - "Infiltration": "Factory", - "Position": { - "x": 69.98521, - "y": 0.311, - "z": -71.3536 - }, - "Rotation": 356.430054, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "68ac9245-633b-4287-a999-2c3028fa8d45", - "Infiltration": "", - "Position": { - "x": 4.73, - "y": 0.01, - "z": -35.1 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "68f38db1-e55e-4170-9e79-1f9e34e8cdc5", - "Infiltration": "Factory", - "Position": { - "x": 44.15699, - "y": 0.0940001, - "z": 17.8164349 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6ce1f898-79ff-498e-8b52-fda05d7ee05d", - "Infiltration": "Factory", - "Position": { - "x": 59.516, - "y": -2.63900042, - "z": 6.828 - }, - "Rotation": 46.93951, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6d7bf2bb-6211-4495-8509-58ceadea72e0", - "Infiltration": "Factory", - "Position": { - "x": 9.994, - "y": 0.04, - "z": -42.204 - }, - "Rotation": 271.3531, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6d97a439-de10-42c5-99ef-6cf92e243aca", - "Infiltration": "Factory", - "Position": { - "x": 10.2300014, - "y": 1.14, - "z": 58.7600021 - }, - "Rotation": 88.5811157, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6ecc9492-5fbb-43d8-a0c0-8509fa39eb1d", - "Infiltration": "Factory", - "Position": { - "x": 20.198, - "y": -2.668999, - "z": -16.3809986 - }, - "Rotation": 347.009827, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "71c2ba1e-e226-47be-814f-d52ddd931603", - "Infiltration": "Factory", - "Position": { - "x": -2.81400013, - "y": -2.598, - "z": 18.476 - }, - "Rotation": 226.745529, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "74059b40-4072-495f-a02c-2ffce404d728", - "Infiltration": "Factory", - "Position": { - "x": 2.363, - "y": -2.639, - "z": 49.415 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "789a1686-f35d-4dc4-b469-0687a4fad804", - "Infiltration": "Factory", - "Position": { - "x": 41.089, - "y": -2.639, - "z": -9.549 - }, - "Rotation": 343.771973, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "792180b4-c67c-45f6-a5d4-f3973c7e2c9b", - "Infiltration": "Factory", - "Position": { - "x": 45.914814, - "y": 0.11818099, - "z": -26.4251 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7ea1b4b8-a496-4bc0-bf61-e5ba4f3aa1fa", - "Infiltration": "Factory", - "Position": { - "x": 32.2320023, - "y": 0.064, - "z": -31.639 - }, - "Rotation": 303.679382, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "80532206-b2e1-4578-b559-99eae931a957", - "Infiltration": "Factory", - "Position": { - "x": 32.668, - "y": 0.064, - "z": -35.46 - }, - "Rotation": 41.47584, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8128ea83-0d4f-4e64-b109-5acc9e477b33", - "Infiltration": "Factory", - "Position": { - "x": -4.302, - "y": -2.598, - "z": 14.318 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "824c7aed-9a71-4158-91e4-a153c42bbddc", - "Infiltration": "Factory", - "Position": { - "x": 47.3188133, - "y": 0.11818099, - "z": -25.6161 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8429bed9-52e2-4731-a425-4912db8529a9", - "Infiltration": "Factory", - "Position": { - "x": 58.4149971, - "y": 0.261, - "z": 52.6900024 - }, - "Rotation": 178.765686, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "85d68e69-87f9-4702-aa92-1d652dc47cf8", - "Infiltration": "Factory", - "Position": { - "x": 3.99100018, - "y": -2.639, - "z": 50.653 - }, - "Rotation": 201.047623, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "867576c4-1152-48ad-80bf-a802d7318379", - "Infiltration": "Factory", - "Position": { - "x": -44.013, - "y": 1.41200006, - "z": 50.136 - }, - "Rotation": 5.15359545, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 41.97 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "86ff84ac-edf7-4efd-9643-4bacc59073e7", - "Infiltration": "", - "Position": { - "x": -6.77, - "y": 0.17, - "z": 10.01 - }, - "Rotation": 327.8234, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8df78011-1568-4e66-99b8-5c4ed736b99a", - "Infiltration": "Factory", - "Position": { - "x": -19.1069984, - "y": 0.26000002, - "z": -43.166 - }, - "Rotation": 89.99994, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 41.97 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "90da8fb3-422a-46cd-b540-648cde8ee9f3", - "Infiltration": "", - "Position": { - "x": 23.83, - "y": -2.604, - "z": -30.66 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "91c08464-492f-443d-8632-54e01d6bdd20", - "Infiltration": "Factory", - "Position": { - "x": -1.06100035, - "y": -2.638, - "z": -7.05 - }, - "Rotation": 197.617111, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "91ec8f79-6cc4-422d-966f-4cd6a02d5a87", - "Infiltration": "Factory", - "Position": { - "x": 8.5, - "y": 0.04, - "z": -43.579998 - }, - "Rotation": 8.130259, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "92822146-7c98-4570-8bde-8d0d042ae3cf", - "Infiltration": "Factory", - "Position": { - "x": 35.354, - "y": 0.064, - "z": -34.507 - }, - "Rotation": 283.0167, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9507dd40-370d-4d8f-994e-c8f3b456804e", - "Infiltration": "Factory", - "Position": { - "x": -34.0161858, - "y": 1.08018088, - "z": 48.5449 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "97998a75-baa4-4b03-ac1f-f86dfbf48d79", - "Infiltration": "Factory", - "Position": { - "x": -6.689, - "y": -2.598, - "z": 17.303 - }, - "Rotation": 100.67749, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "990aa5a0-d549-4479-8af2-a196ddb3bb35", - "Infiltration": "Factory", - "Position": { - "x": 18.637, - "y": -2.668999, - "z": -15.6589994 - }, - "Rotation": 58.42367, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "99840da7-52c4-4f5f-832e-c705e9d07572", - "Infiltration": "Factory", - "Position": { - "x": 50.914814, - "y": 0.0729999542, - "z": 24.8606472 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "99b05e61-8c54-42ad-bb6c-9bd30f38f1e6", - "Infiltration": "Factory", - "Position": { - "x": -34.0831871, - "y": 1.08018088, - "z": 47.0599 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9a858e10-3752-4543-9550-ddf6bc9b1891", - "Infiltration": "Factory", - "Position": { - "x": 39.642, - "y": -2.639, - "z": -9.06 - }, - "Rotation": 79.07639, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9dd99893-91c5-4e64-b808-bbe46852022a", - "Infiltration": "Factory", - "Position": { - "x": 60.093, - "y": 0.261, - "z": 52.592 - }, - "Rotation": 197.7287, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9e274f37-1c37-4c56-a763-f0753921744b", - "Infiltration": "Factory", - "Position": { - "x": 50.55981, - "y": 0.11818099, - "z": -23.1311 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9f14e22f-3971-4440-8f48-c597cc7d9166", - "Infiltration": "Factory", - "Position": { - "x": 30.26, - "y": 0.119, - "z": 21.699 - }, - "Rotation": 153.3458, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a3a76c4b-983f-4920-9c87-c2705283f5ac", - "Infiltration": "Factory", - "Position": { - "x": -0.737, - "y": -2.639, - "z": 50.57 - }, - "Rotation": 164.999939, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "a5465833-c434-44d5-9bba-1ce6d8488884", - "Infiltration": "", - "Position": { - "x": 36.043, - "y": 1.09, - "z": 38.348 - }, - "Rotation": 182.971283, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "a5a35da1-0545-4774-b5a0-194f4903a9de", - "Infiltration": "", - "Position": { - "x": -5.89, - "y": 0.08, - "z": -27.46 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a5c47219-1ebc-4254-90cb-934d6f9d4790", - "Infiltration": "Factory", - "Position": { - "x": -22.174, - "y": 2.729, - "z": 30.386 - }, - "Rotation": 89.99999, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a7c5ae7b-61a6-4f62-b975-46078fd443c6", - "Infiltration": "Factory", - "Position": { - "x": 50.1178131, - "y": 0.0901808739, - "z": -25.6021 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a8635306-f041-47fe-bf9b-1f1d528d5d5b", - "Infiltration": "Factory", - "Position": { - "x": 14.969, - "y": 4.571, - "z": 35.1550026 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "aacb1cf6-c980-47f0-8ed0-c72f1a236ec1", - "Infiltration": "Factory", - "Position": { - "x": 14.855999, - "y": 4.571, - "z": 37.77 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "acdd7189-0c4b-4be6-9e6e-57dbca0f6212", - "Infiltration": "Factory", - "Position": { - "x": 44.5968361, - "y": 0.07999992, - "z": 16.0203838 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ad0cbd99-02ee-4ff1-b799-6b50b8a3fa0f", - "Infiltration": "Factory", - "Position": { - "x": 72.0582047, - "y": 0.311, - "z": -73.8616 - }, - "Rotation": 356.430054, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "adee9078-b5a3-4f9e-b384-e984cbea15fc", - "Infiltration": "Factory", - "Position": { - "x": -44.2819977, - "y": 1.343, - "z": 46.326004 - }, - "Rotation": 171.581924, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ae4693d5-a309-4cbc-85db-ce8a59cf7ff4", - "Infiltration": "Factory", - "Position": { - "x": 34.375, - "y": 0.064, - "z": -33.252 - }, - "Rotation": 180.603928, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "af54940c-1d1c-4281-a44d-cb2cf46e436b", - "Infiltration": "Factory", - "Position": { - "x": 46.835186, - "y": 0.07800007, - "z": 17.4293537 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "af816038-d1bd-4fb1-8355-e5adcdd4556e", - "Infiltration": "Factory", - "Position": { - "x": 41.166, - "y": -2.639, - "z": -7.624 - }, - "Rotation": 223.2953, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "afacfed6-7a03-418b-9fca-420590d639c0", - "Infiltration": "Factory", - "Position": { - "x": 69.198204, - "y": 0.311, - "z": -73.4416046 - }, - "Rotation": 18.1724968, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b776e3ed-a02d-4141-8eba-35d4746547ca", - "Infiltration": "Factory", - "Position": { - "x": -42.916, - "y": 1.094, - "z": 39.102 - }, - "Rotation": 90, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "bbb167e6-da45-42ff-a113-20f605521b02", - "Infiltration": "", - "Position": { - "x": 31.75, - "y": 0.15318726, - "z": -0.3 - }, - "Rotation": 84.78185, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bc1a8dad-c186-4238-9340-90ac952050e6", - "Infiltration": "Factory", - "Position": { - "x": 48.08699, - "y": 0.1170001, - "z": 18.4364376 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bcae7a9f-8b2f-4a4c-9cb0-589d4a227c70", - "Infiltration": "Factory", - "Position": { - "x": 12.5600014, - "y": 1.21, - "z": 52.73 - }, - "Rotation": 123.00354, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "bd7f0d51-e000-4dc8-a58f-4bc9081039e3", - "Infiltration": "", - "Position": { - "x": -19.94, - "y": 1.11607242, - "z": 62.87 - }, - "Rotation": 157.772064, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "be7bf7f0-6892-4d55-b1af-85492250ea55", - "Infiltration": "Factory", - "Position": { - "x": -0.171000481, - "y": -3.858, - "z": -14.33 - }, - "Rotation": 298.784668, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 41.97 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "c151498d-5939-4451-a992-c3998d62061a", - "Infiltration": "", - "Position": { - "x": 22.37, - "y": 0.86, - "z": 4.33 - }, - "Rotation": 113.499405, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c249a42b-3b54-4680-ac4d-2c923ca4f530", - "Infiltration": "Factory", - "Position": { - "x": 28.743, - "y": 0.119, - "z": 17.499 - }, - "Rotation": 30.7684727, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c2d01ce0-e0e4-41af-8311-44dc5cf38a93", - "Infiltration": "Factory", - "Position": { - "x": -6.47099972, - "y": -2.598, - "z": 15.79 - }, - "Rotation": 64.0924149, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c3ba287a-9bea-4c28-81a5-650df99b2798", - "Infiltration": "Factory", - "Position": { - "x": 44.4868126, - "y": 0.11818099, - "z": -26.6101 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c61cee41-a0f3-470d-9b83-01f2189705fc", - "Infiltration": "Factory", - "Position": { - "x": 38.839, - "y": -2.639, - "z": -7.702 - }, - "Rotation": 89.99995, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c671337f-e58f-4de6-a387-307d877954a3", - "Infiltration": "Factory", - "Position": { - "x": 14.018, - "y": 1.18999994, - "z": 58.119 - }, - "Rotation": 123.00354, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "c949937b-c669-41ab-a5d6-1f93e58d4af8", - "Infiltration": "", - "Position": { - "x": 26.467, - "y": -2.49, - "z": -34.414 - }, - "Rotation": 82.28416, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cbe988f1-2264-414f-b070-79434b27a4ca", - "Infiltration": "Factory", - "Position": { - "x": 58.204, - "y": -2.63900042, - "z": 6.1590004 - }, - "Rotation": 1.51046038, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "cca16615-941d-4b07-a88f-4064628c1581", - "Infiltration": "", - "Position": { - "x": 35.924, - "y": 4.55418539, - "z": 35.339 - }, - "Rotation": 56.28309, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d2b48374-53d1-45a7-a3d2-5e1fc58a8499", - "Infiltration": "Factory", - "Position": { - "x": 20.348999, - "y": -2.668999, - "z": -13.374 - }, - "Rotation": 199.173172, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "d2bb26d4-959f-478f-92ad-6adedf2dc512", - "Infiltration": "", - "Position": { - "x": 30.758, - "y": 0.26, - "z": 15.164 - }, - "Rotation": 184.842667, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d2bc609f-cfaf-421a-8a02-a535e2b25d35", - "Infiltration": "Factory", - "Position": { - "x": 52.18, - "y": 0.101000071, - "z": 23.4599972 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d2f072c1-9cdc-4d5e-9102-cd77d9edf626", - "Infiltration": "Factory", - "Position": { - "x": -33.998188, - "y": 1.08018088, - "z": 49.9939041 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d6564897-4b3e-4b7e-9b56-34cb3b9a235d", - "Infiltration": "Factory", - "Position": { - "x": 18.6309986, - "y": -2.668999, - "z": -13.999999 - }, - "Rotation": 119.999939, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d685da1e-6b1e-45fb-8e31-e3a42a382fed", - "Infiltration": "Factory", - "Position": { - "x": 50.7651863, - "y": 0.101000071, - "z": 18.0493526 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d7e47ba9-1862-4070-95de-9a9b2f0e46ff", - "Infiltration": "Factory", - "Position": { - "x": 44.33721, - "y": 0.102999926, - "z": 21.7640057 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d7fc05a2-a7d9-494a-af5c-e092bb560bb9", - "Infiltration": "Factory", - "Position": { - "x": 48.5268364, - "y": 0.102999926, - "z": 16.6403866 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "da289682-cef5-4ae6-94bb-a2b80705906e", - "Infiltration": "Factory", - "Position": { - "x": -35.81619, - "y": 1.08018088, - "z": 45.3069 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "de479fb9-789f-499b-ac6b-0530fab5235b", - "Infiltration": "", - "Position": { - "x": -32.087, - "y": -2.581647, - "z": 29.9733315 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e0f65b5b-c67b-4e15-a102-f92bbdf95f65", - "Infiltration": "Factory", - "Position": { - "x": 15.502, - "y": 4.571, - "z": 36.609 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e1be22a2-9bba-40b5-a546-3bf6268b60cf", - "Infiltration": "Factory", - "Position": { - "x": 57.079, - "y": -2.63900042, - "z": 7.11500025 - }, - "Rotation": 288.1994, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e1dbe2e4-626f-4205-b71e-5f640eb764ac", - "Infiltration": "Factory", - "Position": { - "x": 3.709, - "y": -2.639, - "z": 48.036 - }, - "Rotation": 344.457062, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e33e5a4b-4c9e-46f9-b1df-5e9281746f58", - "Infiltration": "Factory", - "Position": { - "x": 45.57, - "y": 0.05000019, - "z": 18.83 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e5cd7bad-0f60-4cc2-bdd9-8a8943232b01", - "Infiltration": "Factory", - "Position": { - "x": -22.174, - "y": 2.729, - "z": 29.192 - }, - "Rotation": 89.99999, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e60d8dce-ee35-4b30-9c3a-afddf4c5445e", - "Infiltration": "Factory", - "Position": { - "x": 13.76, - "y": 1.1, - "z": 54.64 - }, - "Rotation": 123.00354, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ea010f6f-4860-4339-b576-09439f8f4c3a", - "Infiltration": "Factory", - "Position": { - "x": -5.58, - "y": -2.598, - "z": 14.757 - }, - "Rotation": 33.10973, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "eb5c4efc-759f-4ff9-8a73-8cd3eb0eca03", - "Infiltration": "Factory", - "Position": { - "x": 55.517, - "y": -2.63900042, - "z": 6.433 - }, - "Rotation": 300.7341, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "efb39132-1eff-4655-8fb0-d795f8f98eb3", - "Infiltration": "Factory", - "Position": { - "x": 31.781, - "y": 0.119, - "z": 19.447 - }, - "Rotation": 271.344177, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f0864450-ffa8-4d7e-aa93-59ea6b218641", - "Infiltration": "Factory", - "Position": { - "x": -22.174, - "y": 2.729, - "z": 25.5719986 - }, - "Rotation": 89.99999, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f23f74fc-1c16-41b9-aeeb-0ca222222cbc", - "Infiltration": "Factory", - "Position": { - "x": -0.128999949, - "y": -2.639, - "z": 48.722 - }, - "Rotation": 50.8312836, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f248ad45-3889-4308-bd40-091b1f6a0492", - "Infiltration": "Factory", - "Position": { - "x": -35.4011879, - "y": 1.08018088, - "z": 46.4789047 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f3c6d9ee-ca4e-44ca-abdf-0622a8249f1d", - "Infiltration": "Factory", - "Position": { - "x": -22.174, - "y": 2.729, - "z": 31.529 - }, - "Rotation": 89.99999, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 41.97 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "f6276290-95d6-4d35-9b1a-53e1db1c08ec", - "Infiltration": "", - "Position": { - "x": 15, - "y": 0.1483535, - "z": 3.79 - }, - "Rotation": 232.964813, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f8efba5d-56be-4091-b537-c97e88b031f2", - "Infiltration": "Factory", - "Position": { - "x": 45.3103752, - "y": 0.0729999542, - "z": 24.5736217 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fca84a73-902f-4c3e-b0ce-05f4348d2e12", - "Infiltration": "Factory", - "Position": { - "x": 49.05881, - "y": 0.11818099, - "z": -23.5911 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "feea31cd-8a3f-43a5-839f-fd2276a2cce8", - "Infiltration": "Factory", - "Position": { - "x": 61.5259972, - "y": -2.63900042, - "z": 6.418 - }, - "Rotation": 24.9815483, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ff7de580-4ba2-4d00-bff0-13cb6717091c", - "Infiltration": "Factory", - "Position": { - "x": 47.8188133, - "y": 0.11818099, - "z": -24.2451 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30.1 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "ff9c3127-2acd-48fe-a635-b1ab99d0bfa7", - "Infiltration": "", - "Position": { - "x": 2.104, - "y": 1.10050392, - "z": 63.056 - }, - "Rotation": 257.797272, - "Sides": [ - "Savage" - ] - } - ], - "UnixDateTime": 1621511450, - "_Id": "55f2d3fd4bdc2d5f408b4567", - "doors": [], - "exit_access_time": 60, - "exit_count": 3, - "exit_time": 1, - "exits": [ - { - "Chance": 100, - "ChancePVE": 100, - "CountPVE": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationTimePVE": 10, - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Cellars", - "PlayersCount": 0, - "PlayersCountPVE": 0 - }, - { - "Chance": 100, - "ChancePVE": 100, - "CountPVE": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationTimePVE": 10, - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Gate 3", - "PlayersCount": 0, - "PlayersCountPVE": 0 - }, - { - "Chance": 100, - "ChancePVE": 100, - "CountPVE": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationTimePVE": 10, - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Gate 0", - "PlayersCount": 0, - "PlayersCountPVE": 0 - }, - { - "Chance": 100, - "ChancePVE": 100, - "CountPVE": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationTimePVE": 10, - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Gate m", - "PlayersCount": 0, - "PlayersCountPVE": 0 - }, - { - "Chance": 100, - "ChancePVE": 100, - "CountPVE": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationTimePVE": 10, - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Gate_o", - "PlayersCount": 0, - "PlayersCountPVE": 0 - } - ], - "filter_ex": [], - "limits": [ - { - "items": [ - "634959225289190e5e773b3b" - ], - "max": 4, - "min": 3 - } - ], - "matching_min_seconds": 45, - "maxItemCountInLocation": [ - { - "TemplateId": "634959225289190e5e773b3b", - "Value": 5 - } - ], - "sav_summon_seconds": 60, - "tmp_location_field_remove_me": 0, - "transits": [ - { - "activateAfterSec": 60, - "active": true, - "conditions": "FAC_TRANSIT_12_COND", - "description": "FAC_TRANSIT_12_DESC", - "id": 12, - "location": "Woods", - "name": "FAC_TRANSIT_12", - "target": "5704e3c2d2720bac5b8b4567", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": true, - "conditions": "FAC_TRANSIT_13_COND", - "description": "FAC_TRANSIT_13_DESC", - "id": 13, - "location": "bigmap", - "name": "FAC_TRANSIT_13", - "target": "56f40101d2720b2a4d8b45d6", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": true, - "conditions": "FAC_TRANSIT_14_COND", - "description": "FAC_TRANSIT_14_DESC", - "id": 14, - "location": "laboratory", - "name": "FAC_TRANSIT_14", - "target": "5b0fc42d86f7744a585f9105", - "time": 30 - } - ], - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 180, - "users_summon_seconds": 0, - "waves": [ - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "BotZone", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 0, - "slots_max": 2, - "slots_min": 1, - "time_max": 100, - "time_min": 40 - }, - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "BotZone", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 1, - "slots_max": 4, - "slots_min": 2, - "time_max": -1, - "time_min": -1 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "BotZone", - "WildSpawnType": "assault", - "isPlayers": true, - "number": 2, - "slots_max": 4, - "slots_min": 2, - "time_max": 300, - "time_min": 210 - }, - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "BotZone", - "WildSpawnType": "assault", - "isPlayers": true, - "number": 3, - "slots_max": 4, - "slots_min": 2, - "time_max": 350, - "time_min": 260 - }, - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "BotZone", - "WildSpawnType": "assault", - "isPlayers": true, - "number": 4, - "slots_max": 4, - "slots_min": 2, - "time_max": 500, - "time_min": 410 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "BotZone", - "WildSpawnType": "assault", - "isPlayers": true, - "number": 5, - "slots_max": 4, - "slots_min": 3, - "time_max": 510, - "time_min": 460 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "BotZone", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 6, - "slots_max": 3, - "slots_min": 1, - "time_max": 1500, - "time_min": 1200 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "BotZone", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 7, - "slots_max": 3, - "slots_min": 0, - "time_max": 1700, - "time_min": 1600 - } - ] -} diff --git a/project/assets/database/locations/factory4_day/looseLoot.json b/project/assets/database/locations/factory4_day/looseLoot.json deleted file mode 100644 index 1bbc0f87..00000000 --- a/project/assets/database/locations/factory4_day/looseLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4b4d9e2cf559f349c2030208e1cadb62e813149139154136c85baa109a66760c -size 11160635 diff --git a/project/assets/database/locations/factory4_day/staticAmmo.json b/project/assets/database/locations/factory4_day/staticAmmo.json deleted file mode 100644 index b78cca00..00000000 --- a/project/assets/database/locations/factory4_day/staticAmmo.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2c1be2f78fe0ffe0ecd5e81c491a2a4fa466395b312aeb5386d8345e32dcf314 -size 10816 diff --git a/project/assets/database/locations/factory4_day/staticContainers.json b/project/assets/database/locations/factory4_day/staticContainers.json deleted file mode 100644 index b9b3443c..00000000 --- a/project/assets/database/locations/factory4_day/staticContainers.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3f96068a30126f14604c6f7f900edc420f47d0f655e841c3f10cc3aebb77c7c9 -size 68624 diff --git a/project/assets/database/locations/factory4_day/staticLoot.json b/project/assets/database/locations/factory4_day/staticLoot.json deleted file mode 100644 index c7deca12..00000000 --- a/project/assets/database/locations/factory4_day/staticLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:358349332bb841c6028599fc015ddffee3d8d7fd428803eb76d469b960325885 -size 396966 diff --git a/project/assets/database/locations/factory4_day/statics.json b/project/assets/database/locations/factory4_day/statics.json deleted file mode 100644 index def584d7..00000000 --- a/project/assets/database/locations/factory4_day/statics.json +++ /dev/null @@ -1,559 +0,0 @@ -{ - "containersGroups": { - "bad_sportN1_2_factory": { - "minContainers": 6, - "maxContainers": 9 - }, - "MedKitN1_2_factory": { - "minContainers": 3, - "maxContainers": 5 - }, - "NearWithExit_2_factory": { - "minContainers": 4, - "maxContainers": 7 - }, - "Basment_scontainer_Weapon_box_01": { - "minContainers": 4, - "maxContainers": 6 - }, - "CaseN3_factory": { - "minContainers": 1, - "maxContainers": 3 - }, - "wb_Area_04": { - "minContainers": 3, - "maxContainers": 4 - }, - "terra_stock": { - "minContainers": 1, - "maxContainers": 2 - }, - "wb_Administration_office": { - "minContainers": 3, - "maxContainers": 4 - }, - "wb_Area_02": { - "minContainers": 4, - "maxContainers": 7 - }, - "wb_Area_01": { - "minContainers": 3, - "maxContainers": 6 - }, - "wb_Area_03": { - "minContainers": 3, - "maxContainers": 5 - }, - "ToolkitboxN1_2_factory": { - "minContainers": 7, - "maxContainers": 12 - }, - "scontainer_ammo_grenade_N14_2_factory": { - "minContainers": 4, - "maxContainers": 6 - } - }, - "containers": { - "container_City_SW_02_LexOs_blockpost_00024": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00031": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00006": { - "groupId": "" - }, - "Lootable_00000": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00130": { - "groupId": "" - }, - "Lootable_00002": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00036": { - "groupId": "" - }, - "Lootable_00009": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00032": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00029": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00030": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00028": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00027": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00038": { - "groupId": "" - }, - "Lootable_00008": { - "groupId": "" - }, - "Lootable_00007": { - "groupId": "" - }, - "Lootable_00005": { - "groupId": "" - }, - "Lootable_00006": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00034": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00033": { - "groupId": "" - }, - "container_Factory_Eugene_Temp_00002": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00035": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00106": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00124": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00125": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00122": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00037": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00120": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00119": { - "groupId": "" - }, - "container_Test_for_export_00000": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00089": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00108": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00102": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00094": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00040": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00111": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00098": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00073": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00095": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00088": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00091": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00129": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00004": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00092": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00020": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00075": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00018": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00077": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00115": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00087": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00147": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00127": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00126": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00069": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00110": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00128": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00134": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00076": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00090": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00113": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00019": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00105": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00097": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00104": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00086": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00131": { - "groupId": "" - }, - "container_ProfileEditor_00002": { - "groupId": "" - }, - "Lootable_00004": { - "groupId": "" - }, - "container_Factory_Eugene_Temp_00003": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00137": { - "groupId": "terra_stock" - }, - "container_Factory_Rework_DesignStuff_00148": { - "groupId": "terra_stock" - }, - "container_Factory_Rework_DesignStuff_00039": { - "groupId": "" - }, - "00012": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00099": { - "groupId": "MedKitN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00100": { - "groupId": "MedKitN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00023": { - "groupId": "MedKitN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00022": { - "groupId": "MedKitN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00114": { - "groupId": "MedKitN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00101": { - "groupId": "MedKitN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00021": { - "groupId": "MedKitN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00109": { - "groupId": "CaseN3_factory" - }, - "container_Factory_Rework_DesignStuff_00010": { - "groupId": "CaseN3_factory" - }, - "container_Factory_Rework_DesignStuff_00112": { - "groupId": "CaseN3_factory" - }, - "container_Factory_Rework_DesignStuff_00135": { - "groupId": "CaseN3_factory" - }, - "container_Factory_Rework_Background_00003": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00051": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00080": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00123": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00081": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00013": { - "groupId": "wb_Area_04" - }, - "container_Factory_Rework_DesignStuff_00139": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00052": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00060": { - "groupId": "wb_Area_03" - }, - "container_Factory_Rework_DesignStuff_00065": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00055": { - "groupId": "wb_Administration_office" - }, - "container_Factory_Rework_DesignStuff_00045": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00067": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00066": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00070": { - "groupId": "wb_Area_04" - }, - "container_Factory_Rework_DesignStuff_00015": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00012": { - "groupId": "wb_Area_04" - }, - "container_Factory_Rework_DesignStuff_00138": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00061": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00048": { - "groupId": "wb_Area_03" - }, - "container_Factory_Rework_DesignStuff_00146": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00016": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00025": { - "groupId": "wb_Area_03" - }, - "container_Factory_Rework_DesignStuff_00044": { - "groupId": "wb_Administration_office" - }, - "container_Factory_Rework_DesignStuff_00050": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00054": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00096": { - "groupId": "wb_Area_04" - }, - "container_Factory_Rework_Background_00001": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00121": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00049": { - "groupId": "weapon_box_N3_4_factory" - }, - "container_Factory_Rework_DesignStuff_00103": { - "groupId": "wb_Area_03" - }, - "container_Factory_Rework_Background_00000": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00064": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00046": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00107": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00047": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00132": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "Lootable_00003": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00145": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00053": { - "groupId": "wb_Area_03" - }, - "container_Factory_Rework_DesignStuff_00058": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00063": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00043": { - "groupId": "wb_Administration_office" - }, - "container_Factory_Rework_DesignStuff_00042": { - "groupId": "wb_Administration_office" - }, - "container_Factory_Rework_DesignStuff_00068": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00143": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00116": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00014": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00079": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00056": { - "groupId": "wb_Administration_office" - }, - "container_Factory_Rework_DesignStuff_00142": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00011": { - "groupId": "wb_Area_04" - }, - "container_Factory_Rework_DesignStuff_00062": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00024": { - "groupId": "wb_Area_03" - }, - "container_Factory_Rework_DesignStuff_00026": { - "groupId": "wb_Area_03" - }, - "container_Factory_Rework_DesignStuff_00144": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00078": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00117": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00082": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00071": { - "groupId": "wb_Area_04" - }, - "container_Factory_Rework_DesignStuff_00118": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00140": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00141": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00059": { - "groupId": "wb_Area_03" - }, - "container_Factory_Rework_DesignStuff_00085": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00072": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00084": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00041": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00017": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00009": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00083": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00057": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00093": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00133": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00001": { - "groupId": "NearWithExit_2_factory" - }, - "container_Factory_Rework_DesignStuff_00005": { - "groupId": "NearWithExit_2_factory" - }, - "container_Factory_Rework_DesignStuff_00008": { - "groupId": "NearWithExit_2_factory" - }, - "container_Factory_Rework_DesignStuff_00002": { - "groupId": "NearWithExit_2_factory" - }, - "container_Factory_Rework_DesignStuff_00074": { - "groupId": "NearWithExit_2_factory" - }, - "container_Factory_Rework_DesignStuff_00000": { - "groupId": "NearWithExit_2_factory" - }, - "container_Factory_Rework_DesignStuff_00003": { - "groupId": "NearWithExit_2_factory" - }, - "container_Factory_Rework_DesignStuff_00007": { - "groupId": "NearWithExit_2_factory" - }, - "container_Factory_Rework_DesignStuff_00136": { - "groupId": "NearWithExit_2_factory" - } - } -} \ No newline at end of file diff --git a/project/assets/database/locations/factory4_night/allExtracts.json b/project/assets/database/locations/factory4_night/allExtracts.json deleted file mode 100644 index ba0e469c..00000000 --- a/project/assets/database/locations/factory4_night/allExtracts.json +++ /dev/null @@ -1,186 +0,0 @@ -[ - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10.0, - "ExfiltrationTimePVE": 10.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Cellars", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10.0, - "ExfiltrationTimePVE": 10.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Gate 3", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10.0, - "ExfiltrationTimePVE": 10.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Gate 0", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10.0, - "ExfiltrationTimePVE": 10.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Gate m", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10.0, - "ExfiltrationTimePVE": 10.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Gate_o", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Gate 3", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Camera Bunker Door", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Office Window", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - } -] \ No newline at end of file diff --git a/project/assets/database/locations/factory4_night/base.json b/project/assets/database/locations/factory4_night/base.json deleted file mode 100644 index 48bb2bcf..00000000 --- a/project/assets/database/locations/factory4_night/base.json +++ /dev/null @@ -1,5148 +0,0 @@ -{ - "AccessKeys": [], - "AccessKeysPvE": [], - "Area": 0.9, - "AveragePlayTime": 15, - "AveragePlayerLevel": 15, - "Banners": [ - { - "id": "5464e0404bdc2d2a708b4567", - "pic": { - "path": "CONTENT/banners/banner_usec.jpg", - "rcid": "" - } - }, - { - "id": "5464e0454bdc2d06708b4567", - "pic": { - "path": "CONTENT/banners/banner_bear.jpg", - "rcid": "" - } - }, - { - "id": "5803a58524597710ca36fcb2", - "pic": { - "path": "CONTENT/banners/banner_terragroup.jpg", - "rcid": "" - } - }, - { - "id": "5807bfe124597742a92e0a4c", - "pic": { - "path": "CONTENT/banners/norvinskzone.jpg", - "rcid": "" - } - }, - { - "id": "5807c3f124597746bf2db2ce", - "pic": { - "path": "CONTENT/banners/banner_scav.jpg", - "rcid": "" - } - }, - { - "id": "5807be8924597742c603fa19", - "pic": { - "path": "CONTENT/banners/banner_tarkov.jpg", - "rcid": "" - } - }, - { - "id": "5805f617245977100b2c1f41", - "pic": { - "path": "CONTENT/banners/tglabs.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT/banners/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "64c0ad6af99768b777048f4e", - "pic": { - "path": "CONTENT/banners/banner_emissary.jpg", - "rcid": "" - } - } - ], - "BossLocationSpawn": [ - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "0", - "BossEscortDifficult": "normal", - "BossEscortType": "followerBully", - "BossName": "bossTagilla", - "BossPlayer": false, - "BossZone": "BotZone", - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve", - "regular" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 20, - "BossDifficult": "normal", - "BossEscortAmount": "2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossName": "sectantPriest", - "BossPlayer": false, - "BossZone": "BotZone", - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve", - "regular" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - } - ], - "BotAssault": 0, - "BotEasy": 0, - "BotHard": 0, - "BotImpossible": 0, - "BotLocationModifier": { - "AccuracySpeed": 1, - "AdditionalHostilitySettings": [ - { - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 75, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcBEAR", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - }, - { - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 90, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcUSEC", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - } - ], - "DistToActivate": 100, - "DistToActivatePvE": 100, - "DistToPersueAxemanCoef": 0.9, - "DistToSleep": 120, - "DistToSleepPvE": 120, - "GainSight": 1, - "KhorovodChance": 0, - "MagnetPower": 15, - "MarksmanAccuratyCoef": 1, - "MaxExfiltrationTime": 900, - "MinExfiltrationTime": 600, - "Scattering": 1, - "VisibleDistance": 1 - }, - "BotMarksman": 0, - "BotMax": 16, - "BotMaxPlayer": 0, - "BotMaxPvE": 22, - "BotMaxTimePlayer": 0, - "BotNormal": 0, - "BotSpawnCountStep": 3, - "BotSpawnPeriodCheck": 15, - "BotSpawnTimeOffMax": 0, - "BotSpawnTimeOffMin": 0, - "BotSpawnTimeOnMax": 0, - "BotSpawnTimeOnMin": 0, - "BotStart": 0, - "BotStartPlayer": 0, - "BotStop": 0, - "Description": "The industrial estate and facilities of the chemical plant No.16 that were rented out illegally to the TerraGroup company. ", - "DisabledForScav": false, - "DisabledScavExits": "Cellars,Gate 0", - "EnableCoop": true, - "Enabled": false, - "EscapeTimeLimit": 25, - "EscapeTimeLimitCoop": 15, - "EscapeTimeLimitPVE": 25, - "Events": { - "Halloween2024": { - "CrowdAttackBlockRadius": 100, - "CrowdAttackSpawnParams": [ - { - "Difficulty": "easy", - "Role": "infectedAssault", - "Weight": 30 - }, - { - "Difficulty": "normal", - "Role": "infectedAssault", - "Weight": 110 - }, - { - "Difficulty": "hard", - "Role": "infectedAssault", - "Weight": 40 - }, - { - "Difficulty": "easy", - "Role": "infectedPmc", - "Weight": 15 - }, - { - "Difficulty": "normal", - "Role": "infectedPmc", - "Weight": 55 - }, - { - "Difficulty": "hard", - "Role": "infectedPmc", - "Weight": 20 - }, - { - "Difficulty": "easy", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "easy", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedLaborant", - "Weight": 0 - } - ], - "CrowdCooldownPerPlayerSec": 300, - "CrowdsLimit": 2, - "InfectedLookCoeff": 2, - "InfectionPercentage": 0, - "MaxCrowdAttackSpawnLimit": 13, - "MinInfectionPercentage": 0, - "MinSpawnDistToPlayer": 40, - "TargetPointSearchRadiusLimit": 80, - "ZombieCallDeltaRadius": 20, - "ZombieCallPeriodSec": 1, - "ZombieCallRadiusLimit": 50, - "ZombieMultiplier": 5 - } - }, - "ForceOnlineRaidInPVE": false, - "GenerateLocalLootCache": true, - "GlobalContainerChanceModifier": 1, - "GlobalLootChanceModifier": 0.33, - "GlobalLootChanceModifierPvE": 0.5, - "IconX": 318, - "IconY": 359, - "Id": "factory4_night", - "Insurance": true, - "IsSecret": false, - "Locked": false, - "Loot": [], - "MatchMakerMinPlayersByWaitTime": [ - { - "minPlayers": 4, - "time": 60 - }, - { - "minPlayers": 3, - "time": 70 - }, - { - "minPlayers": 2, - "time": 120 - }, - { - "minPlayers": 1, - "time": 330 - } - ], - "MaxBotPerZone": 0, - "MaxCoopGroup": 6, - "MaxDistToFreePoint": 900, - "MaxPlayers": 6, - "MinDistToExitPoint": 30, - "MinDistToFreePoint": 10, - "MinMaxBots": [], - "MinPlayerLvlAccessKeys": 0, - "MinPlayers": 5, - "Name": "Factory", - "NewSpawn": false, - "NewSpawnForPlayers": false, - "NonWaveGroupScenario": { - "Chance": 50, - "Enabled": true, - "MaxToBeGroup": 3, - "MinToBeGroup": 2 - }, - "OcculsionCullingEnabled": true, - "OfflineNewSpawn": false, - "OfflineOldSpawn": true, - "OldSpawn": true, - "OpenZones": "", - "PlayersRequestCount": -1, - "PmcMaxPlayersInGroup": 5, - "Preview": { - "path": "", - "rcid": "" - }, - "RequiredPlayerLevelMax": 100, - "RequiredPlayerLevelMin": 0, - "Rules": "AvoidOwnPmc", - "SafeLocation": false, - "ScavMaxPlayersInGroup": 4, - "Scene": { - "path": "maps/factory_night_preset.bundle", - "rcid": "factory_night.scenespreset.asset" - }, - "SpawnPointParams": [ - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0246436c-7d69-4036-999d-ebcb956970b5", - "Infiltration": "Factory", - "Position": { - "x": -45.3968, - "y": 0.2904, - "z": 5.5814 - }, - "Rotation": 64.50763, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "02e4bb08-990a-487c-a832-5a04582891d4", - "Infiltration": "Factory", - "Position": { - "x": 51.1948128, - "y": 0.0901808739, - "z": -25.5231 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "03526917-c391-4233-ab31-89f70621c9d4", - "Infiltration": "Factory", - "Position": { - "x": -34.21619, - "y": 1.08018088, - "z": 46.2559052 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "03a779de-ef2d-43e3-a4f3-fdcfed474f05", - "Infiltration": "", - "Position": { - "x": 13.78, - "y": -2.291, - "z": -21.65 - }, - "Rotation": 81.2727051, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "05e75eb3-eb43-46c6-94d3-59e1e9ba4435", - "Infiltration": "Factory", - "Position": { - "x": 11.22, - "y": 0.04, - "z": -42.1099968 - }, - "Rotation": 150.141159, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0a8181f7-c8f0-4db1-8eb2-932dfb3545f3", - "Infiltration": "Factory", - "Position": { - "x": 42.433, - "y": -2.639, - "z": -8.306 - }, - "Rotation": 262.378082, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0a92f51c-52b4-4e76-b839-f7ce82f2b36b", - "Infiltration": "Factory", - "Position": { - "x": 56.864, - "y": 0.261, - "z": 52.568 - }, - "Rotation": 159.0315, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0e95dd99-d6b7-4562-9813-74d4da9aaf6f", - "Infiltration": "Factory", - "Position": { - "x": 49.5, - "y": 0.0729999542, - "z": 19.4500027 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "105e5c93-2399-4054-b31d-ec981a66491f", - "Infiltration": "Factory", - "Position": { - "x": 46.57556, - "y": 0.101000071, - "z": 23.17298 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "120a0777-e825-4de7-a855-c3eaa8eba46b", - "Infiltration": "Factory", - "Position": { - "x": -43.8128, - "y": 0.2904, - "z": 6.7404 - }, - "Rotation": 90.74365, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "13883982-2ab8-4dd5-a9b4-45e2c6d8e1cc", - "Infiltration": "Factory", - "Position": { - "x": 12.595, - "y": 0.04, - "z": -42.522 - }, - "Rotation": 239.798431, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "184cc4d8-9007-4769-9798-8e354e9229ec", - "Infiltration": "Factory", - "Position": { - "x": -32.88419, - "y": 1.15018082, - "z": 47.0939026 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1a5819f2-ff42-4632-af5e-fe5ea8f886fc", - "Infiltration": "Factory", - "Position": { - "x": 58.1779976, - "y": 0.261, - "z": 51.283 - }, - "Rotation": 174.141357, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1c8f1067-d5df-401c-b05a-3c2c6b36ab9a", - "Infiltration": "Factory", - "Position": { - "x": 15.7, - "y": 4.571, - "z": 38.976 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1d42b19c-7a5b-4684-9689-b801a89e041c", - "Infiltration": "Factory", - "Position": { - "x": -33.0051842, - "y": 1.08018088, - "z": 46.6718979 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1facfcfc-9ee5-4638-83b3-117fce7b3303", - "Infiltration": "Factory", - "Position": { - "x": -46.6908, - "y": 0.2904, - "z": 8.3904 - }, - "Rotation": 103.706047, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "22a7740a-5a91-4bca-af36-668342522b42", - "Infiltration": "Factory", - "Position": { - "x": 70.75821, - "y": 0.311, - "z": -72.8016052 - }, - "Rotation": 356.430054, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 41.97 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "2355be95-341b-46db-90fd-6a383e286e5c", - "Infiltration": "", - "Position": { - "x": -20.756, - "y": 0.166, - "z": 22.769 - }, - "Rotation": 101.387489, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2497205e-6fc4-49cd-a1e3-f46c780e214f", - "Infiltration": "Factory", - "Position": { - "x": 31.624, - "y": 0.119, - "z": 18.284 - }, - "Rotation": 281.606659, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "27da5013-1a81-42db-a71f-312a557af54a", - "Infiltration": "Factory", - "Position": { - "x": -35.4081841, - "y": 1.08018088, - "z": 48.8108978 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2875ed6d-0a92-4473-b641-0616a69f6388", - "Infiltration": "Factory", - "Position": { - "x": 49.989624, - "y": 0.0599999428, - "z": 15.7763767 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2984a7ec-f10b-42a8-b466-554f37f9ea3e", - "Infiltration": "Factory", - "Position": { - "x": 43.8973656, - "y": 0.1170001, - "z": 23.56006 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2a1f1b80-72be-444d-9d8d-5f645a3fc019", - "Infiltration": "Factory", - "Position": { - "x": 32.272, - "y": 0.064, - "z": -34.013 - }, - "Rotation": 100.290321, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2a5aad92-b5f9-40c0-a380-460247300227", - "Infiltration": "Factory", - "Position": { - "x": 57.944, - "y": 0.261, - "z": 49.646 - }, - "Rotation": 174.141357, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "2dcddca6-9bd7-4d57-b57d-4c013342190d", - "Infiltration": "", - "Position": { - "x": -19.19, - "y": -3.78, - "z": -4.91 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2e1843a1-fd2a-4ccd-8b38-747c1a70f228", - "Infiltration": "Factory", - "Position": { - "x": -16.91, - "y": 0.294, - "z": -39.428 - }, - "Rotation": 270, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2eed18b6-9fbb-40de-979f-985f203f251e", - "Infiltration": "Factory", - "Position": { - "x": -42.4368, - "y": 0.2904, - "z": 7.44339943 - }, - "Rotation": 83.8970261, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "30edcdf0-73e0-4ab5-a9e7-4d24a9a83aa9", - "Infiltration": "Factory", - "Position": { - "x": 27.775, - "y": 0.119, - "z": 20.567 - }, - "Rotation": 121.344116, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "336d3c25-9f38-475f-8eb9-db6393f06b6c", - "Infiltration": "Factory", - "Position": { - "x": 71.73021, - "y": 0.311, - "z": -71.4116 - }, - "Rotation": 356.430054, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "35e7edfa-5d6c-4512-b3f0-ebb823e076de", - "Infiltration": "Factory", - "Position": { - "x": 49.94165, - "y": 0.102999926, - "z": 22.0510311 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "38a8fe02-f871-4b79-91e5-69c2c68d1bbc", - "Infiltration": "Factory", - "Position": { - "x": -16.984, - "y": 0.26700002, - "z": -41.3249969 - }, - "Rotation": 270, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3906ac26-47d3-4602-8783-049633778a29", - "Infiltration": "Factory", - "Position": { - "x": 14.636, - "y": 4.571, - "z": 39.737 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3bcd754a-b299-4d63-9d7f-e4d05c2f13e3", - "Infiltration": "Factory", - "Position": { - "x": -22.174, - "y": 2.729, - "z": 23.772 - }, - "Rotation": 89.99999, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3dd5759f-3764-491f-be62-82f2db15a699", - "Infiltration": "Factory", - "Position": { - "x": 51.404438, - "y": 0.0599999428, - "z": 21.1870213 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3eed3347-ac2d-429b-870e-6e6bc076e05e", - "Infiltration": "Factory", - "Position": { - "x": 45.8, - "y": 0.0599999428, - "z": 20.9 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3f0277ba-5d1f-4e3d-b763-234a33b904e3", - "Infiltration": "Factory", - "Position": { - "x": 49.5018044, - "y": 0.1170001, - "z": 23.8470821 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "42c3f263-52c6-428c-b97f-6acd100ec669", - "Infiltration": "Factory", - "Position": { - "x": -3.28900051, - "y": -3.858, - "z": -17.514 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4393a80b-14da-4321-86c4-0d45ab6afa67", - "Infiltration": "Factory", - "Position": { - "x": 48.6368141, - "y": 0.11818099, - "z": -25.4841 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4755c538-4ee5-4125-8cd3-885787da7ad5", - "Infiltration": "Factory", - "Position": { - "x": 12.6300011, - "y": 1.797, - "z": 60.15 - }, - "Rotation": 88.5811157, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "47a23e13-9db9-4cc2-8da0-fcbc52d698d8", - "Infiltration": "Factory", - "Position": { - "x": -35.38319, - "y": 1.08018088, - "z": 50.6099 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4a4e5ee5-a314-4a78-939d-cf3c05818435", - "Infiltration": "Factory", - "Position": { - "x": -16.7849979, - "y": 0.312, - "z": -37.434 - }, - "Rotation": 246.299744, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4bc2255b-75b0-44a3-91ed-c1b35499cbc5", - "Infiltration": "Factory", - "Position": { - "x": 7.90300035, - "y": 0.04, - "z": -44.6099968 - }, - "Rotation": 195.357437, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "503cf951-8e80-4ca0-aa2d-993f71a6a4a6", - "Infiltration": "Factory", - "Position": { - "x": -44.191, - "y": 1.188, - "z": 48.4250031 - }, - "Rotation": 90, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "50560c89-4136-4cfb-b155-485519110c93", - "Infiltration": "Factory", - "Position": { - "x": -17.6909981, - "y": 0.291, - "z": -43.159996 - }, - "Rotation": 286.887238, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "57254982-c470-440d-911a-e8854f42398a", - "Infiltration": "Factory", - "Position": { - "x": -42.617, - "y": 1.279, - "z": 48.353 - }, - "Rotation": 90, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "58eb6051-b050-4ce0-b608-71759c5e05b2", - "Infiltration": "Factory", - "Position": { - "x": -35.45019, - "y": 1.08018088, - "z": 47.646904 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "595f96c9-dcf7-4b89-947c-6f5538176fe2", - "Infiltration": "Factory", - "Position": { - "x": 52.02281, - "y": 0.0901808739, - "z": -24.6441 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "5a2aaa7e-06d3-438b-a2ee-2781ed753d2d", - "Infiltration": "", - "Position": { - "x": 35.545, - "y": 8.231328, - "z": 36.41 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5be1a535-4865-433c-b645-33c7ff65bd94", - "Infiltration": "Factory", - "Position": { - "x": -46.2658, - "y": 0.2904, - "z": 7.04739952 - }, - "Rotation": 82.15895, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5f9f188b-8489-4c06-ae14-ba4ca2a46028", - "Infiltration": "Factory", - "Position": { - "x": 46.0596237, - "y": 0.03700018, - "z": 15.1563778 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "60b47eab-b2a6-4ba2-b30c-fea14a7169bf", - "Infiltration": "Factory", - "Position": { - "x": -5.918, - "y": -3.858, - "z": -14.1830006 - }, - "Rotation": 53.7435837, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "63f705ca-a0db-4f4f-8e50-20d5a97af053", - "Infiltration": "Factory", - "Position": { - "x": -0.09300041, - "y": -3.858, - "z": -12.227 - }, - "Rotation": 252.025253, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "6670b804-5f1a-45f1-a462-585cb8619d09", - "Infiltration": "", - "Position": { - "x": 8.07, - "y": 0.1, - "z": -8.61 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "67fb48f8-0359-458b-876c-2e4963cbd14e", - "Infiltration": "Factory", - "Position": { - "x": 21.4049988, - "y": -2.668999, - "z": -14.6159992 - }, - "Rotation": 255.000031, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "683f2734-6398-4b77-9bab-b87f3be35938", - "Infiltration": "Factory", - "Position": { - "x": 69.98521, - "y": 0.311, - "z": -71.3536 - }, - "Rotation": 356.430054, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "68ac9245-633b-4287-a999-2c3028fa8d45", - "Infiltration": "", - "Position": { - "x": 4.73, - "y": 0.01, - "z": -35.1 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "68f38db1-e55e-4170-9e79-1f9e34e8cdc5", - "Infiltration": "Factory", - "Position": { - "x": 44.15699, - "y": 0.0940001, - "z": 17.8164349 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6ce1f898-79ff-498e-8b52-fda05d7ee05d", - "Infiltration": "Factory", - "Position": { - "x": 59.516, - "y": -2.63900042, - "z": 6.828 - }, - "Rotation": 46.93951, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6d7bf2bb-6211-4495-8509-58ceadea72e0", - "Infiltration": "Factory", - "Position": { - "x": 9.994, - "y": 0.04, - "z": -42.204 - }, - "Rotation": 271.3531, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6d97a439-de10-42c5-99ef-6cf92e243aca", - "Infiltration": "Factory", - "Position": { - "x": 10.2300014, - "y": 1.14, - "z": 58.7600021 - }, - "Rotation": 88.5811157, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6ecc9492-5fbb-43d8-a0c0-8509fa39eb1d", - "Infiltration": "Factory", - "Position": { - "x": 20.198, - "y": -2.668999, - "z": -16.3809986 - }, - "Rotation": 347.009827, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "71c2ba1e-e226-47be-814f-d52ddd931603", - "Infiltration": "Factory", - "Position": { - "x": -2.81400013, - "y": -2.598, - "z": 18.476 - }, - "Rotation": 226.745529, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "74059b40-4072-495f-a02c-2ffce404d728", - "Infiltration": "Factory", - "Position": { - "x": 2.363, - "y": -2.639, - "z": 49.415 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "789a1686-f35d-4dc4-b469-0687a4fad804", - "Infiltration": "Factory", - "Position": { - "x": 41.089, - "y": -2.639, - "z": -9.549 - }, - "Rotation": 343.771973, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "792180b4-c67c-45f6-a5d4-f3973c7e2c9b", - "Infiltration": "Factory", - "Position": { - "x": 45.914814, - "y": 0.11818099, - "z": -26.4251 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7ea1b4b8-a496-4bc0-bf61-e5ba4f3aa1fa", - "Infiltration": "Factory", - "Position": { - "x": 32.2320023, - "y": 0.064, - "z": -31.639 - }, - "Rotation": 303.679382, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "80532206-b2e1-4578-b559-99eae931a957", - "Infiltration": "Factory", - "Position": { - "x": 32.668, - "y": 0.064, - "z": -35.46 - }, - "Rotation": 41.47584, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8128ea83-0d4f-4e64-b109-5acc9e477b33", - "Infiltration": "Factory", - "Position": { - "x": -4.302, - "y": -2.598, - "z": 14.318 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "824c7aed-9a71-4158-91e4-a153c42bbddc", - "Infiltration": "Factory", - "Position": { - "x": 47.3188133, - "y": 0.11818099, - "z": -25.6161 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8429bed9-52e2-4731-a425-4912db8529a9", - "Infiltration": "Factory", - "Position": { - "x": 58.4149971, - "y": 0.261, - "z": 52.6900024 - }, - "Rotation": 178.765686, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "85d68e69-87f9-4702-aa92-1d652dc47cf8", - "Infiltration": "Factory", - "Position": { - "x": 3.99100018, - "y": -2.639, - "z": 50.653 - }, - "Rotation": 201.047623, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "867576c4-1152-48ad-80bf-a802d7318379", - "Infiltration": "Factory", - "Position": { - "x": -44.013, - "y": 1.41200006, - "z": 50.136 - }, - "Rotation": 5.15359545, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 41.97 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "86ff84ac-edf7-4efd-9643-4bacc59073e7", - "Infiltration": "", - "Position": { - "x": -6.77, - "y": 0.17, - "z": 10.01 - }, - "Rotation": 327.8234, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8df78011-1568-4e66-99b8-5c4ed736b99a", - "Infiltration": "Factory", - "Position": { - "x": -19.1069984, - "y": 0.26000002, - "z": -43.166 - }, - "Rotation": 89.99994, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 41.97 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "90da8fb3-422a-46cd-b540-648cde8ee9f3", - "Infiltration": "", - "Position": { - "x": 23.83, - "y": -2.604, - "z": -30.66 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "91c08464-492f-443d-8632-54e01d6bdd20", - "Infiltration": "Factory", - "Position": { - "x": -1.06100035, - "y": -2.638, - "z": -7.05 - }, - "Rotation": 197.617111, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "91ec8f79-6cc4-422d-966f-4cd6a02d5a87", - "Infiltration": "Factory", - "Position": { - "x": 8.5, - "y": 0.04, - "z": -43.579998 - }, - "Rotation": 8.130259, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "92822146-7c98-4570-8bde-8d0d042ae3cf", - "Infiltration": "Factory", - "Position": { - "x": 35.354, - "y": 0.064, - "z": -34.507 - }, - "Rotation": 283.0167, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9507dd40-370d-4d8f-994e-c8f3b456804e", - "Infiltration": "Factory", - "Position": { - "x": -34.0161858, - "y": 1.08018088, - "z": 48.5449 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "97998a75-baa4-4b03-ac1f-f86dfbf48d79", - "Infiltration": "Factory", - "Position": { - "x": -6.689, - "y": -2.598, - "z": 17.303 - }, - "Rotation": 100.67749, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "990aa5a0-d549-4479-8af2-a196ddb3bb35", - "Infiltration": "Factory", - "Position": { - "x": 18.637, - "y": -2.668999, - "z": -15.6589994 - }, - "Rotation": 58.42367, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "99840da7-52c4-4f5f-832e-c705e9d07572", - "Infiltration": "Factory", - "Position": { - "x": 50.914814, - "y": 0.0729999542, - "z": 24.8606472 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "99b05e61-8c54-42ad-bb6c-9bd30f38f1e6", - "Infiltration": "Factory", - "Position": { - "x": -34.0831871, - "y": 1.08018088, - "z": 47.0599 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9a858e10-3752-4543-9550-ddf6bc9b1891", - "Infiltration": "Factory", - "Position": { - "x": 39.642, - "y": -2.639, - "z": -9.06 - }, - "Rotation": 79.07639, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9dd99893-91c5-4e64-b808-bbe46852022a", - "Infiltration": "Factory", - "Position": { - "x": 60.093, - "y": 0.261, - "z": 52.592 - }, - "Rotation": 197.7287, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9e274f37-1c37-4c56-a763-f0753921744b", - "Infiltration": "Factory", - "Position": { - "x": 50.55981, - "y": 0.11818099, - "z": -23.1311 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9f14e22f-3971-4440-8f48-c597cc7d9166", - "Infiltration": "Factory", - "Position": { - "x": 30.26, - "y": 0.119, - "z": 21.699 - }, - "Rotation": 153.3458, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a3a76c4b-983f-4920-9c87-c2705283f5ac", - "Infiltration": "Factory", - "Position": { - "x": -0.737, - "y": -2.639, - "z": 50.57 - }, - "Rotation": 164.999939, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "a5465833-c434-44d5-9bba-1ce6d8488884", - "Infiltration": "", - "Position": { - "x": 36.043, - "y": 1.09, - "z": 38.348 - }, - "Rotation": 182.971283, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "a5a35da1-0545-4774-b5a0-194f4903a9de", - "Infiltration": "", - "Position": { - "x": -5.89, - "y": 0.08, - "z": -27.46 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a5c47219-1ebc-4254-90cb-934d6f9d4790", - "Infiltration": "Factory", - "Position": { - "x": -22.174, - "y": 2.729, - "z": 30.386 - }, - "Rotation": 89.99999, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a7c5ae7b-61a6-4f62-b975-46078fd443c6", - "Infiltration": "Factory", - "Position": { - "x": 50.1178131, - "y": 0.0901808739, - "z": -25.6021 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a8635306-f041-47fe-bf9b-1f1d528d5d5b", - "Infiltration": "Factory", - "Position": { - "x": 14.969, - "y": 4.571, - "z": 35.1550026 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "aacb1cf6-c980-47f0-8ed0-c72f1a236ec1", - "Infiltration": "Factory", - "Position": { - "x": 14.855999, - "y": 4.571, - "z": 37.77 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "acdd7189-0c4b-4be6-9e6e-57dbca0f6212", - "Infiltration": "Factory", - "Position": { - "x": 44.5968361, - "y": 0.07999992, - "z": 16.0203838 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ad0cbd99-02ee-4ff1-b799-6b50b8a3fa0f", - "Infiltration": "Factory", - "Position": { - "x": 72.0582047, - "y": 0.311, - "z": -73.8616 - }, - "Rotation": 356.430054, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "adee9078-b5a3-4f9e-b384-e984cbea15fc", - "Infiltration": "Factory", - "Position": { - "x": -44.2819977, - "y": 1.343, - "z": 46.326004 - }, - "Rotation": 171.581924, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ae4693d5-a309-4cbc-85db-ce8a59cf7ff4", - "Infiltration": "Factory", - "Position": { - "x": 34.375, - "y": 0.064, - "z": -33.252 - }, - "Rotation": 180.603928, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "af54940c-1d1c-4281-a44d-cb2cf46e436b", - "Infiltration": "Factory", - "Position": { - "x": 46.835186, - "y": 0.07800007, - "z": 17.4293537 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "af816038-d1bd-4fb1-8355-e5adcdd4556e", - "Infiltration": "Factory", - "Position": { - "x": 41.166, - "y": -2.639, - "z": -7.624 - }, - "Rotation": 223.2953, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "afacfed6-7a03-418b-9fca-420590d639c0", - "Infiltration": "Factory", - "Position": { - "x": 69.198204, - "y": 0.311, - "z": -73.4416046 - }, - "Rotation": 18.1724968, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b776e3ed-a02d-4141-8eba-35d4746547ca", - "Infiltration": "Factory", - "Position": { - "x": -42.916, - "y": 1.094, - "z": 39.102 - }, - "Rotation": 90, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "bbb167e6-da45-42ff-a113-20f605521b02", - "Infiltration": "", - "Position": { - "x": 31.75, - "y": 0.15318726, - "z": -0.3 - }, - "Rotation": 84.78185, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bc1a8dad-c186-4238-9340-90ac952050e6", - "Infiltration": "Factory", - "Position": { - "x": 48.08699, - "y": 0.1170001, - "z": 18.4364376 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bcae7a9f-8b2f-4a4c-9cb0-589d4a227c70", - "Infiltration": "Factory", - "Position": { - "x": 12.5600014, - "y": 1.21, - "z": 52.73 - }, - "Rotation": 123.00354, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "bd7f0d51-e000-4dc8-a58f-4bc9081039e3", - "Infiltration": "", - "Position": { - "x": -19.94, - "y": 1.11607242, - "z": 62.87 - }, - "Rotation": 157.772064, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "be7bf7f0-6892-4d55-b1af-85492250ea55", - "Infiltration": "Factory", - "Position": { - "x": -0.171000481, - "y": -3.858, - "z": -14.33 - }, - "Rotation": 298.784668, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 41.97 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "c151498d-5939-4451-a992-c3998d62061a", - "Infiltration": "", - "Position": { - "x": 22.37, - "y": 0.86, - "z": 4.33 - }, - "Rotation": 113.499405, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c249a42b-3b54-4680-ac4d-2c923ca4f530", - "Infiltration": "Factory", - "Position": { - "x": 28.743, - "y": 0.119, - "z": 17.499 - }, - "Rotation": 30.7684727, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c2d01ce0-e0e4-41af-8311-44dc5cf38a93", - "Infiltration": "Factory", - "Position": { - "x": -6.47099972, - "y": -2.598, - "z": 15.79 - }, - "Rotation": 64.0924149, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c3ba287a-9bea-4c28-81a5-650df99b2798", - "Infiltration": "Factory", - "Position": { - "x": 44.4868126, - "y": 0.11818099, - "z": -26.6101 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c61cee41-a0f3-470d-9b83-01f2189705fc", - "Infiltration": "Factory", - "Position": { - "x": 38.839, - "y": -2.639, - "z": -7.702 - }, - "Rotation": 89.99995, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c671337f-e58f-4de6-a387-307d877954a3", - "Infiltration": "Factory", - "Position": { - "x": 14.018, - "y": 1.18999994, - "z": 58.119 - }, - "Rotation": 123.00354, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "c949937b-c669-41ab-a5d6-1f93e58d4af8", - "Infiltration": "", - "Position": { - "x": 26.467, - "y": -2.49, - "z": -34.414 - }, - "Rotation": 82.28416, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cbe988f1-2264-414f-b070-79434b27a4ca", - "Infiltration": "Factory", - "Position": { - "x": 58.204, - "y": -2.63900042, - "z": 6.1590004 - }, - "Rotation": 1.51046038, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "cca16615-941d-4b07-a88f-4064628c1581", - "Infiltration": "", - "Position": { - "x": 35.924, - "y": 4.55418539, - "z": 35.339 - }, - "Rotation": 56.28309, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d2b48374-53d1-45a7-a3d2-5e1fc58a8499", - "Infiltration": "Factory", - "Position": { - "x": 20.348999, - "y": -2.668999, - "z": -13.374 - }, - "Rotation": 199.173172, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 21.1 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "d2bb26d4-959f-478f-92ad-6adedf2dc512", - "Infiltration": "", - "Position": { - "x": 30.758, - "y": 0.26, - "z": 15.164 - }, - "Rotation": 184.842667, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d2bc609f-cfaf-421a-8a02-a535e2b25d35", - "Infiltration": "Factory", - "Position": { - "x": 52.18, - "y": 0.101000071, - "z": 23.4599972 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d2f072c1-9cdc-4d5e-9102-cd77d9edf626", - "Infiltration": "Factory", - "Position": { - "x": -33.998188, - "y": 1.08018088, - "z": 49.9939041 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d6564897-4b3e-4b7e-9b56-34cb3b9a235d", - "Infiltration": "Factory", - "Position": { - "x": 18.6309986, - "y": -2.668999, - "z": -13.999999 - }, - "Rotation": 119.999939, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d685da1e-6b1e-45fb-8e31-e3a42a382fed", - "Infiltration": "Factory", - "Position": { - "x": 50.7651863, - "y": 0.101000071, - "z": 18.0493526 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d7e47ba9-1862-4070-95de-9a9b2f0e46ff", - "Infiltration": "Factory", - "Position": { - "x": 44.33721, - "y": 0.102999926, - "z": 21.7640057 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d7fc05a2-a7d9-494a-af5c-e092bb560bb9", - "Infiltration": "Factory", - "Position": { - "x": 48.5268364, - "y": 0.102999926, - "z": 16.6403866 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "da289682-cef5-4ae6-94bb-a2b80705906e", - "Infiltration": "Factory", - "Position": { - "x": -35.81619, - "y": 1.08018088, - "z": 45.3069 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "de479fb9-789f-499b-ac6b-0530fab5235b", - "Infiltration": "", - "Position": { - "x": -32.087, - "y": -2.581647, - "z": 29.9733315 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e0f65b5b-c67b-4e15-a102-f92bbdf95f65", - "Infiltration": "Factory", - "Position": { - "x": 15.502, - "y": 4.571, - "z": 36.609 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e1be22a2-9bba-40b5-a546-3bf6268b60cf", - "Infiltration": "Factory", - "Position": { - "x": 57.079, - "y": -2.63900042, - "z": 7.11500025 - }, - "Rotation": 288.1994, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e1dbe2e4-626f-4205-b71e-5f640eb764ac", - "Infiltration": "Factory", - "Position": { - "x": 3.709, - "y": -2.639, - "z": 48.036 - }, - "Rotation": 344.457062, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e33e5a4b-4c9e-46f9-b1df-5e9281746f58", - "Infiltration": "Factory", - "Position": { - "x": 45.57, - "y": 0.05000019, - "z": 18.83 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e5cd7bad-0f60-4cc2-bdd9-8a8943232b01", - "Infiltration": "Factory", - "Position": { - "x": -22.174, - "y": 2.729, - "z": 29.192 - }, - "Rotation": 89.99999, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e60d8dce-ee35-4b30-9c3a-afddf4c5445e", - "Infiltration": "Factory", - "Position": { - "x": 13.76, - "y": 1.1, - "z": 54.64 - }, - "Rotation": 123.00354, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ea010f6f-4860-4339-b576-09439f8f4c3a", - "Infiltration": "Factory", - "Position": { - "x": -5.58, - "y": -2.598, - "z": 14.757 - }, - "Rotation": 33.10973, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "eb5c4efc-759f-4ff9-8a73-8cd3eb0eca03", - "Infiltration": "Factory", - "Position": { - "x": 55.517, - "y": -2.63900042, - "z": 6.433 - }, - "Rotation": 300.7341, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "efb39132-1eff-4655-8fb0-d795f8f98eb3", - "Infiltration": "Factory", - "Position": { - "x": 31.781, - "y": 0.119, - "z": 19.447 - }, - "Rotation": 271.344177, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f0864450-ffa8-4d7e-aa93-59ea6b218641", - "Infiltration": "Factory", - "Position": { - "x": -22.174, - "y": 2.729, - "z": 25.5719986 - }, - "Rotation": 89.99999, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f23f74fc-1c16-41b9-aeeb-0ca222222cbc", - "Infiltration": "Factory", - "Position": { - "x": -0.128999949, - "y": -2.639, - "z": 48.722 - }, - "Rotation": 50.8312836, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f248ad45-3889-4308-bd40-091b1f6a0492", - "Infiltration": "Factory", - "Position": { - "x": -35.4011879, - "y": 1.08018088, - "z": 46.4789047 - }, - "Rotation": 96.73777, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f3c6d9ee-ca4e-44ca-abdf-0622a8249f1d", - "Infiltration": "Factory", - "Position": { - "x": -22.174, - "y": 2.729, - "z": 31.529 - }, - "Rotation": 89.99999, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 41.97 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "f6276290-95d6-4d35-9b1a-53e1db1c08ec", - "Infiltration": "", - "Position": { - "x": 15, - "y": 0.1483535, - "z": 3.79 - }, - "Rotation": 232.964813, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f8efba5d-56be-4091-b537-c97e88b031f2", - "Infiltration": "Factory", - "Position": { - "x": 45.3103752, - "y": 0.0729999542, - "z": 24.5736217 - }, - "Rotation": 269.225647, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fca84a73-902f-4c3e-b0ce-05f4348d2e12", - "Infiltration": "Factory", - "Position": { - "x": 49.05881, - "y": 0.11818099, - "z": -23.5911 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "feea31cd-8a3f-43a5-839f-fd2276a2cce8", - "Infiltration": "Factory", - "Position": { - "x": 61.5259972, - "y": -2.63900042, - "z": 6.418 - }, - "Rotation": 24.9815483, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ff7de580-4ba2-4d00-bff0-13cb6717091c", - "Infiltration": "Factory", - "Position": { - "x": 47.8188133, - "y": 0.11818099, - "z": -24.2451 - }, - "Rotation": 3.0047307, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30.1 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "ff9c3127-2acd-48fe-a635-b1ab99d0bfa7", - "Infiltration": "", - "Position": { - "x": 2.104, - "y": 1.10050392, - "z": 63.056 - }, - "Rotation": 257.797272, - "Sides": [ - "Savage" - ] - } - ], - "UnixDateTime": 1621511450, - "_Id": "59fc81d786f774390775787e", - "doors": [], - "exit_access_time": 60, - "exit_count": 3, - "exit_time": 1, - "exits": [ - { - "Chance": 100, - "ChancePVE": 100, - "CountPVE": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationTimePVE": 10, - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Cellars", - "PlayersCount": 0, - "PlayersCountPVE": 0 - }, - { - "Chance": 100, - "ChancePVE": 100, - "CountPVE": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationTimePVE": 10, - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Gate 3", - "PlayersCount": 0, - "PlayersCountPVE": 0 - }, - { - "Chance": 100, - "ChancePVE": 100, - "CountPVE": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationTimePVE": 10, - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Gate 0", - "PlayersCount": 0, - "PlayersCountPVE": 0 - }, - { - "Chance": 100, - "ChancePVE": 100, - "CountPVE": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationTimePVE": 10, - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Gate m", - "PlayersCount": 0, - "PlayersCountPVE": 0 - }, - { - "Chance": 100, - "ChancePVE": 100, - "CountPVE": 0, - "EntryPoints": "Factory", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationTimePVE": 10, - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Gate_o", - "PlayersCount": 0, - "PlayersCountPVE": 0 - } - ], - "filter_ex": [], - "limits": [], - "matching_min_seconds": 45, - "maxItemCountInLocation": [ - { - "TemplateId": "634959225289190e5e773b3b", - "Value": 6 - } - ], - "sav_summon_seconds": 60, - "tmp_location_field_remove_me": 0, - "transits": [ - { - "activateAfterSec": 60, - "active": true, - "conditions": "FAC_TRANSIT_12_COND", - "description": "FAC_TRANSIT_12_DESC", - "id": 12, - "location": "Woods", - "name": "FAC_TRANSIT_12", - "target": "5704e3c2d2720bac5b8b4567", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": true, - "conditions": "FAC_TRANSIT_13_COND", - "description": "FAC_TRANSIT_13_DESC", - "id": 13, - "location": "bigmap", - "name": "FAC_TRANSIT_13", - "target": "56f40101d2720b2a4d8b45d6", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": true, - "conditions": "FAC_TRANSIT_14_COND", - "description": "FAC_TRANSIT_14_DESC", - "id": 14, - "location": "laboratory", - "name": "FAC_TRANSIT_14", - "target": "5b0fc42d86f7744a585f9105", - "time": 30 - } - ], - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 180, - "users_summon_seconds": 0, - "waves": [ - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "BotZone", - "WildSpawnType": "assault", - "isPlayers": true, - "number": 0, - "slots_max": 4, - "slots_min": 2, - "time_max": 50, - "time_min": 15 - }, - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "BotZone", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 1, - "slots_max": 4, - "slots_min": 2, - "time_max": 5, - "time_min": 0 - }, - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "BotZone", - "WildSpawnType": "assault", - "isPlayers": true, - "number": 2, - "slots_max": 4, - "slots_min": 2, - "time_max": 300, - "time_min": 50 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "BotZone", - "WildSpawnType": "assault", - "isPlayers": true, - "number": 3, - "slots_max": 4, - "slots_min": 2, - "time_max": 350, - "time_min": 160 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "BotZone", - "WildSpawnType": "assault", - "isPlayers": true, - "number": 4, - "slots_max": 4, - "slots_min": 2, - "time_max": 500, - "time_min": 410 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "BotZone", - "WildSpawnType": "assault", - "isPlayers": true, - "number": 5, - "slots_max": 4, - "slots_min": 3, - "time_max": 510, - "time_min": 460 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "BotZone", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 6, - "slots_max": 2, - "slots_min": 1, - "time_max": 1500, - "time_min": 1400 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "BotZone", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 7, - "slots_max": 3, - "slots_min": 0, - "time_max": 1700, - "time_min": 1600 - } - ] -} diff --git a/project/assets/database/locations/factory4_night/looseLoot.json b/project/assets/database/locations/factory4_night/looseLoot.json deleted file mode 100644 index acab1ced..00000000 --- a/project/assets/database/locations/factory4_night/looseLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:062d20f0ee7506100768704a98e232840fbe44af8539c0c7dd63522cf6c9c503 -size 7813699 diff --git a/project/assets/database/locations/factory4_night/staticAmmo.json b/project/assets/database/locations/factory4_night/staticAmmo.json deleted file mode 100644 index c31c90c0..00000000 --- a/project/assets/database/locations/factory4_night/staticAmmo.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d445d03406076094a5c2053f14484173e81533fc8eb39938874a4d43317362f2 -size 10719 diff --git a/project/assets/database/locations/factory4_night/staticContainers.json b/project/assets/database/locations/factory4_night/staticContainers.json deleted file mode 100644 index c8910d5c..00000000 --- a/project/assets/database/locations/factory4_night/staticContainers.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:986c90dbbaa31d9a03252bcb854d94c007af4cfd7880b21ffa9d7d12c0ee25e1 -size 68616 diff --git a/project/assets/database/locations/factory4_night/staticLoot.json b/project/assets/database/locations/factory4_night/staticLoot.json deleted file mode 100644 index 9f16eef2..00000000 --- a/project/assets/database/locations/factory4_night/staticLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:254a04527a4287abf6910c0ce326517d7e7c6922958cb0ccc233d49f6a16a0e1 -size 388839 diff --git a/project/assets/database/locations/factory4_night/statics.json b/project/assets/database/locations/factory4_night/statics.json deleted file mode 100644 index def584d7..00000000 --- a/project/assets/database/locations/factory4_night/statics.json +++ /dev/null @@ -1,559 +0,0 @@ -{ - "containersGroups": { - "bad_sportN1_2_factory": { - "minContainers": 6, - "maxContainers": 9 - }, - "MedKitN1_2_factory": { - "minContainers": 3, - "maxContainers": 5 - }, - "NearWithExit_2_factory": { - "minContainers": 4, - "maxContainers": 7 - }, - "Basment_scontainer_Weapon_box_01": { - "minContainers": 4, - "maxContainers": 6 - }, - "CaseN3_factory": { - "minContainers": 1, - "maxContainers": 3 - }, - "wb_Area_04": { - "minContainers": 3, - "maxContainers": 4 - }, - "terra_stock": { - "minContainers": 1, - "maxContainers": 2 - }, - "wb_Administration_office": { - "minContainers": 3, - "maxContainers": 4 - }, - "wb_Area_02": { - "minContainers": 4, - "maxContainers": 7 - }, - "wb_Area_01": { - "minContainers": 3, - "maxContainers": 6 - }, - "wb_Area_03": { - "minContainers": 3, - "maxContainers": 5 - }, - "ToolkitboxN1_2_factory": { - "minContainers": 7, - "maxContainers": 12 - }, - "scontainer_ammo_grenade_N14_2_factory": { - "minContainers": 4, - "maxContainers": 6 - } - }, - "containers": { - "container_City_SW_02_LexOs_blockpost_00024": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00031": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00006": { - "groupId": "" - }, - "Lootable_00000": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00130": { - "groupId": "" - }, - "Lootable_00002": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00036": { - "groupId": "" - }, - "Lootable_00009": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00032": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00029": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00030": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00028": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00027": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00038": { - "groupId": "" - }, - "Lootable_00008": { - "groupId": "" - }, - "Lootable_00007": { - "groupId": "" - }, - "Lootable_00005": { - "groupId": "" - }, - "Lootable_00006": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00034": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00033": { - "groupId": "" - }, - "container_Factory_Eugene_Temp_00002": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00035": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00106": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00124": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00125": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00122": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00037": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00120": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00119": { - "groupId": "" - }, - "container_Test_for_export_00000": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00089": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00108": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00102": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00094": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00040": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00111": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00098": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00073": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00095": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00088": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00091": { - "groupId": "bad_sportN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00129": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00004": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00092": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00020": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00075": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00018": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00077": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00115": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00087": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00147": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00127": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00126": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00069": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00110": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00128": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00134": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00076": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00090": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00113": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00019": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00105": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00097": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00104": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00086": { - "groupId": "ToolkitboxN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00131": { - "groupId": "" - }, - "container_ProfileEditor_00002": { - "groupId": "" - }, - "Lootable_00004": { - "groupId": "" - }, - "container_Factory_Eugene_Temp_00003": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00137": { - "groupId": "terra_stock" - }, - "container_Factory_Rework_DesignStuff_00148": { - "groupId": "terra_stock" - }, - "container_Factory_Rework_DesignStuff_00039": { - "groupId": "" - }, - "00012": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00099": { - "groupId": "MedKitN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00100": { - "groupId": "MedKitN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00023": { - "groupId": "MedKitN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00022": { - "groupId": "MedKitN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00114": { - "groupId": "MedKitN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00101": { - "groupId": "MedKitN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00021": { - "groupId": "MedKitN1_2_factory" - }, - "container_Factory_Rework_DesignStuff_00109": { - "groupId": "CaseN3_factory" - }, - "container_Factory_Rework_DesignStuff_00010": { - "groupId": "CaseN3_factory" - }, - "container_Factory_Rework_DesignStuff_00112": { - "groupId": "CaseN3_factory" - }, - "container_Factory_Rework_DesignStuff_00135": { - "groupId": "CaseN3_factory" - }, - "container_Factory_Rework_Background_00003": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00051": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00080": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00123": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00081": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00013": { - "groupId": "wb_Area_04" - }, - "container_Factory_Rework_DesignStuff_00139": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00052": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00060": { - "groupId": "wb_Area_03" - }, - "container_Factory_Rework_DesignStuff_00065": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00055": { - "groupId": "wb_Administration_office" - }, - "container_Factory_Rework_DesignStuff_00045": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00067": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00066": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00070": { - "groupId": "wb_Area_04" - }, - "container_Factory_Rework_DesignStuff_00015": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00012": { - "groupId": "wb_Area_04" - }, - "container_Factory_Rework_DesignStuff_00138": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00061": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00048": { - "groupId": "wb_Area_03" - }, - "container_Factory_Rework_DesignStuff_00146": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00016": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00025": { - "groupId": "wb_Area_03" - }, - "container_Factory_Rework_DesignStuff_00044": { - "groupId": "wb_Administration_office" - }, - "container_Factory_Rework_DesignStuff_00050": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00054": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00096": { - "groupId": "wb_Area_04" - }, - "container_Factory_Rework_Background_00001": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00121": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00049": { - "groupId": "weapon_box_N3_4_factory" - }, - "container_Factory_Rework_DesignStuff_00103": { - "groupId": "wb_Area_03" - }, - "container_Factory_Rework_Background_00000": { - "groupId": "" - }, - "container_Factory_Rework_DesignStuff_00064": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00046": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00107": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00047": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00132": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "Lootable_00003": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00145": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00053": { - "groupId": "wb_Area_03" - }, - "container_Factory_Rework_DesignStuff_00058": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00063": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00043": { - "groupId": "wb_Administration_office" - }, - "container_Factory_Rework_DesignStuff_00042": { - "groupId": "wb_Administration_office" - }, - "container_Factory_Rework_DesignStuff_00068": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00143": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00116": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00014": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00079": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00056": { - "groupId": "wb_Administration_office" - }, - "container_Factory_Rework_DesignStuff_00142": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00011": { - "groupId": "wb_Area_04" - }, - "container_Factory_Rework_DesignStuff_00062": { - "groupId": "wb_Area_02" - }, - "container_Factory_Rework_DesignStuff_00024": { - "groupId": "wb_Area_03" - }, - "container_Factory_Rework_DesignStuff_00026": { - "groupId": "wb_Area_03" - }, - "container_Factory_Rework_DesignStuff_00144": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00078": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00117": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00082": { - "groupId": "wb_Area_01" - }, - "container_Factory_Rework_DesignStuff_00071": { - "groupId": "wb_Area_04" - }, - "container_Factory_Rework_DesignStuff_00118": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00140": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00141": { - "groupId": "Basment_scontainer_Weapon_box_01" - }, - "container_Factory_Rework_DesignStuff_00059": { - "groupId": "wb_Area_03" - }, - "container_Factory_Rework_DesignStuff_00085": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00072": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00084": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00041": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00017": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00009": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00083": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00057": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00093": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00133": { - "groupId": "scontainer_ammo_grenade_N14_2_factory" - }, - "container_Factory_Rework_DesignStuff_00001": { - "groupId": "NearWithExit_2_factory" - }, - "container_Factory_Rework_DesignStuff_00005": { - "groupId": "NearWithExit_2_factory" - }, - "container_Factory_Rework_DesignStuff_00008": { - "groupId": "NearWithExit_2_factory" - }, - "container_Factory_Rework_DesignStuff_00002": { - "groupId": "NearWithExit_2_factory" - }, - "container_Factory_Rework_DesignStuff_00074": { - "groupId": "NearWithExit_2_factory" - }, - "container_Factory_Rework_DesignStuff_00000": { - "groupId": "NearWithExit_2_factory" - }, - "container_Factory_Rework_DesignStuff_00003": { - "groupId": "NearWithExit_2_factory" - }, - "container_Factory_Rework_DesignStuff_00007": { - "groupId": "NearWithExit_2_factory" - }, - "container_Factory_Rework_DesignStuff_00136": { - "groupId": "NearWithExit_2_factory" - } - } -} \ No newline at end of file diff --git a/project/assets/database/locations/hideout/base.json b/project/assets/database/locations/hideout/base.json deleted file mode 100644 index e23cce31..00000000 --- a/project/assets/database/locations/hideout/base.json +++ /dev/null @@ -1,173 +0,0 @@ -{ - "Enabled": false, - "EnableCoop": true, - "Locked": true, - "Name": "Hideout", - "Scene": { - "path": "maps/bunker_preset.bundle", - "rcid": "bunker.ScenesPreset.asset" - }, - "Area": 0, - "RequiredPlayerLevelMin": 1, - "RequiredPlayerLevelMax": 100, - "PmcMaxPlayersInGroup": 5, - "ScavMaxPlayersInGroup": 4, - "MinPlayers": 1, - "MaxPlayers": 10, - "MaxCoopGroup": 10, - "IconX": 0, - "IconY": 0, - "waves": [], - "limits": [], - "AveragePlayTime": 1000000, - "AveragePlayerLevel": 10, - "EscapeTimeLimit": 99999, - "EscapeTimeLimitCoop": 99999, - "Rules": "Normal", - "IsSecret": false, - "doors": [], - "MaxDistToFreePoint": 900, - "MinDistToFreePoint": 10, - "MaxBotPerZone": 0, - "OpenZones": "", - "OcculsionCullingEnabled": false, - "OldSpawn": true, - "OfflineOldSpawn": true, - "NewSpawn": false, - "OfflineNewSpawn": true, - "BotMax": 0, - "BotStart": 0, - "BotStartPlayer": 0, - "BotStop": 0, - "BotSpawnTimeOnMin": 0, - "BotSpawnTimeOnMax": 0, - "BotSpawnTimeOffMin": 0, - "BotSpawnTimeOffMax": 0, - "BotEasy": 0, - "BotNormal": 0, - "BotHard": 0, - "BotImpossible": 0, - "BotAssault": 0, - "BotMarksman": 0, - "DisabledScavExits": "", - "MinPlayerLvlAccessKeys": 0, - "AccessKeys": [], - "UnixDateTime": 1689772567, - "PlayersRequestCount": -1, - "NonWaveGroupScenario": { - "MinToBeGroup": 2, - "MaxToBeGroup": 3, - "Chance": 50, - "Enabled": false - }, - "BotSpawnCountStep": 3, - "BotSpawnPeriodCheck": 15, - "GlobalContainerChanceModifier": 1, - "MinMaxBots": [], - "BotLocationModifier": { - "AccuracySpeed": 1, - "Scattering": 1, - "GainSight": 1, - "MarksmanAccuratyCoef": 1, - "VisibleDistance": 0 - }, - "exits": [], - "DisabledForScav": false, - "SpawnPointParams": [{ - "Id": "f656a561-6524-49e2-90c0-1cbbece183ce", - "Position": { - "x": -5.8, - "y": 0.1, - "z": -5.4 - }, - "Rotation": 45.0000038, - "Sides": ["Usec"], - "Categories": ["Player", "Bot"], - "Infiltration": "", - "DelayToCanSpawnSec": 0.5, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 10 - } - }, - "BotZoneName": "" - }, { - "Id": "f92541a9-08ab-4c9e-957a-d802e143b705", - "Position": { - "x": -5.8, - "y": 0.1, - "z": -5.4 - }, - "Rotation": 45.0000038, - "Sides": ["All"], - "Categories": ["Player"], - "Infiltration": "Hideout", - "DelayToCanSpawnSec": 4, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 10 - } - }, - "BotZoneName": "" - }, { - "Id": "faf351a1-e5f5-4642-8ece-267508fdfea6", - "Position": { - "x": -5.8, - "y": 0.1, - "z": -5.4 - }, - "Rotation": 45.0000038, - "Sides": ["Bear"], - "Categories": ["Player", "Bot"], - "Infiltration": "", - "DelayToCanSpawnSec": 0.5, - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 10 - } - }, - "BotZoneName": "" - } - ], - "maxItemCountInLocation": [{ - "TemplateId": "604b47caa16c2359315ad047", - "Value": 0 - } - ], - "Id": "hideout", - "_Id": "599319c986f7740dca3070a6", - "Loot": [], - "Banners": [{ - "id": "5805f617245977100b2c1f41", - "pic": { - "path": "CONTENT/banners/tglabs.jpg", - "rcid": "" - } - }, { - "id": "5807be8924597742c603fa19", - "pic": { - "path": "CONTENT/banners/banner_tarkov.jpg", - "rcid": "" - } - } - ], - "BossLocationSpawn": [] -} diff --git a/project/assets/database/locations/interchange/allExtracts.json b/project/assets/database/locations/interchange/allExtracts.json deleted file mode 100644 index c3cfb0af..00000000 --- a/project/assets/database/locations/interchange/allExtracts.json +++ /dev/null @@ -1,186 +0,0 @@ -[ - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "MallNW", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "SE Exfil", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "MallSE", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "NW Exfil", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 50.0, - "ChancePVE": 50.0, - "Count": 5000, - "CountPve": 0, - "EntryPoints": "MallSE,MallNW", - "EventAvailable": false, - "ExfiltrationTime": 60.0, - "ExfiltrationTimePVE": 60.0, - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "PP Exfil", - "PassageRequirement": "TransferItem", - "PlayersCount": 4, - "PlayersCountPVE": 4, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Item", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "MallSE,MallNW", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "SharedTimer", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Interchange Cooperation", - "PassageRequirement": "ScavCooperation", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Cooperate", - "Side": "Coop" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "MallSE,MallNW", - "EventAvailable": false, - "ExfiltrationTime": 10.0, - "ExfiltrationTimePVE": 10.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Hole Exfill", - "PassageRequirement": "Empty", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "Backpack", - "RequirementTip": "EXFIL_INTERCHANGE_HOLE_TIP", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "MallSE,MallNW", - "EventAvailable": false, - "ExfiltrationTime": 3.0, - "ExfiltrationTimePVE": 3.0, - "ExfiltrationType": "Manual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Saferoom Exfil", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_INTERCHANGE_SAFEROOM_TIP", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "SE Exfil", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "NW Exfil", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - } -] \ No newline at end of file diff --git a/project/assets/database/locations/interchange/base.json b/project/assets/database/locations/interchange/base.json deleted file mode 100644 index 8a3058ce..00000000 --- a/project/assets/database/locations/interchange/base.json +++ /dev/null @@ -1,7574 +0,0 @@ -{ - "AccessKeys": [], - "AccessKeysPvE": [], - "AirdropParameters": [ - { - "AirdropPointDeactivateDistance": 100, - "MinPlayersCountToSpawnAirdrop": 6, - "PlaneAirdropChance": 0.2, - "PlaneAirdropCooldownMax": 900, - "PlaneAirdropCooldownMin": 800, - "PlaneAirdropEnd": 1800, - "PlaneAirdropMax": 1, - "PlaneAirdropStartMax": 900, - "PlaneAirdropStartMin": 300, - "UnsuccessfulTryPenalty": 600 - } - ], - "Area": 0, - "AveragePlayTime": 35, - "AveragePlayerLevel": 25, - "Banners": [ - { - "id": "5464e0404bdc2d2a708b4567", - "pic": { - "path": "CONTENT/banners/banner_usec.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT/banners/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "64c0acf85174e095610734a0", - "pic": { - "path": "CONTENT/banners/banner_sherpa.jpg", - "rcid": "" - } - } - ], - "BossLocationSpawn": [ - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "0", - "BossEscortDifficult": "normal", - "BossEscortType": "followerTagilla", - "BossName": "bossKilla", - "BossPlayer": false, - "BossZone": "ZoneCenterBot,ZoneCenter,ZoneOLI,ZoneIDEA,ZoneGoshan", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - } - ], - "BotAssault": 100, - "BotEasy": 10, - "BotHard": 40, - "BotImpossible": 0, - "BotLocationModifier": { - "AccuracySpeed": 1, - "AdditionalHostilitySettings": [ - { - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 75, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcBEAR", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - }, - { - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 90, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcUSEC", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - } - ], - "DistToActivate": 260, - "DistToActivatePvE": 260, - "DistToPersueAxemanCoef": 1, - "DistToSleep": 300, - "DistToSleepPvE": 300, - "GainSight": 1, - "KhorovodChance": 0, - "MarksmanAccuratyCoef": 1, - "MaxExfiltrationTime": 1800, - "MinExfiltrationTime": 1200, - "Scattering": 1, - "VisibleDistance": 1 - }, - "BotMarksman": 0, - "BotMax": 22, - "BotMaxPlayer": 10, - "BotMaxPvE": 30, - "BotMaxTimePlayer": 1000, - "BotNormal": 50, - "BotSpawnCountStep": 4, - "BotSpawnPeriodCheck": 15, - "BotSpawnTimeOffMax": 12, - "BotSpawnTimeOffMin": 10, - "BotSpawnTimeOnMax": 350, - "BotSpawnTimeOnMin": 340, - "BotStart": 20, - "BotStartPlayer": 200, - "BotStop": 2400, - "Description": "The South-Eastern highway interchange is a critical point in the transportation system of the city. Essentially, it is a strategical node connecting the port and harbour infrastructure with the industrial outskirts of Tarkov. ", - "DisabledForScav": false, - "DisabledScavExits": "scav_NW,scav_SE", - "EnableCoop": true, - "Enabled": true, - "EscapeTimeLimit": 40, - "EscapeTimeLimitCoop": 30, - "EscapeTimeLimitPVE": 40, - "Events": { - "Halloween2024": { - "CrowdAttackBlockRadius": 100, - "CrowdAttackSpawnParams": [ - { - "Difficulty": "easy", - "Role": "infectedAssault", - "Weight": 30 - }, - { - "Difficulty": "normal", - "Role": "infectedAssault", - "Weight": 110 - }, - { - "Difficulty": "hard", - "Role": "infectedAssault", - "Weight": 40 - }, - { - "Difficulty": "easy", - "Role": "infectedPmc", - "Weight": 15 - }, - { - "Difficulty": "normal", - "Role": "infectedPmc", - "Weight": 55 - }, - { - "Difficulty": "hard", - "Role": "infectedPmc", - "Weight": 20 - }, - { - "Difficulty": "easy", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "easy", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedLaborant", - "Weight": 0 - } - ], - "CrowdCooldownPerPlayerSec": 300, - "CrowdsLimit": 2, - "InfectedLookCoeff": 2, - "InfectionPercentage": 0, - "MaxCrowdAttackSpawnLimit": 18, - "MinInfectionPercentage": 0, - "MinSpawnDistToPlayer": 50, - "TargetPointSearchRadiusLimit": 200, - "ZombieCallDeltaRadius": 20, - "ZombieCallPeriodSec": 1, - "ZombieCallRadiusLimit": 125, - "ZombieMultiplier": 5 - } - }, - "ForceOnlineRaidInPVE": false, - "GenerateLocalLootCache": true, - "GlobalContainerChanceModifier": 1, - "GlobalLootChanceModifier": 0.35, - "GlobalLootChanceModifierPvE": 0.74, - "IconX": 660, - "IconY": 360, - "Id": "Interchange", - "Insurance": true, - "IsSecret": false, - "Locked": false, - "Loot": [], - "MatchMakerMinPlayersByWaitTime": [ - { - "minPlayers": 7, - "time": 60 - }, - { - "minPlayers": 6, - "time": 70 - }, - { - "minPlayers": 5, - "time": 120 - }, - { - "minPlayers": 4, - "time": 180 - }, - { - "minPlayers": 3, - "time": 250 - }, - { - "minPlayers": 2, - "time": 330 - }, - { - "minPlayers": 1, - "time": 420 - } - ], - "MaxBotPerZone": 2, - "MaxCoopGroup": 14, - "MaxDistToFreePoint": 170, - "MaxPlayers": 14, - "MinDistToExitPoint": 30, - "MinDistToFreePoint": 50, - "MinMaxBots": [], - "MinPlayerLvlAccessKeys": 0, - "MinPlayers": 10, - "Name": "Interchange", - "NewSpawn": true, - "NewSpawnForPlayers": true, - "NonWaveGroupScenario": { - "Chance": 50, - "Enabled": true, - "MaxToBeGroup": 3, - "MinToBeGroup": 2 - }, - "OcculsionCullingEnabled": true, - "OfflineNewSpawn": true, - "OfflineOldSpawn": true, - "OldSpawn": true, - "OpenZones": "ZoneCenter,ZoneCenterBot,ZoneOLI,ZoneIDEA,ZoneRoad,ZoneIDEAPark,ZoneGoshan,ZonePowerStation,ZoneTrucks,ZoneOLIPark", - "PlayersRequestCount": -1, - "PmcMaxPlayersInGroup": 5, - "Preview": { - "path": "", - "rcid": "" - }, - "RequiredPlayerLevelMax": 100, - "RequiredPlayerLevelMin": 0, - "Rules": "Normal", - "SafeLocation": false, - "ScavMaxPlayersInGroup": 4, - "Scene": { - "path": "maps/shopping_mall.bundle", - "rcid": "Shopping_Mall.ScenesPreset.asset" - }, - "SpawnPointParams": [ - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "019d9bd8-411d-49a6-84ca-727ffb38e57b", - "Infiltration": "MallSE", - "Position": { - "x": -182.890015, - "y": 21.4521942, - "z": 133.530029 - }, - "Rotation": 111.17, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCenter", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "01af651e-2974-468b-8626-9697d3f488cd", - "Infiltration": "", - "Position": { - "x": 59.119, - "y": 36.63006, - "z": -87.426 - }, - "Rotation": 57.2031174, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "02db875c-c2f1-4484-8546-b9a612a5b402", - "Infiltration": "MallNW", - "Position": { - "x": 108.755371, - "y": 21.3978081, - "z": -324.0263 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "03b999f1-ac1a-4c44-ad73-8ef61626863e", - "Infiltration": "MallSE", - "Position": { - "x": -337.663879, - "y": 21.4921951, - "z": 261.535522 - }, - "Rotation": 109.723984, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0547b0b3-d91c-4235-8bb7-09fa47d3c3b1", - "Infiltration": "MallSE", - "Position": { - "x": -252.88, - "y": 21.4521942, - "z": 57.73999 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "05b4f8d5-0947-49c1-8d70-634309ef7d5e", - "Infiltration": "MallNW", - "Position": { - "x": 110.48999, - "y": 20.0621948, - "z": -353.1999 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "06766669-aece-4c12-a0a5-9db4413ffad3", - "Infiltration": "MallSE", - "Position": { - "x": 6.73535156, - "y": 27.152813, - "z": -121.996338 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCenterBot", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "06e2c670-c4bf-4adb-8228-916bb8804679", - "Infiltration": "", - "Position": { - "x": 20.18, - "y": 36.6251869, - "z": -80.62 - }, - "Rotation": 53.03254, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "07256c53-7e8c-4ffb-8900-714a8b92e8af", - "Infiltration": "MallSE", - "Position": { - "x": -180.247314, - "y": 21.4178123, - "z": 144.455811 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGoshan", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "07aa3c3a-8edb-4fe3-8c05-891f8c8d68b0", - "Infiltration": "", - "Position": { - "x": -156.87001, - "y": 27.1199989, - "z": -36.4400024 - }, - "Rotation": 199.077713, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "09b578e9-c71f-439f-a015-ec2f4fc38b82", - "Infiltration": "MallSE", - "Position": { - "x": -203.93, - "y": 21.4521942, - "z": -77.8299561 - }, - "Rotation": 144.44, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "09f52cca-8554-40f2-9e03-1d084a6e542c", - "Infiltration": "MallNW", - "Position": { - "x": 367.557251, - "y": 16.8021927, - "z": -188.870728 - }, - "Rotation": 229.3703, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCenterBot", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "0bfbe3ee-1d22-40c5-bbda-b4232ebefd94", - "Infiltration": "", - "Position": { - "x": 24.0299988, - "y": 36.58, - "z": -38.05 - }, - "Rotation": 232.64743, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneOLI", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 40, - "Id": "0d31289d-ac77-4654-b222-fdb8137c130d", - "Infiltration": "", - "Position": { - "x": -87.519, - "y": 27.1000023, - "z": 140.036987 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0e691845-e6ba-4c32-8aff-4fd6b769e9a1", - "Infiltration": "MallNW", - "Position": { - "x": 234.22998, - "y": 19.8121948, - "z": -288.459961 - }, - "Rotation": 324.91, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "101c89e8-95fc-4104-bf60-09327bd7adc4", - "Infiltration": "MallNW", - "Position": { - "x": 109.5, - "y": 19.8521881, - "z": -356.49 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1042d3c7-d0f9-42ad-b85e-f085898735e4", - "Infiltration": "MallNW", - "Position": { - "x": 298.75, - "y": 21.6621857, - "z": -423.1501 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "12314b42-e8be-4232-875b-d411878214d9", - "Infiltration": "MallSE", - "Position": { - "x": -182.660034, - "y": 21.4521942, - "z": 135.73999 - }, - "Rotation": 111.17, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "137a2ff8-59c4-4a3d-8beb-870215366ee7", - "Infiltration": "MallNW", - "Position": { - "x": 149.890015, - "y": 20.0321884, - "z": -412.2599 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneTrucks", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 40, - "Id": "13e66fd5-878d-4b13-81ff-4dd18ac4fade", - "Infiltration": "", - "Position": { - "x": -163.34, - "y": 21.3653564, - "z": 160.96 - }, - "Rotation": 287.573242, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "14527c4f-0ab3-467d-8468-378f5a041b67", - "Infiltration": "MallNW", - "Position": { - "x": 149.489868, - "y": 19.482193, - "z": -408.87 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneOLI", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 12, - "DelayToCanSpawnSec": 40, - "Id": "1486b420-915d-49f3-8dac-cc81298a642e", - "Infiltration": "", - "Position": { - "x": -93.382, - "y": 27.1000023, - "z": 139.597992 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePowerStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 10, - "DelayToCanSpawnSec": 40, - "Id": "15089928-14c7-4d40-b8a5-f4a3f0a5a5af", - "Infiltration": "", - "Position": { - "x": -207.43, - "y": 21.3502846, - "z": -354.62 - }, - "Rotation": 97.6164246, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "161a1ffd-5982-4dfc-80ff-ff8e0fe85503", - "Infiltration": "MallSE", - "Position": { - "x": -198.599976, - "y": 25.11219, - "z": 273.88 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "162e983f-c31c-4923-863e-8f4f680cf93b", - "Infiltration": "MallNW", - "Position": { - "x": 108.050049, - "y": 20.142189, - "z": -355.359863 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "171a8a24-2255-4575-b5fc-fbc83bb2f3a4", - "Infiltration": "MallNW", - "Position": { - "x": 108.755371, - "y": 21.3978081, - "z": -324.0263 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneOLI", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 40, - "Id": "171f3674-8741-4ad0-b466-7053f19a5063", - "Infiltration": "", - "Position": { - "x": 70.7599945, - "y": 27.0864677, - "z": 170.909988 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "17f6bc8e-2843-4b8b-90c4-f9b1cffadce3", - "Infiltration": "MallSE", - "Position": { - "x": 0.171386719, - "y": 27.15981, - "z": -110.0863 - }, - "Rotation": 33.25722, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "187ca419-e5cc-4a30-886f-3606ea52caf7", - "Infiltration": "MallSE", - "Position": { - "x": -78.71997, - "y": 22.6621857, - "z": 288.949951 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZonePowerStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 10, - "DelayToCanSpawnSec": 40, - "Id": "19ed2800-5bad-4eb1-9145-c527df2fbbd7", - "Infiltration": "", - "Position": { - "x": -253.06, - "y": 21.4300022, - "z": -378.590027 - }, - "Rotation": 76.86639, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneIDEA", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 40, - "Id": "1a535c95-c1d4-4cfa-9d30-f79b089dec28", - "Infiltration": "", - "Position": { - "x": -55.034996, - "y": 27.12, - "z": -200.538 - }, - "Rotation": 248.358978, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1a64d7c0-9d68-496b-9461-78cf140ac306", - "Infiltration": "MallNW", - "Position": { - "x": -12.2346191, - "y": 27.152813, - "z": -126.716309 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1cb01370-1001-4d01-aec1-92cf162cbbc1", - "Infiltration": "MallSE", - "Position": { - "x": -178.169128, - "y": 21.4178123, - "z": 135.509155 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1cbb275e-6531-4fa0-ae7a-7f8c728b07d0", - "Infiltration": "MallNW", - "Position": { - "x": 278.444336, - "y": 21.4121933, - "z": 333.002441 - }, - "Rotation": 230.976517, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "21a81c01-f1f0-4537-bf7e-5f1eea7c2fe2", - "Infiltration": "MallSE", - "Position": { - "x": -185.81, - "y": 21.4521942, - "z": 134.5 - }, - "Rotation": 111.17, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "24caed4f-2614-4916-bbe3-a82c05ec2c25", - "Infiltration": "MallNW", - "Position": { - "x": 279.86, - "y": 21.4521942, - "z": -7.77001953 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2788bad0-51b8-4596-954d-11dc5b2edefa", - "Infiltration": "MallNW", - "Position": { - "x": -9.484619, - "y": 27.152813, - "z": -128.656372 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "27f8a21f-fbab-4548-916c-53a303179214", - "Infiltration": "MallNW", - "Position": { - "x": 314.9325, - "y": 17.0421944, - "z": -137.220581 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneOLI", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 12, - "DelayToCanSpawnSec": 40, - "Id": "28ca152a-220d-443e-9580-13e15c6be163", - "Infiltration": "", - "Position": { - "x": -84.05, - "y": 27.1200027, - "z": 77.84 - }, - "Rotation": 64.68137, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "299b816e-1141-4002-a741-2f9d94570379", - "Infiltration": "MallNW", - "Position": { - "x": 384.958618, - "y": 15.1221962, - "z": -294.961853 - }, - "Rotation": 283.05, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2bcafda4-6e53-43f5-b7df-7a9cb528b0ec", - "Infiltration": "MallNW", - "Position": { - "x": 108.145386, - "y": 21.3978081, - "z": -327.8363 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2bf91af1-5ccc-44b0-9a4a-6149455b4494", - "Infiltration": "MallNW", - "Position": { - "x": 277.290161, - "y": 21.4521942, - "z": -8.310059 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCenter", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 40, - "Id": "2cd458ae-a30a-4a55-bd8c-759b48f04b1d", - "Infiltration": "", - "Position": { - "x": 59.081, - "y": 36.63006, - "z": -90.855 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2dcba591-3692-4fc8-90b6-5fb092309d29", - "Infiltration": "MallNW", - "Position": { - "x": 298.319946, - "y": 21.4521942, - "z": -420.55 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGoshan", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "2eea7e67-e411-4221-8ddb-c4116949e046", - "Infiltration": "", - "Position": { - "x": -158.840012, - "y": 27.1199989, - "z": -73.64 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "332eab7f-251a-4bb0-9bcc-f7cc674d3885", - "Infiltration": "MallNW", - "Position": { - "x": 151.319946, - "y": 20.00219, - "z": -411.57 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "33a8dd43-670c-4bc8-ae6e-ab88b9971618", - "Infiltration": "MallSE", - "Position": { - "x": -338.044434, - "y": 21.3821945, - "z": 263.9226 - }, - "Rotation": 109.723984, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "33e4e0eb-57f9-4bd1-9153-bce60d953177", - "Infiltration": "MallSE", - "Position": { - "x": -196.63, - "y": 24.93219, - "z": 273.410034 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "33f76591-960f-48a9-b6dc-7c10948094a8", - "Infiltration": "MallSE", - "Position": { - "x": -203.099976, - "y": 21.4521942, - "z": -76.3399658 - }, - "Rotation": 144.44, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3403518f-cdf5-4b64-befe-d322a6507694", - "Infiltration": "MallNW", - "Position": { - "x": -6.04455566, - "y": 27.152813, - "z": -132.436279 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneIDEAPark", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "3405400b-54eb-4435-b18c-169ef507b071", - "Infiltration": "", - "Position": { - "x": 88.4200058, - "y": 21.43, - "z": -168.57 - }, - "Rotation": 272.0034, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "34422ffa-a0a0-4172-9181-b8d011227e1c", - "Infiltration": "MallSE", - "Position": { - "x": -205.960022, - "y": 21.4521942, - "z": -77.73999 - }, - "Rotation": 144.44, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "34b2ad9e-127b-415a-ac72-7116d54d905b", - "Infiltration": "MallNW", - "Position": { - "x": 148.449951, - "y": 19.6221924, - "z": -411.14 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3522edd3-bf38-40cb-9803-14d6d60c990f", - "Infiltration": "MallSE", - "Position": { - "x": 59.1099854, - "y": 21.4521942, - "z": 269.97998 - }, - "Rotation": 193.03, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "357538f3-9027-4d55-8c97-ab33f4af3344", - "Infiltration": "MallSE", - "Position": { - "x": -218.200012, - "y": 21.4521942, - "z": 5.43005371 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "363ad7b4-3ea1-431d-8396-e2481a267b0a", - "Infiltration": "MallNW", - "Position": { - "x": 109.089966, - "y": 20.0821915, - "z": -353.089966 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "36bcc208-9c90-4d46-8396-e79a6161af78", - "Infiltration": "MallSE", - "Position": { - "x": -320.802, - "y": 23.3931961, - "z": 143.0426 - }, - "Rotation": 100.069992, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3811659c-c8c4-4465-86f4-8c926517dfe7", - "Infiltration": "MallSE", - "Position": { - "x": 60.78003, - "y": 21.4521942, - "z": 270.070068 - }, - "Rotation": 187.52, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3825cd03-9684-4980-806a-94bac32e01fd", - "Infiltration": "MallSE", - "Position": { - "x": 4.959961, - "y": 21.4521942, - "z": 253.920044 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCenterBot", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 40, - "Id": "3943055c-492a-4625-8740-0aa20135e336", - "Infiltration": "", - "Position": { - "x": -27.0800018, - "y": 27.119, - "z": -2.06999969 - }, - "Rotation": 91.26827, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneIDEAPark", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "39dab627-f43d-4d3f-a0e9-d4ecf5201cc1", - "Infiltration": "", - "Position": { - "x": 90.43201, - "y": 21.457, - "z": -185.392 - }, - "Rotation": 251.944916, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "39ec71fc-1c48-4612-9910-a62af2dd453f", - "Infiltration": "MallNW", - "Position": { - "x": 104.495361, - "y": 21.3978081, - "z": -325.076355 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3bf7afc7-3d90-48aa-89fb-6f172cd127ea", - "Infiltration": "MallSE", - "Position": { - "x": -216.31, - "y": 21.4521942, - "z": 4.09997559 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3c562f86-d313-4272-9697-bf19044102f2", - "Infiltration": "MallSE", - "Position": { - "x": -134.849976, - "y": 27.232193, - "z": 199.640015 - }, - "Rotation": 220.78, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3ce23dba-5c1d-4ed8-aefd-9a6a2e2b7f4e", - "Infiltration": "MallSE", - "Position": { - "x": -335.7013, - "y": 21.6221924, - "z": 259.357666 - }, - "Rotation": 109.723984, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3f3b9d8e-636f-449b-be13-522b9aede0ae", - "Infiltration": "MallNW", - "Position": { - "x": 295.88, - "y": 21.5621948, - "z": -422.719971 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3fa1d408-52e7-4d0d-9fc2-7c22d644df2b", - "Infiltration": "MallNW", - "Position": { - "x": -167.012939, - "y": 21.4521942, - "z": -389.1739 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3febd6c1-66cd-4b49-9e9e-0c549c559de9", - "Infiltration": "MallNW", - "Position": { - "x": 386.018433, - "y": 14.8421936, - "z": -292.26178 - }, - "Rotation": 283.05, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4059ddc8-b03b-45c3-a159-86c3b958c620", - "Infiltration": "MallSE", - "Position": { - "x": -180.050415, - "y": 21.4178123, - "z": 150.53125 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "412315ab-0fb2-4e6f-93ff-a6d66ead6c54", - "Infiltration": "", - "Position": { - "x": 281.22, - "y": 21.4098263, - "z": 2.10700035 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "427b2c32-f4fc-4812-a661-f8dd9d539b45", - "Infiltration": "MallNW", - "Position": { - "x": 382.622681, - "y": 15.2921944, - "z": -294.718567 - }, - "Rotation": 283.05, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "43b84f2f-0058-4208-8624-c4edba8bd130", - "Infiltration": "MallNW", - "Position": { - "x": -166.582886, - "y": 21.4521942, - "z": -391.773743 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4583acfb-6700-42d9-a9cf-24f08b31d3c7", - "Infiltration": "MallNW", - "Position": { - "x": 386.378662, - "y": 14.8221931, - "z": -293.801758 - }, - "Rotation": 283.05, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneOLIPark", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 40, - "Id": "459d5f99-0d44-4659-b2d1-793f140c47c7", - "Infiltration": "", - "Position": { - "x": -28.2820053, - "y": 21.5170021, - "z": 74.645 - }, - "Rotation": 96.8581161, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneIDEA", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "4af33c9a-8450-4333-ad21-935fab511c67", - "Infiltration": "", - "Position": { - "x": 6.96, - "y": 27.12, - "z": -238.90799 - }, - "Rotation": 277.544922, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4bd264f8-67ef-478a-857a-408fe33d75b0", - "Infiltration": "MallNW", - "Position": { - "x": 383.39856, - "y": 15.2021942, - "z": -292.0918 - }, - "Rotation": 283.05, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4be57cb8-16e5-47cb-ade1-664372515c7d", - "Infiltration": "MallSE", - "Position": { - "x": 61.6300049, - "y": 21.4521942, - "z": 268.570068 - }, - "Rotation": 179.6, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4d4bfcb0-0de5-409f-a815-852b996bcaa3", - "Infiltration": "MallNW", - "Position": { - "x": 279.569946, - "y": 21.4521942, - "z": -10.6500244 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4e096ab1-0145-4d18-97b9-f9c727e9988a", - "Infiltration": "MallNW", - "Position": { - "x": -14.6182861, - "y": 22.3421936, - "z": -402.505 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCenter", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "4eb1bea9-3029-4850-9fed-3bbe565a46d5", - "Infiltration": "", - "Position": { - "x": 59.958, - "y": 36.63006, - "z": -81.907 - }, - "Rotation": 64.14227, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "50570c3b-596f-4bec-b570-9932a29f6923", - "Infiltration": "MallSE", - "Position": { - "x": -76.9100342, - "y": 22.3821869, - "z": 289.920044 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "519c3c78-c6fa-480a-a810-c72c5dbb62d2", - "Infiltration": "MallSE", - "Position": { - "x": -178.438232, - "y": 21.4178123, - "z": 133.717529 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZonePowerStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 10, - "DelayToCanSpawnSec": 40, - "Id": "51dbf971-7b9c-45af-a64f-8d61cb3b9861", - "Infiltration": "", - "Position": { - "x": -241.89, - "y": 21.3502846, - "z": -376.06 - }, - "Rotation": 76.86639, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneCenter", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "561e5fc1-562f-4d4e-bc90-8ff6241fdc6e", - "Infiltration": "", - "Position": { - "x": 60.467, - "y": 36.735, - "z": -29.253 - }, - "Rotation": 174.43721, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "56ab3b71-89a9-482d-8d61-585c05368f61", - "Infiltration": "MallSE", - "Position": { - "x": 4.04541, - "y": 27.152813, - "z": -124.296387 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "575d1452-6afb-458e-b7d8-1d157a56b4bf", - "Infiltration": "MallSE", - "Position": { - "x": -318.5019, - "y": 22.4411926, - "z": 145.785645 - }, - "Rotation": 100.069992, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "581498c5-ac15-4eaf-9eb0-c4a0fda6b3e0", - "Infiltration": "MallSE", - "Position": { - "x": -145.799988, - "y": 27.232193, - "z": 199.63 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "58bedf70-924f-4834-a767-d77a0f74ddcf", - "Infiltration": "MallSE", - "Position": { - "x": -75.48999, - "y": 22.8321915, - "z": 287.199951 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneIDEA", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 40, - "Id": "5a91ec2f-66a1-4a42-a191-5a3f52179cfd", - "Infiltration": "", - "Position": { - "x": -35.6460037, - "y": 27.3000011, - "z": -194.558 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5b06ff3c-9fe4-4c1b-bcea-8dc39375eb7d", - "Infiltration": "MallNW", - "Position": { - "x": 232.390015, - "y": 19.7621918, - "z": -286.579956 - }, - "Rotation": 324.91, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneOLI", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 12, - "DelayToCanSpawnSec": 40, - "Id": "5beb2a94-8d4d-4371-97fe-ecb70d01b347", - "Infiltration": "", - "Position": { - "x": -76.798996, - "y": 27.1200027, - "z": 83.478 - }, - "Rotation": 282.5483, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5cd53406-3c0c-49d5-a563-77de3859056b", - "Infiltration": "MallNW", - "Position": { - "x": 296.920044, - "y": 21.4421921, - "z": -420.450134 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5e20dee4-533e-43cb-9182-8d52d909b910", - "Infiltration": "MallSE", - "Position": { - "x": -179.80542, - "y": 21.4178123, - "z": 142.7362 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5e4b4d7f-5b52-4f0f-8ac5-f157c6ae6707", - "Infiltration": "MallNW", - "Position": { - "x": 108.145386, - "y": 21.3978081, - "z": -327.8363 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneIDEAPark", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 21, - "DelayToCanSpawnSec": 40, - "Id": "60228c52-30e2-48f7-bba2-efe31cdbc75d", - "Infiltration": "", - "Position": { - "x": 82.082, - "y": 21.457, - "z": -205.736008 - }, - "Rotation": 338.576935, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "60c9fc4f-8cdf-4186-a515-65531c5c1dd0", - "Infiltration": "MallSE", - "Position": { - "x": -179.3133, - "y": 21.4178123, - "z": 140.510132 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6148785d-c23d-48f8-918b-cfc34d067a7a", - "Infiltration": "MallSE", - "Position": { - "x": 58.75, - "y": 21.4521942, - "z": 267.87 - }, - "Rotation": 197.23, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "63219eb1-d0c8-4c56-9b20-9202abbc8a9b", - "Infiltration": "MallNW", - "Position": { - "x": -6.874634, - "y": 27.152813, - "z": -107.756348 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "63c6c060-d2a0-4249-94d7-3e4f17f78b59", - "Infiltration": "MallSE", - "Position": { - "x": -179.886963, - "y": 21.4178123, - "z": 152.21582 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6717239d-281c-4df2-8d6c-e6c76470596e", - "Infiltration": "MallNW", - "Position": { - "x": 274.660034, - "y": 21.4121933, - "z": 339.227783 - }, - "Rotation": 230.976517, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "67a56f87-5b80-4def-8574-2a64994fa38a", - "Infiltration": "MallSE", - "Position": { - "x": -207.839966, - "y": 21.4521942, - "z": -77.9000244 - }, - "Rotation": 144.44, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "68f3b1fc-cc62-49fa-86de-1815685fa825", - "Infiltration": "MallNW", - "Position": { - "x": 297.329956, - "y": 21.8021927, - "z": -423.8399 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "690eb447-8f33-408c-b7b7-d97bca64cb6d", - "Infiltration": "MallNW", - "Position": { - "x": 94.06995, - "y": 21.642189, - "z": -412.130127 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "69bb5762-c2a6-45f2-98f3-7e6e04f22245", - "Infiltration": "MallSE", - "Position": { - "x": -2.78564453, - "y": 27.15981, - "z": -109.451294 - }, - "Rotation": 33.25722, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6ba857b1-1ea4-4a47-8cd4-36b9721d3785", - "Infiltration": "MallSE", - "Position": { - "x": -199.859985, - "y": 25.3121948, - "z": 275.160034 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6c13f76e-e938-47f2-a048-5105b403202a", - "Infiltration": "MallNW", - "Position": { - "x": -15.68457, - "y": 27.152813, - "z": -121.576294 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGoshan", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "6d097fb4-9f12-4f52-860d-78accb243200", - "Infiltration": "", - "Position": { - "x": -158.596008, - "y": 27.1218243, - "z": -84.05499 - }, - "Rotation": 34.6833954, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneOLI", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 40, - "Id": "6f6a65db-4fef-423a-9024-c502bb96f3a2", - "Infiltration": "", - "Position": { - "x": -30.0230026, - "y": 21.455, - "z": 81.76799 - }, - "Rotation": 177.435867, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "70156248-ead0-4f0e-a52f-0aadec0b0d81", - "Infiltration": "MallSE", - "Position": { - "x": -323.919067, - "y": 23.6311951, - "z": 143.8363 - }, - "Rotation": 100.069992, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "70560317-ee41-46c3-a51d-e0cb84872726", - "Infiltration": "MallSE", - "Position": { - "x": 167.431519, - "y": 22.9521942, - "z": 385.536743 - }, - "Rotation": 181.724625, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCenter", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "7145b607-3717-4435-903a-8a7f2c65476a", - "Infiltration": "", - "Position": { - "x": 18.861, - "y": 36.58, - "z": -81.736 - }, - "Rotation": 348.493042, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "719af8ee-f647-4d8d-9736-c620e5f21f25", - "Infiltration": "MallSE", - "Position": { - "x": -143.950012, - "y": 27.232193, - "z": 200.47998 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "731989ce-bf0a-4ac4-88b6-813a25c03896", - "Infiltration": "MallSE", - "Position": { - "x": 58.3699951, - "y": 21.4521942, - "z": 265.699951 - }, - "Rotation": 194.38, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "737ee1bd-f3c9-4082-bc94-8b777a5e8112", - "Infiltration": "MallSE", - "Position": { - "x": -318.9419, - "y": 22.6421967, - "z": 147.435669 - }, - "Rotation": 100.069992, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "73efe9a1-529b-4688-97da-d691e0bfd343", - "Infiltration": "MallSE", - "Position": { - "x": 6.0723877, - "y": 27.152813, - "z": -117.012329 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "745ab426-1562-44c6-a98d-a0ba05d45b41", - "Infiltration": "MallNW", - "Position": { - "x": 231.180054, - "y": 19.6321869, - "z": -287.300049 - }, - "Rotation": 324.91, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "75a3eff0-9d58-4271-9332-e86a0b68761f", - "Infiltration": "MallSE", - "Position": { - "x": -135.559937, - "y": 27.232193, - "z": 201.48999 - }, - "Rotation": 209.87, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCenter", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "75e0757a-56fe-40d1-96e2-e33e8de02ba9", - "Infiltration": "", - "Position": { - "x": 59.221, - "y": 36.735, - "z": -28.921 - }, - "Rotation": 174.43721, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "75ea0127-0135-4560-a547-6f51d4d32621", - "Infiltration": "MallSE", - "Position": { - "x": -250.640015, - "y": 21.4521942, - "z": 59.5699463 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "77a017b8-494d-4e8b-8ea3-a052e5817bc7", - "Infiltration": "MallNW", - "Position": { - "x": 315.663452, - "y": 17.3121948, - "z": -133.942383 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "77b0da66-e6bd-4efb-87cc-c7d00668a84d", - "Infiltration": "MallSE", - "Position": { - "x": -178.69458, - "y": 21.4178123, - "z": 137.803711 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneOLI", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 40, - "Id": "77e0af12-ea10-4c10-8624-09a2a85c83db", - "Infiltration": "", - "Position": { - "x": -26.2800064, - "y": 21.455, - "z": 81.5799942 - }, - "Rotation": 177.435867, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7925e69e-6e7d-47b2-b4bc-76b98650923e", - "Infiltration": "MallNW", - "Position": { - "x": 109.865356, - "y": 21.3978081, - "z": -330.2063 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7981535e-1f66-4825-978d-4787ca037834", - "Infiltration": "MallSE", - "Position": { - "x": -321.54187, - "y": 23.0622025, - "z": 146.165649 - }, - "Rotation": 100.069992, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "798903d9-e63e-4885-aae0-3cd32de508b7", - "Infiltration": "MallSE", - "Position": { - "x": 3.885376, - "y": 27.15981, - "z": -113.246338 - }, - "Rotation": 33.25722, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7a8cb237-1752-4160-91a0-1233d6a786a3", - "Infiltration": "MallNW", - "Position": { - "x": 276.372681, - "y": 21.4121933, - "z": 336.606934 - }, - "Rotation": 230.976517, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7b6397bc-05da-449a-b27a-65ea3e08a4fe", - "Infiltration": "MallNW", - "Position": { - "x": 314.44397, - "y": 17.0721931, - "z": -134.933716 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7b7bb357-3576-4d01-9a18-07fba5d87c2f", - "Infiltration": "MallNW", - "Position": { - "x": 284.004517, - "y": 21.4321976, - "z": 87.36438 - }, - "Rotation": 272.052246, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7c08bad0-3e16-4919-a882-4f261159d2cb", - "Infiltration": "MallNW", - "Position": { - "x": -14.1346436, - "y": 27.152813, - "z": -114.106323 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7c9fded0-1c19-4b34-8a91-860328eb5e0d", - "Infiltration": "MallNW", - "Position": { - "x": 94.46997, - "y": 21.7121887, - "z": -415.530029 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7ec1e09c-a4f5-4eb8-b135-0ec3191380d9", - "Infiltration": "MallNW", - "Position": { - "x": 233.459961, - "y": 19.86219, - "z": -289.839966 - }, - "Rotation": 324.91, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7eed3827-1ad7-45bc-889f-93bad6b79522", - "Infiltration": "MallNW", - "Position": { - "x": 93.02002, - "y": 21.5621948, - "z": -414.4099 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "805d1444-d269-46f6-9e3b-6cef6dcd2dad", - "Infiltration": "MallNW", - "Position": { - "x": 314.7743, - "y": 16.8821945, - "z": -138.622559 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "80d3287c-756e-4fae-baf5-e9dd642e3606", - "Infiltration": "MallNW", - "Position": { - "x": -16.03833, - "y": 22.43219, - "z": -403.194946 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "81423963-a10b-4474-947a-daa1e5e91a8d", - "Infiltration": "MallNW", - "Position": { - "x": -13.1246338, - "y": 27.152813, - "z": -123.596313 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneIDEA", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "821384d4-579e-4439-a410-4049ad88f296", - "Infiltration": "", - "Position": { - "x": -65.831, - "y": 27.27, - "z": -275.619 - }, - "Rotation": 76.86639, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneIDEAPark", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "83af2113-328b-45fa-92d9-ab4195d62de3", - "Infiltration": "", - "Position": { - "x": 82.7830048, - "y": 21.43, - "z": -179.78 - }, - "Rotation": 25.22027, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "847fd32f-8974-4747-96b7-d4d2fc161499", - "Infiltration": "", - "Position": { - "x": 280.98, - "y": 21.37, - "z": 28.06 - }, - "Rotation": 271.261841, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneTrucks", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 40, - "Id": "84a861b6-d62e-4a7d-b9d5-f171d5db4340", - "Infiltration": "", - "Position": { - "x": -131.069992, - "y": 21.3502865, - "z": 130.480011 - }, - "Rotation": 338.0563, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "858baf83-08ee-4c5c-90b8-32d20e1c7db2", - "Infiltration": "MallNW", - "Position": { - "x": 280.123657, - "y": 21.4121933, - "z": 340.578735 - }, - "Rotation": 230.976517, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "875358fd-dc4c-46ae-b9ae-e15ebe19d65a", - "Infiltration": "MallNW", - "Position": { - "x": 283.2218, - "y": 21.4321976, - "z": 83.1942139 - }, - "Rotation": 272.052246, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "889672b0-afad-4d66-a8cc-407384b6f7b8", - "Infiltration": "MallNW", - "Position": { - "x": 366.9574, - "y": 16.732193, - "z": -187.410767 - }, - "Rotation": 229.3703, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "88981068-2dad-4362-9c88-4eb5f0eee96f", - "Infiltration": "MallSE", - "Position": { - "x": 6.16540527, - "y": 27.152813, - "z": -125.786377 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGoshan", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 75 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "89bd027f-8b38-4ee1-a51f-3011225ce2f4", - "Infiltration": "", - "Position": { - "x": -155.657013, - "y": 27.1199989, - "z": -36.6350021 - }, - "Rotation": 199.077713, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8a58963e-acae-423a-95cd-f599d83134bc", - "Infiltration": "MallSE", - "Position": { - "x": -147.52002, - "y": 27.232193, - "z": 199.310059 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8afc43bd-7cad-4407-b895-0a87de14dfaf", - "Infiltration": "MallSE", - "Position": { - "x": 7.279419, - "y": 27.152813, - "z": -119.532349 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8c12ace2-3af3-4d5a-a4aa-0895a4ef8a56", - "Infiltration": "MallSE", - "Position": { - "x": -0.9046631, - "y": 27.152813, - "z": -132.17627 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "923264a4-b0cf-44db-bbd3-207ee06b623c", - "Infiltration": "MallNW", - "Position": { - "x": 106.745361, - "y": 21.3978081, - "z": -330.1563 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "92382915-b0b3-49c8-a0f9-ed27081f09ea", - "Infiltration": "MallSE", - "Position": { - "x": -249.830017, - "y": 21.4521942, - "z": 58.0699463 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "93118e0f-24e6-46dd-8223-fca47e775ce8", - "Infiltration": "MallSE", - "Position": { - "x": 2.465454, - "y": 27.15981, - "z": -111.066284 - }, - "Rotation": 33.25722, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "942aee84-fe8a-4460-90d8-7bea3de4d4dd", - "Infiltration": "MallNW", - "Position": { - "x": -16.4483643, - "y": 22.1301956, - "z": -399.804932 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneIDEA", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "95b2cbf1-b8b2-4e50-9e52-ed9d258d6e43", - "Infiltration": "", - "Position": { - "x": -70.54, - "y": 27.12, - "z": -286.789978 - }, - "Rotation": 253.1366, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "96426e10-91b8-4bc0-bdce-61e0667bd59b", - "Infiltration": "MallNW", - "Position": { - "x": 231.63, - "y": 19.7821884, - "z": -289.76 - }, - "Rotation": 324.91, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "969d1428-f5c4-4593-a6bc-004cbfd5a898", - "Infiltration": "MallSE", - "Position": { - "x": -186.43, - "y": 21.4521942, - "z": 132.540039 - }, - "Rotation": 111.17, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "97b1e035-65fa-477e-9f34-1b4dc2d6bc80", - "Infiltration": "MallSE", - "Position": { - "x": 2.43994141, - "y": 21.4521942, - "z": 255.329956 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "99bde489-e230-4815-a143-1f8d75a7ed47", - "Infiltration": "MallNW", - "Position": { - "x": 107.995361, - "y": 21.3978081, - "z": -334.356323 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneIDEA", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "9eefdaf2-6699-4e28-9467-d44f59ce1cd3", - "Infiltration": "", - "Position": { - "x": -70.473, - "y": 27.12, - "z": -261.667 - }, - "Rotation": 266.3813, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a4123ea9-e12b-4c2c-9ee1-74fad1c3075c", - "Infiltration": "MallSE", - "Position": { - "x": -250.98999, - "y": 21.4521942, - "z": 56.4100342 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a4db4d2c-8fd2-48a3-a81b-4b0e00ff3217", - "Infiltration": "MallSE", - "Position": { - "x": -217.960022, - "y": 21.4521942, - "z": 3.39001465 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a546535d-6b7e-40e7-a237-f03a7858ae64", - "Infiltration": "MallSE", - "Position": { - "x": 5.30542, - "y": 27.152813, - "z": -115.466309 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a54d342d-07f2-46ed-9476-742aa246d6e0", - "Infiltration": "MallSE", - "Position": { - "x": -74.3900146, - "y": 22.6921921, - "z": 288.51 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a5f9cc9e-b38c-4f44-9b8b-01c3ff210d5b", - "Infiltration": "MallSE", - "Position": { - "x": 163.81958, - "y": 22.5121918, - "z": 383.415649 - }, - "Rotation": 181.724625, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a9a99b93-d0a0-419f-ab27-469c93e42638", - "Infiltration": "MallSE", - "Position": { - "x": 0.6300049, - "y": 21.4521942, - "z": 254.359985 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ac5784bf-9797-4493-afb5-e79fa1e9b227", - "Infiltration": "MallSE", - "Position": { - "x": 170.368286, - "y": 22.8421936, - "z": 384.482666 - }, - "Rotation": 181.724625, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGoshan", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "b023ceac-a042-42a4-bb99-73cdc37b39fb", - "Infiltration": "", - "Position": { - "x": -161.57, - "y": 27.1218243, - "z": -84.58 - }, - "Rotation": 34.6833954, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b2b26400-a096-44b1-8f7c-37809a7106da", - "Infiltration": "MallNW", - "Position": { - "x": 273.885864, - "y": 21.4121933, - "z": 342.196167 - }, - "Rotation": 230.976517, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b38b33f5-4864-45cf-a8fc-5cdf28c54bd1", - "Infiltration": "MallSE", - "Position": { - "x": -180.166077, - "y": 21.4178123, - "z": 148.5802 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b45226b7-f530-423d-a079-427ce52e3fb3", - "Infiltration": "MallNW", - "Position": { - "x": -9.544556, - "y": 27.152813, - "z": -111.986328 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneIDEAPark", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "b523fac3-877b-4cd2-824d-8fce82be95a7", - "Infiltration": "", - "Position": { - "x": 80.9210052, - "y": 21.5700016, - "z": -167.82 - }, - "Rotation": 117.762833, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b6dcb022-66f5-4a35-8d7c-d77f1fc38dcc", - "Infiltration": "MallSE", - "Position": { - "x": -198.049988, - "y": 25.2021942, - "z": 276.13 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b6e0459d-bf41-4ea7-8ac5-88e3bb72da31", - "Infiltration": "MallNW", - "Position": { - "x": 110.920044, - "y": 19.9221878, - "z": -355.7901 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b8748215-c5ac-4f4c-9c8d-088f9b6d7bab", - "Infiltration": "MallSE", - "Position": { - "x": -77.45996, - "y": 22.8721924, - "z": 287.670044 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b97b856f-68b6-4731-b897-4f57646ea49a", - "Infiltration": "MallNW", - "Position": { - "x": 108.355347, - "y": 21.3978081, - "z": -320.786316 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCenterBot", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "ba82fb90-fa3c-4568-97bc-b32b51a5bfb5", - "Infiltration": "", - "Position": { - "x": 56.58, - "y": 27.06, - "z": -11.05 - }, - "Rotation": 64.67698, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bbb3c805-5135-425c-a032-5cadbc45d73c", - "Infiltration": "MallNW", - "Position": { - "x": 364.347168, - "y": 16.7021942, - "z": -187.650757 - }, - "Rotation": 229.3703, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bcf2c1cc-e07e-4336-9f3a-15863b3d1918", - "Infiltration": "MallSE", - "Position": { - "x": 1.89001465, - "y": 21.4521942, - "z": 253.079956 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneTrucks", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 40, - "Id": "bdfd38df-2573-4712-8b82-c2d795ced0c2", - "Infiltration": "", - "Position": { - "x": -138.319, - "y": 27.1252861, - "z": 153.20401 - }, - "Rotation": 238.732925, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bf26dcac-b23c-474b-8bc7-9dc569e52e6e", - "Infiltration": "MallNW", - "Position": { - "x": -169.452881, - "y": 21.4521942, - "z": -391.343872 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCenter", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "c013b3dc-1fc1-45fc-8729-35ab4942fbcc", - "Infiltration": "", - "Position": { - "x": 14.8699989, - "y": 36.58, - "z": -81.87 - }, - "Rotation": 348.493042, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c01f4c0a-2022-471c-9e56-6c250f443d41", - "Infiltration": "MallNW", - "Position": { - "x": 110.685425, - "y": 21.3978081, - "z": -326.996338 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c0727897-2679-4989-9a2a-5c044743d841", - "Infiltration": "MallNW", - "Position": { - "x": 104.085449, - "y": 21.3978081, - "z": -334.1463 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneOLIPark", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 40, - "Id": "c4955fcd-ac95-44de-9901-f7802d19015b", - "Infiltration": "", - "Position": { - "x": -26.5500031, - "y": 21.5170021, - "z": 75.45 - }, - "Rotation": 76.86639, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "c622da3b-f686-462f-8791-df6a918595a1", - "Infiltration": "", - "Position": { - "x": 252.91, - "y": 21.4840012, - "z": 15.58 - }, - "Rotation": 345.420654, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePowerStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 10, - "DelayToCanSpawnSec": 40, - "Id": "cac3029a-cbad-4827-b9e8-a9222ba23c0e", - "Infiltration": "", - "Position": { - "x": -251.92, - "y": 21.4300022, - "z": -375.93 - }, - "Rotation": 76.86639, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cae4f991-b69d-4520-b068-e8b5903ef4c9", - "Infiltration": "MallNW", - "Position": { - "x": -168.00293, - "y": 21.4521942, - "z": -392.463867 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneOLIPark", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 40, - "Id": "cd1fe11e-2b28-4567-babb-4fcb5e83c4dd", - "Infiltration": "", - "Position": { - "x": -26.4800034, - "y": 21.5170021, - "z": 81.67999 - }, - "Rotation": 96.8581161, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ce33e4d2-b937-4f4a-9573-4300871cd74e", - "Infiltration": "MallSE", - "Position": { - "x": 3.85998535, - "y": 21.4521942, - "z": 252.609985 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ceb7c0d7-53bb-4fce-a43a-56b0c692e5cb", - "Infiltration": "MallNW", - "Position": { - "x": 362.76416, - "y": 16.5621948, - "z": -185.49231 - }, - "Rotation": 229.3703, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d1ff4163-c16b-42e2-a81d-f1445bfd14a4", - "Infiltration": "MallNW", - "Position": { - "x": 284.252563, - "y": 21.4321976, - "z": 90.93677 - }, - "Rotation": 272.052246, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d27c7203-8b21-415d-8244-dc416ed63d20", - "Infiltration": "MallNW", - "Position": { - "x": -4.124634, - "y": 27.152813, - "z": -104.256348 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d30b1c3a-e98e-43bc-b875-82e3bd2c5ff0", - "Infiltration": "MallSE", - "Position": { - "x": -337.585083, - "y": 21.4321976, - "z": 265.785278 - }, - "Rotation": 109.723984, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d3effa8a-6054-41ef-834a-300474479ab9", - "Infiltration": "MallSE", - "Position": { - "x": -180.337463, - "y": 21.4178123, - "z": 146.214233 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d456aa65-b5c5-473f-92d5-85f28f55fef3", - "Infiltration": "MallSE", - "Position": { - "x": -335.873657, - "y": 22.1201935, - "z": 256.930664 - }, - "Rotation": 109.723984, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d491e46c-b19f-4ba4-af35-d6cb22e8dec4", - "Infiltration": "MallNW", - "Position": { - "x": 107.995361, - "y": 21.3978081, - "z": -334.356323 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGoshan", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "d628477f-2aac-49bc-b456-5cad12c28976", - "Infiltration": "", - "Position": { - "x": -69.872, - "y": 27.168, - "z": -26.6200027 - }, - "Rotation": 102.751755, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d63ba590-b4a3-4900-9acc-75676391d134", - "Infiltration": "MallNW", - "Position": { - "x": 150.890015, - "y": 19.6321869, - "z": -408.969971 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d88f3ee6-6bde-4ce6-b2ca-6892da942650", - "Infiltration": "MallNW", - "Position": { - "x": 105.345337, - "y": 21.3978081, - "z": -332.136353 - }, - "Rotation": 320.478577, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d900affa-7653-4463-884f-e61b5a8e20f5", - "Infiltration": "MallNW", - "Position": { - "x": 315.939575, - "y": 16.8321953, - "z": -140.75647 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d9e39109-bb78-4633-8592-417672f783a6", - "Infiltration": "MallSE", - "Position": { - "x": -215.150024, - "y": 21.4521942, - "z": 5.76001 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGoshan", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "da52dacd-02f4-4387-8d92-d3b544ea4e34", - "Infiltration": "", - "Position": { - "x": -157.41, - "y": 27.1199989, - "z": -72.74 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "dadceca6-a380-426d-a5b0-238b76e3ba0f", - "Infiltration": "MallSE", - "Position": { - "x": -185.12, - "y": 21.4521942, - "z": 131.13 - }, - "Rotation": 111.17, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "db073e9c-ccf2-4a48-8427-25b2b5514967", - "Infiltration": "MallNW", - "Position": { - "x": 284.0028, - "y": 21.4321976, - "z": 85.38306 - }, - "Rotation": 272.052246, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "db112e77-f0bc-45f7-90d3-3fadd6ea75a4", - "Infiltration": "MallNW", - "Position": { - "x": 280.62, - "y": 21.4521942, - "z": -9.160034 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "dc39af9f-7905-4452-b46b-b57b0a9adc39", - "Infiltration": "MallSE", - "Position": { - "x": -201.039978, - "y": 21.4521942, - "z": -75.44995 - }, - "Rotation": 144.44, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "dc76e355-8fbb-4dd0-bf93-d5b981a8275d", - "Infiltration": "MallNW", - "Position": { - "x": 277.25, - "y": 21.4521942, - "z": -9.709961 - }, - "Rotation": 267.59, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "dd44f639-8868-4e16-9aa1-0036d615c2a8", - "Infiltration": "MallNW", - "Position": { - "x": -17.4884033, - "y": 22.5821915, - "z": -402.074951 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneOLI", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 40, - "Id": "dd96ca7a-f268-4b1a-9ce7-24a23a89d400", - "Infiltration": "", - "Position": { - "x": -83.233, - "y": 27.1000023, - "z": 140.055 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneOLI", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 40, - "Id": "e1335910-f703-4e5e-b8a4-c1cdcb432a68", - "Infiltration": "", - "Position": { - "x": 73.5639954, - "y": 27.0864677, - "z": 170.887 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e2361123-1b32-4639-8ef5-29ab9d16d76c", - "Infiltration": "MallSE", - "Position": { - "x": -179.80542, - "y": 21.4178123, - "z": 142.7362 - }, - "Rotation": 100.993141, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e4834439-c939-45e0-beff-d94805204504", - "Infiltration": "MallSE", - "Position": { - "x": -195.530029, - "y": 24.9221878, - "z": 274.719971 - }, - "Rotation": 155.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e85c6322-a6eb-430c-844c-17d0dea510e9", - "Infiltration": "MallSE", - "Position": { - "x": -215.140015, - "y": 21.4521942, - "z": 7.43994141 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e9f910fe-c024-4d0c-8186-0a12253ba0ee", - "Infiltration": "MallNW", - "Position": { - "x": 95.46997, - "y": 21.6221924, - "z": -412.24 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "eb5eee75-8f6f-4f80-8cc3-a86873dcb66f", - "Infiltration": "", - "Position": { - "x": 264.680023, - "y": 21.3412533, - "z": -1.15999985 - }, - "Rotation": 182.805145, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ebcfec46-fc7c-4ffb-9ae0-cb5faebc4520", - "Infiltration": "MallSE", - "Position": { - "x": -252.640015, - "y": 21.4521942, - "z": 55.69995 - }, - "Rotation": 86.82, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCenterBot", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 40, - "Id": "ed063ffb-a83d-43f6-bc4a-343d473da2ab", - "Infiltration": "", - "Position": { - "x": -24.221, - "y": 27.119, - "z": -0.748000145 - }, - "Rotation": 91.26827, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneGoshan", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "eef064f2-7daa-41bc-ae11-d5deb297f691", - "Infiltration": "", - "Position": { - "x": -69.982, - "y": 27.168, - "z": -27.945 - }, - "Rotation": 102.751755, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f122d1e7-4430-4b31-88b1-464783b9670c", - "Infiltration": "MallSE", - "Position": { - "x": 174.319336, - "y": 22.9421921, - "z": 384.197632 - }, - "Rotation": 181.724625, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f12f771f-4408-4db4-8926-47bd2ec53e8f", - "Infiltration": "MallNW", - "Position": { - "x": -15.04834, - "y": 21.8281937, - "z": -399.905029 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f5e70152-8845-44bf-94c0-d586cac03006", - "Infiltration": "MallNW", - "Position": { - "x": -13.8846436, - "y": 27.152813, - "z": -118.446289 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f619410f-4c28-4b44-98c8-bddd9638b12f", - "Infiltration": "MallNW", - "Position": { - "x": 284.190552, - "y": 21.4321976, - "z": 89.203 - }, - "Rotation": 272.052246, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneTrucks", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 110 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 40, - "Id": "f6c87742-c82b-4688-aeab-4fa434d630f9", - "Infiltration": "", - "Position": { - "x": -154.54, - "y": 21.3502865, - "z": 159.28 - }, - "Rotation": 76.86639, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f9c5f978-ab8d-459d-a7d3-653117c47a39", - "Infiltration": "MallNW", - "Position": { - "x": 95.8900146, - "y": 21.6721878, - "z": -414.839844 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f9da0976-cd2a-4990-b957-215b0ed00ac8", - "Infiltration": "MallNW", - "Position": { - "x": -168.412842, - "y": 21.4521942, - "z": -389.0738 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGoshan", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "fa4dde22-b27b-47df-b90a-01d1adbea2b4", - "Infiltration": "", - "Position": { - "x": -69.575, - "y": 27.218998, - "z": -99.7319946 - }, - "Rotation": 179.248642, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fada2feb-2f5c-47b1-af58-5aa3f498d99b", - "Infiltration": "MallSE", - "Position": { - "x": 3.12536621, - "y": 27.152813, - "z": -129.276367 - }, - "Rotation": 58.550293, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fb16c236-0d82-405f-97d3-1311a6c55a1e", - "Infiltration": "MallSE", - "Position": { - "x": 162.405518, - "y": 22.2621918, - "z": 381.5232 - }, - "Rotation": 181.724625, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneIDEA", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 40, - "Id": "fb857198-9943-4917-a29e-058ed8f818c4", - "Infiltration": "", - "Position": { - "x": -51.92, - "y": 27.12, - "z": -204.12999 - }, - "Rotation": 248.358978, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fc5ce718-9376-43c8-8ac5-336ce18e688d", - "Infiltration": "MallNW", - "Position": { - "x": 364.1361, - "y": 16.8221931, - "z": -189.043091 - }, - "Rotation": 229.3703, - "Sides": [ - "Pmc" - ] - } - ], - "UnixDateTime": 1636383182, - "_Id": "5714dbc024597771384a510d", - "doors": [], - "exit_access_time": 60, - "exit_count": 2, - "exit_time": 90, - "exits": [ - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "MallSE", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "NW Exfil", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "MallNW", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "SE Exfil", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 50, - "ChancePVE": 50, - "Count": 5000, - "CountPVE": 5000, - "EntryPoints": "MallSE,MallNW", - "EventAvailable": false, - "ExfiltrationTime": 60, - "ExfiltrationTimePVE": 60, - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "PP Exfil", - "PassageRequirement": "TransferItem", - "PlayersCount": 4, - "PlayersCountPVE": 4, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Item" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "MallSE,MallNW", - "EventAvailable": false, - "ExfiltrationTime": 3, - "ExfiltrationTimePVE": 3, - "ExfiltrationType": "Manual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Saferoom Exfil", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_INTERCHANGE_SAFEROOM_TIP" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "MallSE,MallNW", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationTimePVE": 10, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Hole Exfill", - "PassageRequirement": "Empty", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "Backpack", - "RequirementTip": "EXFIL_INTERCHANGE_HOLE_TIP" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "MallSE,MallNW", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "SharedTimer", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Interchange Cooperation", - "PassageRequirement": "ScavCooperation", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Cooperate" - } - ], - "filter_ex": [], - "limits": [], - "matching_min_seconds": 60, - "maxItemCountInLocation": [ - { - "TemplateId": "634959225289190e5e773b3b", - "Value": 7 - } - ], - "sav_summon_seconds": 60, - "tmp_location_field_remove_me": 0, - "transits": [ - { - "activateAfterSec": 60, - "active": true, - "conditions": "INT_TRANSIT_6_COND", - "description": "INT_TRANSIT_6_DESC", - "id": 6, - "location": "bigmap", - "name": "INT_TRANSIT_6", - "target": "56f40101d2720b2a4d8b45d6", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": true, - "conditions": "INT_TRANSIT_7_COND", - "description": "INT_TRANSIT_7_DESC", - "id": 7, - "location": "TarkovStreets", - "name": "INT_TRANSIT_7", - "target": "5714dc692459777137212e12", - "time": 30 - } - ], - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "waves": [] -} diff --git a/project/assets/database/locations/interchange/looseLoot.json b/project/assets/database/locations/interchange/looseLoot.json deleted file mode 100644 index a015b495..00000000 --- a/project/assets/database/locations/interchange/looseLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ad2c036d33abdc893d44b4dec4fd6dc81c6942d6dae76d2b7b9f255610d2eacc -size 47279988 diff --git a/project/assets/database/locations/interchange/staticAmmo.json b/project/assets/database/locations/interchange/staticAmmo.json deleted file mode 100644 index ad55ddad..00000000 --- a/project/assets/database/locations/interchange/staticAmmo.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7d41ea16188bda19fb042105ce5b7345b75a9b6196785fa57014e5fdb93059f5 -size 11311 diff --git a/project/assets/database/locations/interchange/staticContainers.json b/project/assets/database/locations/interchange/staticContainers.json deleted file mode 100644 index c737f643..00000000 --- a/project/assets/database/locations/interchange/staticContainers.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1345adcb74549751576af8fdd9ff49fee22c222c92d95dfcad68ac9a423e398a -size 340593 diff --git a/project/assets/database/locations/interchange/staticLoot.json b/project/assets/database/locations/interchange/staticLoot.json deleted file mode 100644 index da8027f9..00000000 --- a/project/assets/database/locations/interchange/staticLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:85cd0718c045455c3b7efc53c45a9b7f095c2fc3e5b4a690dd2a8188914779cd -size 599099 diff --git a/project/assets/database/locations/interchange/statics.json b/project/assets/database/locations/interchange/statics.json deleted file mode 100644 index 933ae23d..00000000 --- a/project/assets/database/locations/interchange/statics.json +++ /dev/null @@ -1,2539 +0,0 @@ -{ - "containersGroups": { - "KibaArms": { - "minContainers": 1, - "maxContainers": 3 - }, - "LockedSeaContainer": { - "minContainers": 2, - "maxContainers": 3 - }, - "Goshan": { - "minContainers": 19, - "maxContainers": 23 - }, - "PowerStation": { - "minContainers": 16, - "maxContainers": 20 - }, - "Parking": { - "minContainers": 7, - "maxContainers": 11 - }, - "OLI": { - "minContainers": 35, - "maxContainers": 39 - }, - "MedicalShops": { - "minContainers": 14, - "maxContainers": 18 - }, - "Other": { - "minContainers": 9, - "maxContainers": 10 - }, - "ClothingShops": { - "minContainers": 14, - "maxContainers": 18 - }, - "Ultra": { - "minContainers": 45, - "maxContainers": 49 - }, - "UndergroundParking": { - "minContainers": 44, - "maxContainers": 52 - }, - "BackLoadingSquare": { - "minContainers": 8, - "maxContainers": 12 - }, - "Stashes_Shopping_mall": { - "minContainers": 17, - "maxContainers": 19 - }, - "IDEA": { - "minContainers": 10, - "maxContainers": 14 - }, - "LoadingRooms": { - "minContainers": 20, - "maxContainers": 24 - }, - "Road": { - "minContainers": 8, - "maxContainers": 10 - } - }, - "containers": { - "container_Shopping_Mall_DesignStuff_00704": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00703": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00701": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00702": { - "groupId": "Ultra" - }, - "Lootable_00005": { - "groupId": "Ultra" - }, - "Lootable_00006": { - "groupId": "Ultra" - }, - "Lootable_00008": { - "groupId": "Ultra" - }, - "Lootable_00007": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00466": { - "groupId": "ClothingShops" - }, - "Lootable_00001": { - "groupId": "Other" - }, - "container_Shopping_Mall_DesignStuff_00692": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00479": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00201": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00199": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00706": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00705": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00707": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00708": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00202": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00694": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00203": { - "groupId": "PowerStation" - }, - "Lootable_00002": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00691": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00502": { - "groupId": "MedicalShops" - }, - "Lootable_00000": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00204": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00205": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00207": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00206": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00462": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00695": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00465": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00221": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00220": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00222": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00223": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00464": { - "groupId": "ClothingShops" - }, - "Lootable_00009": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00697": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00698": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00700": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00699": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00776": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00775": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00773": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00774": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00709": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00710": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00712": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00711": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00500": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00770": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00769": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00771": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00772": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00501": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00463": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00200": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00693": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00401": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00777": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00696": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00439": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00079": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00064": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00161": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00124": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00142": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00158": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00162": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00170": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00136": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00152": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00155": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00145": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00157": { - "groupId": "Stashes_Shopping_mall" - }, - "Lootable_00072": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00133": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00140": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00130": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00131": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00141": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00183": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00137": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00186": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00163": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00160": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00165": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00169": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00138": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00164": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00125": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00149": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00184": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00139": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00143": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00132": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00146": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00148": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00151": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00144": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00134": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00166": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00171": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00185": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00129": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00167": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00126": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00159": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00153": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00150": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00135": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00127": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00154": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00168": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00128": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00147": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00156": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00800": { - "groupId": "Other" - }, - "container_Shopping_Mall_DesignStuff_00494": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00468": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00359": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00663": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00358": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00413": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00363": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00725": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00415": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00008": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00668": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00356": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00568": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00043": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00518": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00530": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00473": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00783": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00792": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00672": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00736": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00791": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00746": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00671": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00572": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00724": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00752": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00738": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00650": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00523": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00361": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00801": { - "groupId": "Other" - }, - "container_Shopping_Mall_DesignStuff_00193": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00661": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00729": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00669": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00520": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00418": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00789": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00665": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00517": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00454": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00414": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00733": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00040": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00645": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00748": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00357": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00011": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00644": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00751": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00532": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00609": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00750": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00571": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00419": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00452": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00782": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00744": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00643": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00631": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00365": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00737": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00469": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00588": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00408": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00747": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00417": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00038": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00037": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00652": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00648": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00662": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00722": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00753": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00670": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00666": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00410": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00406": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00420": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00524": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00611": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00498": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00451": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00570": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00576": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00575": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00044": { - "groupId": "LoadingRooms" - }, - "container_Test_for_export_00000": { - "groupId": "Other" - }, - "container_Shopping_Mall_DesignStuff_00041": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00793": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00742": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00472": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00745": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00496": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00039": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00010": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00521": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00629": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00453": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00646": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00731": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00360": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00522": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00497": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00610": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00467": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00734": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00531": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00495": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00732": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00664": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00519": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00219": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00675": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00649": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00416": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00673": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00741": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00586": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00781": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00780": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00730": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00647": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00471": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00529": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00728": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00743": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00364": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00042": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00455": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00651": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00735": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00674": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00739": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00362": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00749": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00587": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00740": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00790": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00366": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00456": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00723": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00632": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00470": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00667": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00457": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00727": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00218": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00779": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00569": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00411": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00528": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00628": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00726": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00630": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00660": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00009": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00412": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00409": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00613": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00574": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00407": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00573": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00608": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00612": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00802": { - "groupId": "Other" - }, - "container_Shopping_Mall_DesignStuff_00335": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00339": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00345": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00343": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00347": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00349": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00333": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00341": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00337": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00177": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00172": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00111": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00104": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00120": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00175": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00115": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00114": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00121": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00105": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00110": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00181": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00179": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00101": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00103": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00109": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00173": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00178": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00122": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00119": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00108": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00113": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00118": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00176": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00106": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00116": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00180": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00112": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00182": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00102": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00107": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00100": { - "groupId": "Stashes_Shopping_mall" - }, - "Lootable_00068": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00174": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00123": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00117": { - "groupId": "Stashes_Shopping_mall" - }, - "container_Shopping_Mall_DesignStuff_00325": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00319": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00311": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00321": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00312": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00310": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00328": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00314": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00323": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00317": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00318": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00313": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00324": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00306": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00322": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00316": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00320": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00315": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00307": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00330": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00309": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00329": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00326": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00308": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00331": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00327": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00505": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00489": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00488": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00506": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00507": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00508": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00285": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00291": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00289": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00297": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00287": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00303": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00293": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00295": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00299": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00301": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00503": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00023": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00719": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00215": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00024": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00214": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00716": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00035": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00036": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00566": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00639": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00567": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00656": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00034": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00003": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00717": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00715": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00001": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00504": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00564": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00526": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00027": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00626": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00641": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00187": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00525": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00487": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00657": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00565": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00718": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00030": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00191": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00022": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00000": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00211": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00659": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00032": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00025": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00627": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00778": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00005": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00006": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00189": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00213": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00562": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00192": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00721": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00527": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00210": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00007": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00216": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00033": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00028": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00004": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00642": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00658": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00190": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00209": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00788": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00026": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00002": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00029": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00714": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00208": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00720": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00640": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00212": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00031": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00563": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00217": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00334": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00338": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00344": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00342": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00346": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00348": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00332": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00340": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00336": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00284": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00290": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00288": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00296": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00302": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00286": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00292": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00294": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00298": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00300": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00305": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00304": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00352": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00353": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00351": { - "groupId": "" - }, - "Lootable_00010": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00350": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00271": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00276": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00274": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00233": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00259": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00236": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00270": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00260": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00277": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00228": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00229": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00264": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00239": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00235": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00282": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00272": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00262": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00253": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00254": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00261": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00278": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00237": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00279": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00231": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00240": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00226": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00266": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00268": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00246": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00245": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00230": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00250": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00232": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00251": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00227": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00255": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00265": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00234": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00267": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00243": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00238": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00247": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00263": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00273": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00241": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00256": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00269": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00252": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00280": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00248": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00225": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00258": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00249": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00275": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00281": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00283": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00244": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00242": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00257": { - "groupId": "" - }, - "container_Shopping_Mall_DesignStuff_00511": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00514": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00404": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00491": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00492": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00516": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00515": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00512": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00513": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00355": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00510": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00405": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00490": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00509": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00493": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00097": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00368": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00422": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00098": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00045": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00754": { - "groupId": "Ultra" - }, - "n1": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00421": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00012": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00424": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00046": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00423": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00676": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00367": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00086": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00614": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00015": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00755": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00437": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00757": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00436": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00376": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00052": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00434": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00438": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00374": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00375": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00433": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00589": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00803": { - "groupId": "Other" - }, - "container_Shopping_Mall_DesignStuff_00480": { - "groupId": "LockedSeaContainer" - }, - "container_Shopping_Mall_DesignStuff_00016": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00379": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00579": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00679": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00756": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00380": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00377": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00678": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00535": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00534": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00381": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00677": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00378": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00435": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00580": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00051": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00598": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00655": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00623": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00560": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00547": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00546": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00595": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00599": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00541": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00556": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00196": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00542": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00545": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00622": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00539": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00555": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00601": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00635": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00600": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00544": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00603": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00596": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00634": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00549": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00552": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00551": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00561": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00550": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00583": { - "groupId": "OLI" - }, - "container_Test_for_export_00001": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00499": { - "groupId": "MedicalShops" - }, - "container_Shopping_Mall_DesignStuff_00554": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00559": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00538": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00197": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00548": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00636": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00624": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00654": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00198": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00621": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00582": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00557": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00619": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00537": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00540": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00558": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00597": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00553": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00543": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00594": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00602": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00593": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00620": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00089": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00078": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00081": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00090": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00087": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00084": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00062": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00091": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00076": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00085": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00075": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00077": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00092": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00061": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00096": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00083": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00058": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00082": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00060": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00074": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00403": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00095": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00637": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00638": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00067": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00607": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00094": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00069": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00606": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00584": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00073": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00093": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00585": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00065": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00188": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00059": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00057": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00068": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00066": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00072": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00402": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00056": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00604": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00625": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00605": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00071": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00070": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00354": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00050": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00372": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00373": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00426": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00577": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00578": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00430": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00370": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00432": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00427": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00428": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00425": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00013": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00369": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00047": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00014": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00371": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00431": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00048": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00049": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00429": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00533": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00484": { - "groupId": "KibaArms" - }, - "container_Shopping_Mall_DesignStuff_00394": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00799": { - "groupId": "Other" - }, - "container_Shopping_Mall_DesignStuff_00194": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00055": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00399": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00478": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00441": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00477": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00633": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00805": { - "groupId": "Other" - }, - "container_Shopping_Mall_DesignStuff_00460": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00686": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00442": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00400": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00195": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00806": { - "groupId": "Other" - }, - "container_Shopping_Mall_DesignStuff_00461": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00581": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00767": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00688": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00763": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00443": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00536": { - "groupId": "OLI" - }, - "container_Shopping_Mall_DesignStuff_00685": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00440": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00444": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00398": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00224": { - "groupId": "PowerStation" - }, - "container_Shopping_Mall_DesignStuff_00766": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00021": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00653": { - "groupId": "IDEA" - }, - "container_Shopping_Mall_DesignStuff_00485": { - "groupId": "KibaArms" - }, - "container_Shopping_Mall_DesignStuff_00768": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00592": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00396": { - "groupId": "UndergroundParking" - }, - "container_Test_for_export_00002": { - "groupId": "Other" - }, - "container_Shopping_Mall_DesignStuff_00618": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00798": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00687": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00486": { - "groupId": "KibaArms" - }, - "container_Shopping_Mall_DesignStuff_00397": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00764": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00765": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00617": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00020": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00690": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00787": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00482": { - "groupId": "LockedSeaContainer" - }, - "container_Shopping_Mall_DesignStuff_00689": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00807": { - "groupId": "Other" - }, - "container_Shopping_Mall_DesignStuff_00390": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00445": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00680": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00590": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00395": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00383": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00784": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00388": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00762": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00017": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00019": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00447": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00385": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00796": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00386": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00384": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00795": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00450": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00459": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00760": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00449": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00683": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00474": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00761": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00483": { - "groupId": "LockedSeaContainer" - }, - "container_Shopping_Mall_DesignStuff_00481": { - "groupId": "LockedSeaContainer" - }, - "container_Shopping_Mall_DesignStuff_00682": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00387": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00054": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00446": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00794": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00758": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00684": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00713": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00759": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00382": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00053": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00804": { - "groupId": "Other" - }, - "container_Shopping_Mall_DesignStuff_00785": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00018": { - "groupId": "LoadingRooms" - }, - "container_Shopping_Mall_DesignStuff_00448": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00088": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00391": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00476": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00458": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00063": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00681": { - "groupId": "Ultra" - }, - "container_Shopping_Mall_DesignStuff_00616": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00615": { - "groupId": "Goshan" - }, - "container_Shopping_Mall_DesignStuff_00393": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00475": { - "groupId": "ClothingShops" - }, - "container_Shopping_Mall_DesignStuff_00080": { - "groupId": "Parking" - }, - "container_Shopping_Mall_DesignStuff_00392": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00099": { - "groupId": "Road" - }, - "container_Shopping_Mall_DesignStuff_00797": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00389": { - "groupId": "UndergroundParking" - }, - "container_Shopping_Mall_DesignStuff_00786": { - "groupId": "BackLoadingSquare" - }, - "container_Shopping_Mall_DesignStuff_00591": { - "groupId": "Goshan" - } - } -} \ No newline at end of file diff --git a/project/assets/database/locations/laboratory/allExtracts.json b/project/assets/database/locations/laboratory/allExtracts.json deleted file mode 100644 index ac903d90..00000000 --- a/project/assets/database/locations/laboratory/allExtracts.json +++ /dev/null @@ -1,232 +0,0 @@ -[ - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 10.0, - "ExfiltrationTimePVE": 10.0, - "ExfiltrationType": "Manual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "lab_Elevator_Cargo", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 5.0, - "ExfiltrationTimePVE": 5.0, - "ExfiltrationType": "Manual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "lab_Elevator_Main", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 15.0, - "ExfiltrationTimePVE": 15.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "lab_Vent", - "PassageRequirement": "Empty", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "Backpack", - "RequirementTip": "EXFIL_tip_backpack", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 5.0, - "ExfiltrationTimePVE": 5.0, - "ExfiltrationType": "Manual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "lab_Elevator_Med", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 10.0, - "ExfiltrationTimePVE": 10.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "lab_Under_Storage_Collector", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 60.0, - "ChancePVE": 60.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 10.0, - "ExfiltrationTimePVE": 10.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "lab_Parking_Gate", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 60.0, - "ChancePVE": 60.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 10.0, - "ExfiltrationTimePVE": 10.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "lab_Hangar_Gate", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 0.0, - "ChancePVE": 0.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "lab_Elevator_Cargo", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 0.0, - "ChancePVE": 0.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "lab_Elevator_Main", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 0.0, - "ChancePVE": 0.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "lab_Elevator_Med", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - } -] \ No newline at end of file diff --git a/project/assets/database/locations/laboratory/base.json b/project/assets/database/locations/laboratory/base.json deleted file mode 100644 index f4984770..00000000 --- a/project/assets/database/locations/laboratory/base.json +++ /dev/null @@ -1,5725 +0,0 @@ -{ - "AccessKeys": [ - "5c94bbff86f7747ee735c08f" - ], - "AccessKeysPvE": [ - "5c94bbff86f7747ee735c08f" - ], - "Area": 0, - "AveragePlayTime": 30, - "AveragePlayerLevel": 45, - "Banners": [ - { - "id": "5805f617245977100b2c1f41", - "pic": { - "path": "CONTENT/banners/tglabs.jpg", - "rcid": "" - } - }, - { - "id": "5807be8924597742c603fa19", - "pic": { - "path": "CONTENT/banners/banner_tarkov.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT/banners/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "64c0acf85174e095610734a0", - "pic": { - "path": "CONTENT/banners/banner_sherpa.jpg", - "rcid": "" - } - } - ], - "BossLocationSpawn": [ - { - "BossChance": 60, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor1", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": 900, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 60, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor2", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": 300, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 45, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneBasement", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": 450, - "TriggerId": "autoId_00008_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 45, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneBasement", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": 800, - "TriggerId": "autoId_00010_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 40, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneBasement", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "autoId_00007_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 45, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor2", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "autoId_00007_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor1", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": 600, - "TriggerId": "autoId_00632_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor2", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": 600, - "TriggerId": "autoId_00632_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor1", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "autoId_00012_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor2", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "autoId_00012_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor1", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": 1200, - "TriggerId": "autoId_00014_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,2,2,1,1,2,2,2,2,1,1,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor2", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": 1200, - "TriggerId": "autoId_00014_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,2,2,1,1,2,2,2,2,1,1,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor1", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "autoId_00009_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor2", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "autoId_00009_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneGate2", - "Delay": 8, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "autoId_00014_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 45, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneGate1", - "Delay": 8, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "autoId_00632_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "BotZoneFloor1", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "BotZoneFloor2", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "BotZoneFloor1", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "BotZoneFloor2", - "Delay": 0, - "IgnoreMaxBots": false, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - } - ], - "BotAssault": 100, - "BotEasy": 0, - "BotHard": 70, - "BotImpossible": 0, - "BotLocationModifier": { - "AccuracySpeed": 1, - "AdditionalHostilitySettings": [ - { - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 100, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcBEAR", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 100, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - }, - { - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 100, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcUSEC", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 100, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - } - ], - "DistToActivate": 140, - "DistToActivatePvE": 140, - "DistToPersueAxemanCoef": 1, - "DistToSleep": 160, - "DistToSleepPvE": 160, - "GainSight": 1, - "KhorovodChance": 0, - "MagnetPower": 10, - "MarksmanAccuratyCoef": 1, - "MaxExfiltrationTime": 1800, - "MinExfiltrationTime": 1200, - "Scattering": 1, - "VisibleDistance": 1 - }, - "BotMarksman": 0, - "BotMax": 15, - "BotMaxPlayer": 14, - "BotMaxPvE": 25, - "BotMaxTimePlayer": 1000, - "BotNormal": 30, - "BotSpawnCountStep": 3, - "BotSpawnPeriodCheck": 15, - "BotSpawnTimeOffMax": 30, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOnMax": 330, - "BotSpawnTimeOnMin": 300, - "BotStart": 10, - "BotStartPlayer": 15, - "BotStop": 1400, - "Description": "Laboratory description", - "DisabledForScav": true, - "DisabledScavExits": "", - "EnableCoop": true, - "Enabled": true, - "EscapeTimeLimit": 35, - "EscapeTimeLimitCoop": 30, - "EscapeTimeLimitPVE": 35, - "Events": { - "Halloween2024": { - "CrowdAttackBlockRadius": 100, - "CrowdAttackSpawnParams": [ - { - "Difficulty": "easy", - "Role": "infectedAssault", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedAssault", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedAssault", - "Weight": 0 - }, - { - "Difficulty": "easy", - "Role": "infectedPmc", - "Weight": 22 - }, - { - "Difficulty": "normal", - "Role": "infectedPmc", - "Weight": 90 - }, - { - "Difficulty": "hard", - "Role": "infectedPmc", - "Weight": 60 - }, - { - "Difficulty": "easy", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "easy", - "Role": "infectedLaborant", - "Weight": 23 - }, - { - "Difficulty": "normal", - "Role": "infectedLaborant", - "Weight": 75 - }, - { - "Difficulty": "hard", - "Role": "infectedLaborant", - "Weight": 0 - } - ], - "CrowdCooldownPerPlayerSec": 300, - "CrowdsLimit": 2, - "InfectedLookCoeff": 2, - "InfectionPercentage": 0, - "MaxCrowdAttackSpawnLimit": 13, - "MinInfectionPercentage": 0, - "MinSpawnDistToPlayer": 40, - "TargetPointSearchRadiusLimit": 80, - "ZombieCallDeltaRadius": 20, - "ZombieCallPeriodSec": 1, - "ZombieCallRadiusLimit": 50, - "ZombieMultiplier": 5 - } - }, - "ForceOnlineRaidInPVE": false, - "GenerateLocalLootCache": true, - "GlobalContainerChanceModifier": 1, - "GlobalLootChanceModifier": 0.33, - "GlobalLootChanceModifierPvE": 0.77, - "IconX": 700, - "IconY": 800, - "Id": "laboratory", - "Insurance": false, - "IsSecret": true, - "Locked": false, - "Loot": [], - "MatchMakerMinPlayersByWaitTime": [ - { - "minPlayers": 7, - "time": 60 - }, - { - "minPlayers": 6, - "time": 70 - }, - { - "minPlayers": 5, - "time": 120 - }, - { - "minPlayers": 4, - "time": 180 - }, - { - "minPlayers": 3, - "time": 250 - }, - { - "minPlayers": 2, - "time": 330 - }, - { - "minPlayers": 1, - "time": 420 - } - ], - "MaxBotPerZone": 5, - "MaxCoopGroup": 10, - "MaxDistToFreePoint": 900, - "MaxPlayers": 10, - "MinDistToExitPoint": 30, - "MinDistToFreePoint": 35, - "MinMaxBots": [], - "MinPlayerLvlAccessKeys": 0, - "MinPlayers": 8, - "Name": "Laboratory", - "NewSpawn": false, - "NewSpawnForPlayers": false, - "NonWaveGroupScenario": { - "Chance": 50, - "Enabled": false, - "MaxToBeGroup": 3, - "MinToBeGroup": 2 - }, - "OcculsionCullingEnabled": true, - "OfflineNewSpawn": false, - "OfflineOldSpawn": true, - "OldSpawn": true, - "OpenZones": "BotZoneFloor1,BotZoneFloor2", - "PlayersRequestCount": -1, - "PmcMaxPlayersInGroup": 5, - "Preview": { - "path": "", - "rcid": "" - }, - "RequiredPlayerLevelMax": 100, - "RequiredPlayerLevelMin": 0, - "Rules": "Normal", - "SafeLocation": false, - "ScavMaxPlayersInGroup": 4, - "Scene": { - "path": "maps/laboratory_preset.bundle", - "rcid": "laboratory.ScenesPreset.asset" - }, - "SpawnPointParams": [ - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0043f275-0dc2-4c04-87a1-bd90cbaf183a", - "Infiltration": "Common", - "Position": { - "x": -166.45, - "y": 0.06, - "z": -322.43 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "00a92ab8-28d7-4c1c-87a5-ef1c480e9900", - "Infiltration": "Common", - "Position": { - "x": -118.336, - "y": -4.025, - "z": -403.071 - }, - "Rotation": 88.9786758, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "01d14f42-45de-45fb-be52-bfff19f3a470", - "Infiltration": "Common", - "Position": { - "x": -279.05, - "y": 0.06, - "z": -338.94 - }, - "Rotation": 101.11, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "037af7bf-1a89-454d-af5c-83df829fbde0", - "Infiltration": "Common", - "Position": { - "x": -115.37, - "y": -4.015, - "z": -321.759 - }, - "Rotation": 268.597656, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "037b1766-b66b-4c3e-adf1-390f67dc70bb", - "Infiltration": "Common", - "Position": { - "x": -116.55, - "y": 0.01, - "z": -253.94 - }, - "Rotation": 189.27, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "04277419-2f99-4283-a180-acb761f90c72", - "Infiltration": "Common", - "Position": { - "x": -231.985, - "y": 0.09, - "z": -418.4 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0483afba-89af-43a9-b2d3-47e2905440c5", - "Infiltration": "Common", - "Position": { - "x": -276.03, - "y": -3.99, - "z": -358.44 - }, - "Rotation": 90.03, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "04ca5c72-7c54-43cf-9150-6ddcaedf9808", - "Infiltration": "Common", - "Position": { - "x": -175.022, - "y": 0.099, - "z": -311.283 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "081425b7-a633-420b-ae62-da220db1a651", - "Infiltration": "Common", - "Position": { - "x": -174.97, - "y": 0.08, - "z": -264.27 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "08633a18-3bbd-4a4b-934a-b51e049817b1", - "Infiltration": "Common", - "Position": { - "x": -120.64, - "y": 0.01, - "z": -256.73 - }, - "Rotation": 169.74, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0d7728c8-59c8-493a-8849-fa22a1346fcd", - "Infiltration": "Common", - "Position": { - "x": -254.79, - "y": -4.03, - "z": -298.46 - }, - "Rotation": 185.57, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "0e00d2de-8c18-4b98-a5b2-9d5d6db335e6", - "Infiltration": "", - "Position": { - "x": -279.23, - "y": 0.078, - "z": -349.22998 - }, - "Rotation": 126.849854, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0f8dedb9-f5f2-4c18-af92-968b0b22e54b", - "Infiltration": "Common", - "Position": { - "x": -275.92, - "y": -4, - "z": -355.32 - }, - "Rotation": 73.55, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "12055345-4522-4b48-b08a-6a517bbf7c61", - "Infiltration": "Common", - "Position": { - "x": -250.87, - "y": 4.14, - "z": -281.79 - }, - "Rotation": 92.06, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "125f7075-b7c9-4d29-be15-a8e33b9c5d6f", - "Infiltration": "Common", - "Position": { - "x": -173.85, - "y": 0.08, - "z": -264.32 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "12caf244-967e-4bc8-9900-e66d2f1bb4b0", - "Infiltration": "", - "Position": { - "x": -179.44, - "y": 0.114, - "z": -407.409973 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "13ea441c-75e5-48a2-9d87-396590d9bc98", - "Infiltration": "Common", - "Position": { - "x": -276.29, - "y": -3.99, - "z": -362.3 - }, - "Rotation": 92.55, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "16f8ebd0-39b4-4fe2-8128-ed2bc82008a1", - "Infiltration": "Common", - "Position": { - "x": -118.109, - "y": -4.025, - "z": -401.386 - }, - "Rotation": 88.9786758, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1780c396-0394-48cf-8871-a6feae1bc4b7", - "Infiltration": "Common", - "Position": { - "x": -170.74, - "y": -3.99, - "z": -344.55 - }, - "Rotation": 89.61, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "19383115-da70-4cc5-8ab7-d80bf8045113", - "Infiltration": "Common", - "Position": { - "x": -171.39, - "y": 0.12, - "z": -332.06 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "1a9ca4f6-edea-4a52-9b99-162ad016e81d", - "Infiltration": "", - "Position": { - "x": -260.287, - "y": 0.04, - "z": -390.578 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneGate1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "1ad2a57c-64ff-4c87-961b-8a1226cdaf36", - "Infiltration": "", - "Position": { - "x": -157.568, - "y": 2.711, - "z": -222.756989 - }, - "Rotation": 201.596924, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1d148166-42cd-4c7b-8b33-d93682121c2f", - "Infiltration": "Common", - "Position": { - "x": -171.41, - "y": 0.08, - "z": -264.04 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1d3d7178-c84f-47b2-9ea6-4cd11449dbfa", - "Infiltration": "Common", - "Position": { - "x": -115.504, - "y": -4.039, - "z": -319.677 - }, - "Rotation": 275.760376, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1d66c992-d022-490d-a451-18d19c284988", - "Infiltration": "Common", - "Position": { - "x": -216.856, - "y": -3.997, - "z": -386.666 - }, - "Rotation": 270.60022, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "223b6e4d-2ead-45eb-ad5f-35abd028d2c3", - "Infiltration": "Common", - "Position": { - "x": -206.699, - "y": 4.16135359, - "z": -291.862 - }, - "Rotation": 89.0511551, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "22c00064-df0c-474b-b479-918175a539a7", - "Infiltration": "Common", - "Position": { - "x": -165.45, - "y": 0.07, - "z": -332.65 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneGate2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "24169507-5cd9-42d3-9944-4345f96fe01e", - "Infiltration": "", - "Position": { - "x": -244.976, - "y": 2.664, - "z": -448.615 - }, - "Rotation": 181.596954, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "242085cb-6ffa-4aa5-8268-dc8b138c7b74", - "Infiltration": "Common", - "Position": { - "x": -118.503, - "y": -4.025, - "z": -399.522 - }, - "Rotation": 88.9786758, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "24453a69-8df7-47cf-8449-b56ef868be5c", - "Infiltration": "Common", - "Position": { - "x": -126.86, - "y": -4.97, - "z": -266.17 - }, - "Rotation": 270.47, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "2535f603-e3ed-4e23-8765-4c1c9ddc8c08", - "Infiltration": "", - "Position": { - "x": -208.019, - "y": 4.207, - "z": -297.85498 - }, - "Rotation": 113.883675, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "25692e11-5450-4b6f-9820-fae868e113bf", - "Infiltration": "Common", - "Position": { - "x": -233.051, - "y": 0.09, - "z": -418.383 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "293e014a-512d-4fe3-a3fd-1a40611e90da", - "Infiltration": "Common", - "Position": { - "x": -118.224, - "y": -4.015, - "z": -326.516 - }, - "Rotation": 16.0527267, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "29b9975d-3abf-4478-affb-cd0d29b4f3a5", - "Infiltration": "Common", - "Position": { - "x": -110.12, - "y": 4.2, - "z": -413.71 - }, - "Rotation": 181.81, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "2b1ad2d6-7e44-4282-b557-ac0c72cca19a", - "Infiltration": "", - "Position": { - "x": -255.632, - "y": 4.146, - "z": -376.374 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "2c447dc9-2865-4803-bb14-2302b3890a9c", - "Infiltration": "", - "Position": { - "x": -253.55899, - "y": 4.146, - "z": -376.292 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "2dfb3a5d-9977-4697-812b-288e9ba36357", - "Infiltration": "", - "Position": { - "x": -226.68, - "y": 0.082, - "z": -279.617 - }, - "Rotation": 164.3535, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2f66dafc-a2f1-4283-a383-aa64c84f6da7", - "Infiltration": "Common", - "Position": { - "x": -279.44, - "y": -3.99, - "z": -348.87 - }, - "Rotation": 73.55, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "32e05b2a-9847-45b8-b04b-36bafe5879f1", - "Infiltration": "Common", - "Position": { - "x": -170.86, - "y": -3.99, - "z": -340.1 - }, - "Rotation": 89.61, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "35beb4da-36a6-48e3-bbd1-810126872d3c", - "Infiltration": "Common", - "Position": { - "x": -172.66, - "y": 0.08, - "z": -264.14 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "35f11413-d269-4cf0-b9dc-2ea7f0bbdbf3", - "Infiltration": "", - "Position": { - "x": -279.68, - "y": 0.078, - "z": -352.99 - }, - "Rotation": 126.849854, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneBasement", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 4, - "Id": "35fd4e75-132a-4ff0-b208-49d150bb5bc1", - "Infiltration": "", - "Position": { - "x": -128.38, - "y": -4.041, - "z": -417.949982 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "38378dc4-cb6a-4538-9b78-fab68201bfa6", - "Infiltration": "Common", - "Position": { - "x": -234.34, - "y": 0.09, - "z": -419.76 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneGate2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "3ac16ebd-106a-4357-8410-da375bbe07bd", - "Infiltration": "", - "Position": { - "x": -218.066, - "y": 2.664, - "z": -448.59198 - }, - "Rotation": 181.596954, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "3b4c3c07-59e9-4ff1-9a22-bbd0665d09c3", - "Infiltration": "", - "Position": { - "x": -202.231, - "y": 0.0499999523, - "z": -393.883972 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3d6df899-9a65-48d3-9e55-2664c6c6c4c0", - "Infiltration": "Common", - "Position": { - "x": -168.21, - "y": 0.06, - "z": -417.04 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "40b7da99-8f93-4ca6-bb33-c94b8a7c92a7", - "Infiltration": "Common", - "Position": { - "x": -264.74, - "y": -3.99, - "z": -390.32 - }, - "Rotation": 15.050004, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "461de8d5-6efe-4d47-8833-4298d14d5dc0", - "Infiltration": "", - "Position": { - "x": -279.611, - "y": 0.078, - "z": -365.445984 - }, - "Rotation": 197.191254, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4654cec6-f2e9-4118-830e-d633b39375f4", - "Infiltration": "Common", - "Position": { - "x": -219.157, - "y": -3.997, - "z": -385.369 - }, - "Rotation": 270.60022, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "49367d3d-95f6-4b3f-9406-693ab39259bd", - "Infiltration": "Common", - "Position": { - "x": -122.74, - "y": 8.16, - "z": -333.35 - }, - "Rotation": 267.44, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4c524643-e17e-4d20-ae81-d47fb4a1701a", - "Infiltration": "Common", - "Position": { - "x": -168.83, - "y": 0.08, - "z": -263.93 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "4f5d267c-f86b-4cde-ba2c-1558f6be7279", - "Infiltration": "", - "Position": { - "x": -205.29, - "y": 0.0499999523, - "z": -390.55 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "4f8abb15-998a-47ff-9352-84e5be19f44b", - "Infiltration": "", - "Position": { - "x": -134.355011, - "y": 4.181, - "z": -341.102 - }, - "Rotation": 273.155945, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "505b3a49-81fd-49e8-8ff1-fbee3af0fadf", - "Infiltration": "Common", - "Position": { - "x": -170.54, - "y": 0.08, - "z": -264.03 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "53f65149-ac7d-453a-8536-364911b6a114", - "Infiltration": "", - "Position": { - "x": -199.41, - "y": 4.127, - "z": -296.5 - }, - "Rotation": 85.5867, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5aed643f-3714-49fc-bdf8-00168189da61", - "Infiltration": "Common", - "Position": { - "x": -170.58, - "y": 0.06, - "z": -416.83 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5efaabad-3df0-451c-ae8c-df707c90d24f", - "Infiltration": "Common", - "Position": { - "x": -167.87, - "y": 0.06, - "z": -419.56 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5f925d72-bfd0-4add-b89b-9fec63005145", - "Infiltration": "Common", - "Position": { - "x": -166.184, - "y": 0.08, - "z": -263.506 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5f97a1fc-1cc0-4cb6-85dc-ab20c9d90fea", - "Infiltration": "Common", - "Position": { - "x": -278.54, - "y": -4.03, - "z": -352 - }, - "Rotation": 73.55, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5f9d0c13-d935-48f5-9112-0852d8e8d9e0", - "Infiltration": "Common", - "Position": { - "x": -125.38, - "y": -4.97, - "z": -264.91 - }, - "Rotation": 270.629974, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "604f6db8-2519-42b8-8d45-7b1b1290e97d", - "Infiltration": "Common", - "Position": { - "x": -276.1, - "y": 0.06, - "z": -333.32 - }, - "Rotation": 72.84, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "606fbd9c-1111-4536-99cb-79b9c2479593", - "Infiltration": "", - "Position": { - "x": -213.124, - "y": 0.05, - "z": -378.754974 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "616552c2-e458-4b8c-b39b-4e26083cd722", - "Infiltration": "Common", - "Position": { - "x": -253.22, - "y": 4.14, - "z": -282.73 - }, - "Rotation": 69.22, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "63a12c08-6718-4344-b9c4-d9c2b0550faa", - "Infiltration": "Common", - "Position": { - "x": -279.36, - "y": 0.06, - "z": -334.88 - }, - "Rotation": 88.69, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "65372346-89b9-4c52-94af-7bb4d474daa5", - "Infiltration": "Common", - "Position": { - "x": -236.02, - "y": 0.09, - "z": -419.81 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "666a2681-4a93-4b9c-b96d-a1419149069d", - "Infiltration": "Common", - "Position": { - "x": -115.122, - "y": -4.015, - "z": -328.625 - }, - "Rotation": 272.3587, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "666b38f8-c232-4b2e-994e-ead3b121990c", - "Infiltration": "Common", - "Position": { - "x": -219.433, - "y": -3.997, - "z": -383.072 - }, - "Rotation": 270.60022, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "66ea0d24-890a-4a5b-a0d1-2e13629f26b7", - "Infiltration": "Common", - "Position": { - "x": -115.164, - "y": -4.015, - "z": -327.156 - }, - "Rotation": 272.3587, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6715c896-cb94-4e04-8cea-06d8dd685f83", - "Infiltration": "Common", - "Position": { - "x": -263, - "y": 0.06, - "z": -388.23 - }, - "Rotation": 176.41, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6ac4a2e0-f06e-4098-908f-c04ebfeada8c", - "Infiltration": "Common", - "Position": { - "x": -253.24, - "y": 4.14, - "z": -279.92 - }, - "Rotation": 101.94, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6b542eec-7db1-48e5-81ff-32af5b120663", - "Infiltration": "Common", - "Position": { - "x": -122.48, - "y": 8.2, - "z": -338.15 - }, - "Rotation": 344.97, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "6b60909d-5251-4149-ae99-2e5fd8204f23", - "Infiltration": "", - "Position": { - "x": -116.4, - "y": 0.004, - "z": -256.52 - }, - "Rotation": 263.038635, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6e2cf61e-85a6-4cfa-b232-ae4cd892e4e0", - "Infiltration": "Common", - "Position": { - "x": -115.67, - "y": 0.01, - "z": -256.94 - }, - "Rotation": 188.05, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "707edb2a-0cbb-4c12-9fc5-49a34af4779d", - "Infiltration": "Common", - "Position": { - "x": -279.1, - "y": 0.06, - "z": -337.01 - }, - "Rotation": 73.88, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "70a6af86-3b7a-4687-8128-ff324774cf6f", - "Infiltration": "Common", - "Position": { - "x": -256.67, - "y": -3.97, - "z": -295.16 - }, - "Rotation": 179.01, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "71528dc9-436b-4b2f-9cd0-86e843178faa", - "Infiltration": "", - "Position": { - "x": -257.955017, - "y": 0.0090277195, - "z": -385.453 - }, - "Rotation": 184.764816, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "74619df7-5a9c-40a0-8558-f7eec50cf388", - "Infiltration": "", - "Position": { - "x": -178.15, - "y": 0.114, - "z": -415.292 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneGate2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "747f2875-8f64-4629-94f3-71321cf8d00e", - "Infiltration": "", - "Position": { - "x": -245.28, - "y": 2.664, - "z": -452.873 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "75febbcd-6f56-495e-a74a-e93f0f8b7827", - "Infiltration": "Common", - "Position": { - "x": -269.34, - "y": -2.06, - "z": -387.7 - }, - "Rotation": 90.05, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7859f63b-aff6-4bb5-9423-1fc08f2120b9", - "Infiltration": "Common", - "Position": { - "x": -177.039, - "y": 0.099, - "z": -312.504 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7a9b1874-adec-4a4a-bcab-04265a114afa", - "Infiltration": "Common", - "Position": { - "x": -122.3, - "y": 8.19, - "z": -336.07 - }, - "Rotation": 348.83, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "7af1c11a-5946-4356-add6-409b9c7d54be", - "Infiltration": "", - "Position": { - "x": -279.611, - "y": 0.078, - "z": -365.445984 - }, - "Rotation": 197.191254, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7b8911d0-dc36-43f1-9058-451f4cc6f362", - "Infiltration": "Common", - "Position": { - "x": -256.56, - "y": 4.14, - "z": -282.41 - }, - "Rotation": 89.19, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7c978d56-01bd-4010-bf0c-80d4b52aba4a", - "Infiltration": "Common", - "Position": { - "x": -216.98, - "y": -3.997, - "z": -385.218 - }, - "Rotation": 270.60022, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneGate1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "7d2e52a2-4f79-4be7-8082-a59bba591c28", - "Infiltration": "", - "Position": { - "x": -183.645, - "y": 2.711, - "z": -227.118988 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "7e5708fe-ef38-4a0c-8525-356be4e04dc7", - "Infiltration": "", - "Position": { - "x": -184.597, - "y": 0.114, - "z": -416.456 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "7f166814-529e-46fd-8526-e7e1eea2af17", - "Infiltration": "", - "Position": { - "x": -275.248, - "y": 0.078, - "z": -381.095978 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "832a9963-7ad2-436b-8140-9d52d113afba", - "Infiltration": "Common", - "Position": { - "x": -171.669, - "y": 0.11, - "z": -309.753 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "84fa5d1e-635b-439a-8f61-26eb2e37f36f", - "Infiltration": "Common", - "Position": { - "x": -237.693, - "y": 0.09, - "z": -418.472 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneGate1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "85bdcb26-519e-464d-bc60-90c0d496cd25", - "Infiltration": "", - "Position": { - "x": -157.212, - "y": 2.711, - "z": -227.040985 - }, - "Rotation": 324.67, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "863a8fba-0b54-4c06-9a4e-498298c7f938", - "Infiltration": "Common", - "Position": { - "x": -177.61, - "y": 0.03, - "z": -320.17 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8804ccce-fc0a-488f-9a50-12837e382ae9", - "Infiltration": "Common", - "Position": { - "x": -173.52, - "y": 0.03, - "z": -323.95 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "8ce350f3-7654-45b1-8e6e-5818c2686426", - "Infiltration": "", - "Position": { - "x": -207.064, - "y": 4.207, - "z": -295.159 - }, - "Rotation": 113.883675, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8f160eaa-3467-4059-a46a-ecd5b510a21e", - "Infiltration": "Common", - "Position": { - "x": -168, - "y": 0.08, - "z": -264.01 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9174a2bb-e647-40d2-9f27-b02bb4256e5a", - "Infiltration": "Common", - "Position": { - "x": -113.01, - "y": 4.2, - "z": -416.83 - }, - "Rotation": 105.150009, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "92cd8ec7-d9d3-4917-bc3a-782abf0574f9", - "Infiltration": "Common", - "Position": { - "x": -167.26, - "y": 0.08, - "z": -263.79 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "93e73b75-40f6-48ec-9c41-a722c79b36df", - "Infiltration": "Common", - "Position": { - "x": -125.79, - "y": -4.97, - "z": -263.38 - }, - "Rotation": 269.17, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9781bf62-5817-49c8-91f5-e1718080f43c", - "Infiltration": "Common", - "Position": { - "x": -167.24, - "y": 0.11, - "z": -312.6 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9896b358-7857-4dfc-baba-c9ff10f4b288", - "Infiltration": "Common", - "Position": { - "x": -171.54, - "y": 0.11, - "z": -312.18 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "98f72004-624d-4a11-a551-9b5150456369", - "Infiltration": "Common", - "Position": { - "x": -134.75, - "y": -4.97, - "z": -263.9 - }, - "Rotation": 95.68, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "994bc745-d017-41fe-a2cb-f26d13e016e6", - "Infiltration": "Common", - "Position": { - "x": -168.02, - "y": -3.99, - "z": -337.48 - }, - "Rotation": 85.92, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9ad6d872-4797-47a9-a5a6-b4675b478913", - "Infiltration": "Common", - "Position": { - "x": -120.62, - "y": 0.01, - "z": -253.47 - }, - "Rotation": 176.08, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9ae1736f-4869-4c3b-99c2-5825878573d8", - "Infiltration": "Common", - "Position": { - "x": -172, - "y": 0.03, - "z": -325.71 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9b5e4910-ca9a-49bb-ac83-0f5e6299fa12", - "Infiltration": "Common", - "Position": { - "x": -169.71, - "y": 0.08, - "z": -264 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9c1654a5-3808-4d52-becd-066428ec0660", - "Infiltration": "Common", - "Position": { - "x": -112.04, - "y": 4.2, - "z": -413.63 - }, - "Rotation": 181.81, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9cc6492e-477a-419b-84c4-c9f02c3715fe", - "Infiltration": "Common", - "Position": { - "x": -235.172, - "y": 0.09, - "z": -418.466 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a0fdcb82-40f8-4996-83e5-39389c6b846a", - "Infiltration": "Common", - "Position": { - "x": -125.39, - "y": 4.13, - "z": -338.41 - }, - "Rotation": 75.25, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneGate2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "a273a838-1560-4423-8194-d95185114493", - "Infiltration": "", - "Position": { - "x": -215.217, - "y": 2.664, - "z": -448.71 - }, - "Rotation": 181.596954, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a35626aa-d89e-4ace-8bff-5b7582f6bc30", - "Infiltration": "Common", - "Position": { - "x": -166.02, - "y": 0.11, - "z": -314.364 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "a3789b1a-5689-4609-a15e-35ecb8910e6d", - "Infiltration": "", - "Position": { - "x": -116.089, - "y": 0.036, - "z": -339.412 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a55e3167-efff-4d96-807b-1e5de515bcca", - "Infiltration": "Common", - "Position": { - "x": -269.88, - "y": -2.06, - "z": -390.79 - }, - "Rotation": 100.34, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a98ef4db-61cc-4588-a8e8-52e59ce8bace", - "Infiltration": "Common", - "Position": { - "x": -205.847, - "y": 4.16135359, - "z": -289.085 - }, - "Rotation": 89.0511551, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "a9cdf626-2906-405c-a39b-669cb741c98c", - "Infiltration": "", - "Position": { - "x": -248.84, - "y": 4.231, - "z": -362.24 - }, - "Rotation": 175.868637, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "aa22008a-0429-4f85-9024-b6118b73a5d6", - "Infiltration": "", - "Position": { - "x": -134.647, - "y": 4.181, - "z": -346.005981 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ab9fb40e-790c-40f2-aae0-f191aaecbf7e", - "Infiltration": "Common", - "Position": { - "x": -252.58, - "y": -4.02, - "z": -293.91 - }, - "Rotation": 53.9400024, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ad74c165-363f-4706-999c-2d33396865e4", - "Infiltration": "Common", - "Position": { - "x": -118.55, - "y": 0.01, - "z": -252.22 - }, - "Rotation": 181.29, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "af9b450f-11df-4411-b92b-4df4ecc7504b", - "Infiltration": "Common", - "Position": { - "x": -169.31, - "y": 0.11, - "z": -310.88 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b71e139d-c363-4b9a-b87e-1a6bef552641", - "Infiltration": "Common", - "Position": { - "x": -170.49, - "y": 0.06, - "z": -419.39 - }, - "Rotation": 349.64, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneGate1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "b757f551-4421-436b-af49-91844c1b848f", - "Infiltration": "", - "Position": { - "x": -184.359, - "y": 2.711, - "z": -222.758987 - }, - "Rotation": 151.039291, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b89c86e5-5e60-4f09-96a9-8831685d807c", - "Infiltration": "Common", - "Position": { - "x": -205.86, - "y": 4.16135359, - "z": -293.588 - }, - "Rotation": 89.0511551, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bcf0ec7f-9673-4fa1-aede-fdc6d6dd616b", - "Infiltration": "Common", - "Position": { - "x": -257.18, - "y": 4.14, - "z": -280.05 - }, - "Rotation": 92.97, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bf1d14c2-2c9b-4921-8534-76c1ae9430dc", - "Infiltration": "Common", - "Position": { - "x": -276.59, - "y": 0.06, - "z": -335.35 - }, - "Rotation": 141.39, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneBasement", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 4, - "Id": "c1270e3a-65da-430f-9522-8bc2fecbfc63", - "Infiltration": "", - "Position": { - "x": -141.92, - "y": -4.041, - "z": -416.659973 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c3a0e266-3318-4db6-9c31-b7b780686ea8", - "Infiltration": "Common", - "Position": { - "x": -217.284, - "y": -3.997, - "z": -383.273 - }, - "Rotation": 270.60022, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c40614b7-e0bc-4a8a-944d-bcaca72a32fb", - "Infiltration": "Common", - "Position": { - "x": -269.9, - "y": -2.06, - "z": -392.32 - }, - "Rotation": 86.23, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c59b04c4-0ceb-4af0-851e-2f81a7a02c02", - "Infiltration": "Common", - "Position": { - "x": -177.67, - "y": 0.03, - "z": -322.13 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c7d01076-c9a0-4162-923e-bb2f51248500", - "Infiltration": "Common", - "Position": { - "x": -170.8, - "y": -3.99, - "z": -342.4 - }, - "Rotation": 89.61, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c7f058cd-cff0-4f4b-9bf1-dc6632c63eaf", - "Infiltration": "Common", - "Position": { - "x": -177.81, - "y": 0.099, - "z": -309.65 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c9cb436b-9821-44ef-8ac8-fbef720f45d8", - "Infiltration": "Common", - "Position": { - "x": -171.01, - "y": -3.99, - "z": -337.56 - }, - "Rotation": 101.11, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 4, - "Id": "cb6fb7f0-2ecc-4cb0-a3f6-5814d8ecc410", - "Infiltration": "", - "Position": { - "x": -127.768, - "y": 4.2, - "z": -382.271973 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cf866867-a4ba-4355-bfac-198ca52e755c", - "Infiltration": "Common", - "Position": { - "x": -251.1, - "y": -3.98, - "z": -296.64 - }, - "Rotation": 65.65, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cfd895b4-b565-4c8a-a10b-ac2058b019af", - "Infiltration": "Common", - "Position": { - "x": -127.46, - "y": 6.18, - "z": -333.57 - }, - "Rotation": 176.03, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "cff559a6-e9cf-447c-a432-2e872fa14e1d", - "Infiltration": "", - "Position": { - "x": -206.267, - "y": 1.51, - "z": -290.977 - }, - "Rotation": 184.024811, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneBasement", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "d03b1791-4b04-40bc-b099-46c565862277", - "Infiltration": "", - "Position": { - "x": -244.796, - "y": -4.001, - "z": -414.788 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d188e22c-8216-4371-b9af-8e900e372ea3", - "Infiltration": "Common", - "Position": { - "x": -250.03, - "y": -4.01, - "z": -293.72 - }, - "Rotation": 111.51, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d1b3cb3f-042c-4698-9284-9cb3985eca30", - "Infiltration": "Common", - "Position": { - "x": -166.24, - "y": 0.07, - "z": -320.7 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d37a7f14-534d-4f8c-86cc-b107bb5380d5", - "Infiltration": "Common", - "Position": { - "x": -239.31, - "y": 0.09, - "z": -418.55 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d385b5f5-d5c6-4f6a-9486-e128cbba2da6", - "Infiltration": "Common", - "Position": { - "x": -162.717, - "y": 0.068, - "z": -321.183 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d3951942-a8b7-48a8-b38d-edc4299499aa", - "Infiltration": "Common", - "Position": { - "x": -233.073, - "y": 0.09, - "z": -419.772 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d3c624f1-7e3d-41b2-a7a3-9e05314a413f", - "Infiltration": "Common", - "Position": { - "x": -236.2, - "y": 0.09, - "z": -418.442 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d7eb2d80-10a1-48e1-b214-d7cac5eff13a", - "Infiltration": "Common", - "Position": { - "x": -207.754, - "y": 4.16135359, - "z": -295.225 - }, - "Rotation": 89.0511551, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "d997c558-0b61-4fab-bdc3-9b7543fee051", - "Infiltration": "", - "Position": { - "x": -224.879, - "y": 0.082, - "z": -279.867 - }, - "Rotation": 164.3535, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "db3d7424-1f39-4e33-b4d2-26821477c010", - "Infiltration": "Common", - "Position": { - "x": -206.7, - "y": 4.16135359, - "z": -290.493 - }, - "Rotation": 89.0511551, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "dd19a5a1-b24b-4b4c-b0ff-12567bc35c48", - "Infiltration": "Common", - "Position": { - "x": -166.67, - "y": 0.06, - "z": -416.11 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ddcd040c-42b2-4586-879d-f9d07d9737ce", - "Infiltration": "Common", - "Position": { - "x": -164.17, - "y": 0.14, - "z": -327.99 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "de98318f-4443-4cb1-92be-52e49fcdddd0", - "Infiltration": "Common", - "Position": { - "x": -135.21, - "y": -4.97, - "z": -265.53 - }, - "Rotation": 95.68, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e1270dab-99e1-442a-a32e-63aa4af0f719", - "Infiltration": "Common", - "Position": { - "x": -112.6, - "y": 4.2, - "z": -419.06 - }, - "Rotation": 79.99, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e809f94e-aedb-4f69-98eb-9f1d94288d86", - "Infiltration": "Common", - "Position": { - "x": -116.615, - "y": -4.002, - "z": -398.184 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "eb45ebae-4f05-49d4-b5d7-8851ba7f042b", - "Infiltration": "Common", - "Position": { - "x": -233.962, - "y": 0.09, - "z": -418.431 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "ec7553c5-ee02-4c0f-9c68-4879ae217556", - "Infiltration": "", - "Position": { - "x": -116.011, - "y": 0.036, - "z": -336.378 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "effc8ec3-29a6-4531-89eb-a23ab350d015", - "Infiltration": "Common", - "Position": { - "x": -165.97, - "y": 0.11, - "z": -324.76 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f3b5e0b0-0996-4191-81f3-a709b324d5b9", - "Infiltration": "Common", - "Position": { - "x": -108.59, - "y": 4.2, - "z": -413.89 - }, - "Rotation": 204.36, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneGate2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "f41dc624-2d0a-4f46-9f46-57956e3892a2", - "Infiltration": "", - "Position": { - "x": -244.101, - "y": 2.664, - "z": -452.923981 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f86c5106-44cb-4e1e-b346-4df5c817664e", - "Infiltration": "Common", - "Position": { - "x": -116.276, - "y": -4.025, - "z": -404.21 - }, - "Rotation": 161.982117, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f9ba0574-638b-4900-874c-21b6f4d5e6b4", - "Infiltration": "Common", - "Position": { - "x": -164.87, - "y": 0.14, - "z": -326.37 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "fa6ab194-d384-4730-979f-cc84e7fac828", - "Infiltration": "", - "Position": { - "x": -231.636, - "y": 0.082, - "z": -286.69397 - }, - "Rotation": 164.3535, - "Sides": [ - "Savage" - ] - } - ], - "UnixDateTime": 1636383862, - "_Id": "5b0fc42d86f7744a585f9105", - "doors": [], - "exit_access_time": 60, - "exit_count": 1, - "exit_time": 1, - "exits": [ - { - "Chance": 60, - "ChancePVE": 60, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationTimePVE": 10, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "lab_Parking_Gate", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 60, - "ChancePVE": 60, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationTimePVE": 10, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "lab_Hangar_Gate", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 5, - "ExfiltrationTimePVE": 5, - "ExfiltrationType": "Manual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "lab_Elevator_Med", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationTimePVE": 10, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "lab_Under_Storage_Collector", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 5, - "ExfiltrationTimePVE": 5, - "ExfiltrationType": "Manual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "lab_Elevator_Main", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 15, - "ExfiltrationTimePVE": 15, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "lab_Vent", - "PassageRequirement": "Empty", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "Backpack", - "RequirementTip": "EXFIL_tip_backpack" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationTimePVE": 10, - "ExfiltrationType": "Manual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "lab_Elevator_Cargo", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - } - ], - "filter_ex": [], - "limits": [], - "matching_min_seconds": 60, - "maxItemCountInLocation": [ - { - "TemplateId": "634959225289190e5e773b3b", - "Value": 7 - }, - { - "TemplateId": "5c0530ee86f774697952d952", - "Value": 2 - } - ], - "sav_summon_seconds": 60, - "tmp_location_field_remove_me": 111, - "transits": [ - { - "activateAfterSec": 60, - "active": true, - "conditions": "LAB_TRANSIT_8_COND", - "description": "LAB_TRANSIT_8_DESC", - "id": 8, - "location": "TarkovStreets", - "name": "LAB_TRANSIT_8", - "target": "5714dc692459777137212e12", - "time": 30 - } - ], - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "waves": [] -} diff --git a/project/assets/database/locations/laboratory/looseLoot.json b/project/assets/database/locations/laboratory/looseLoot.json deleted file mode 100644 index 5a4d6a51..00000000 --- a/project/assets/database/locations/laboratory/looseLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0470f0b34353313c7eddfed071669b470de68c65550b2331c49627070c3fe3c0 -size 24002929 diff --git a/project/assets/database/locations/laboratory/staticAmmo.json b/project/assets/database/locations/laboratory/staticAmmo.json deleted file mode 100644 index 8329d0c0..00000000 --- a/project/assets/database/locations/laboratory/staticAmmo.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a105ceb0bfafbdb1b9ddbee5490df033196a52f5464d25f34857ae16d3ea27b7 -size 10485 diff --git a/project/assets/database/locations/laboratory/staticContainers.json b/project/assets/database/locations/laboratory/staticContainers.json deleted file mode 100644 index 76860f91..00000000 --- a/project/assets/database/locations/laboratory/staticContainers.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eeace0ad0e1d800a658a762f03c02e806d6b5e70800281b74d00de9db84e5cf4 -size 130829 diff --git a/project/assets/database/locations/laboratory/staticLoot.json b/project/assets/database/locations/laboratory/staticLoot.json deleted file mode 100644 index 799fe801..00000000 --- a/project/assets/database/locations/laboratory/staticLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:08afb41a2088d1ab32c105a37f3591d5a720529803ba71f12edefcdef3dc76e7 -size 522976 diff --git a/project/assets/database/locations/laboratory/statics.json b/project/assets/database/locations/laboratory/statics.json deleted file mode 100644 index 5b888b68..00000000 --- a/project/assets/database/locations/laboratory/statics.json +++ /dev/null @@ -1,979 +0,0 @@ -{ - "containersGroups": { - "tool&others_crate_outdoors": { - "minContainers": 21, - "maxContainers": 22 - }, - "weapon_crate_closed": { - "minContainers": 20, - "maxContainers": 25 - }, - "weapon_crate_outdoors": { - "minContainers": 25, - "maxContainers": 27 - }, - "outdoors_bags": { - "minContainers": 26, - "maxContainers": 28 - } - }, - "containers": { - "container_Laboratory_DesignStuff_00137": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00136": { - "groupId": "" - }, - "Lootable_00002": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00133": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00129": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00130": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00132": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00131": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00127": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00128": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00126": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00125": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00092": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00091": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00093": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00094": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00135": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00069": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00070": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00068": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00067": { - "groupId": "" - }, - "Lootable_00001": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00085": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00086": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00084": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00083": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00074": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00073": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00071": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00072": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00134": { - "groupId": "" - }, - "Lootable_00000": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00076": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00075": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00077": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00078": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00121": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00122": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00124": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00123": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00081": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00082": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00080": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00079": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00138": { - "groupId": "" - }, - "Lootable_00007": { - "groupId": "" - }, - "Lootable_00008": { - "groupId": "" - }, - "Lootable_00006": { - "groupId": "" - }, - "Lootable_00005": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00097": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00098": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00096": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00095": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00087": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00088": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00090": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00089": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00016": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00055": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00006": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00053": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00029": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00022": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00036": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00046": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00050": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00004": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00018": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00002": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00008": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00066": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00000": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00054": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00037": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00047": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00065": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00041": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00064": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00010": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00023": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00014": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00034": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00001": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00038": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00052": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00040": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00031": { - "groupId": "outdoors_bags" - }, - "container_Test_for_export_00000": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00021": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00030": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00062": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00007": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00024": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00057": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00059": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00061": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00048": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00003": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00056": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00063": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00058": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00049": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00013": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00026": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00032": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00019": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00043": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00039": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00017": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00060": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00012": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00051": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00027": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00005": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00025": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00045": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00009": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00035": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00033": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00028": { - "groupId": "outdoors_bags" - }, - "Lootable_00011": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00015": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00042": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00011": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00020": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00044": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00291": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00284": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00289": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00283": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00287": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00288": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00286": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00290": { - "groupId": "outdoors_bags" - }, - "container_Laboratory_DesignStuff_00281": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00285": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00280": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00118": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00232": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00120": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00233": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00207": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00108": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00206": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00278": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00119": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00277": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00109": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00295": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00292": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00294": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00293": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00301": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00236": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00264": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00258": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00260": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00261": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00252": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00262": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00250": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00247": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00268": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00269": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00267": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00249": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00256": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00270": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00242": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00237": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00240": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00253": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00271": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00265": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_Medical_corridor_floor_1_00001": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00239": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00255": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00251": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00263": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00243": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00248": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00241": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00235": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00254": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00246": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00245": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00259": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00266": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00244": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00272": { - "groupId": "tool&others_crate_outdoors" - }, - "container_ProfileEditor_00002": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00276": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00274": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00275": { - "groupId": "" - }, - "Lootable_00004": { - "groupId": "" - }, - "container_Test_for_export_00001": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00273": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00107": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00231": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00117": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00205": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00201": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00116": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00226": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00106": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00225": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00200": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00115": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00105": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00224": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00227": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00198": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00199": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00173": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00146": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00174": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00164": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00167": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00178": { - "groupId": "" - }, - "Lootable_00065": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00156": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00153": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00170": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00168": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00159": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00166": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00179": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00172": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00154": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00139": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00152": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00177": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00180": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00143": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00162": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00149": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00144": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00147": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00141": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00175": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00163": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00161": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00169": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00148": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00165": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00150": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00181": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00176": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00160": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00142": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00151": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00171": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00145": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00155": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00158": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00140": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00157": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00238": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00234": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00257": { - "groupId": "tool&others_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00208": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00202": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00230": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00203": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00228": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00204": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00229": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00104": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00102": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00113": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00114": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00103": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00099": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00101": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00215": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00214": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00190": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00183": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00100": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00210": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00211": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00186": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00187": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00213": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00184": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00216": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00185": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00112": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00111": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00188": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00209": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00110": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00189": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00182": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00212": { - "groupId": "weapon_crate_outdoors" - }, - "container_Test_for_export_00002": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00197": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00221": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00222": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00193": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00223": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00191": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00192": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00219": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00196": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00220": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00218": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00217": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00194": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00195": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_Medical_corridor_floor_1_00000": { - "groupId": "" - }, - "container_Laboratory_DesignStuff_00282": { - "groupId": "weapon_crate_outdoors" - }, - "container_Laboratory_DesignStuff_00297": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00299": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00303": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00298": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00302": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00300": { - "groupId": "weapon_crate_closed" - }, - "container_Laboratory_DesignStuff_00296": { - "groupId": "weapon_crate_closed" - } - } -} \ No newline at end of file diff --git a/project/assets/database/locations/lighthouse/allExtracts.json b/project/assets/database/locations/lighthouse/allExtracts.json deleted file mode 100644 index b195b531..00000000 --- a/project/assets/database/locations/lighthouse/allExtracts.json +++ /dev/null @@ -1,278 +0,0 @@ -[ - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 400, - "CountPve": 0, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 5.0, - "ExfiltrationTimePVE": 5.0, - "ExfiltrationType": "SharedTimer", - "Id": "0", - "MinTime": 1200.0, - "MinTimePVE": 1200.0, - "MaxTime": 1500.0, - "MaxTimePVE": 1500.0, - "Name": "EXFIL_Train", - "PassageRequirement": "Train", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "TIP IS HARDCODED", - "Side": "Coop" - }, - { - "Chance": 50.0, - "ChancePVE": 50.0, - "Count": 5000, - "CountPve": 0, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 60.0, - "ExfiltrationTimePVE": 60.0, - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": " V-Ex_light", - "PassageRequirement": "TransferItem", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Item", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "SharedTimer", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "tunnel_shared", - "PassageRequirement": "ScavCooperation", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Cooperate", - "Side": "Coop" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "Alpinist", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Alpinist_light", - "PassageRequirement": "Reference", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Shorl_free", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Tunnel", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Nothern_Checkpoint", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Coastal_South_Road", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Shorl_free_scav", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Scav_Coastal_South", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Scav_Underboat_Hideout", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Scav_Hideout_at_the_grotto", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Scav_Industrial_zone", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - } -] \ No newline at end of file diff --git a/project/assets/database/locations/lighthouse/base.json b/project/assets/database/locations/lighthouse/base.json deleted file mode 100644 index fe944001..00000000 --- a/project/assets/database/locations/lighthouse/base.json +++ /dev/null @@ -1,8331 +0,0 @@ -{ - "AccessKeys": [], - "AccessKeysPvE": [], - "AirdropParameters": [ - { - "AirdropPointDeactivateDistance": 50, - "MinPlayersCountToSpawnAirdrop": 6, - "PlaneAirdropChance": 0.2, - "PlaneAirdropCooldownMax": 800, - "PlaneAirdropCooldownMin": 700, - "PlaneAirdropEnd": 1500, - "PlaneAirdropMax": 1, - "PlaneAirdropStartMax": 900, - "PlaneAirdropStartMin": 300, - "UnsuccessfulTryPenalty": 600 - } - ], - "Area": 0, - "AveragePlayTime": 30, - "AveragePlayerLevel": 35, - "Banners": [ - { - "id": "5464e0454bdc2d06708b4567", - "pic": { - "path": "CONTENT/banners/banner_bear.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT/banners/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "64c0acf85174e095610734a0", - "pic": { - "path": "CONTENT/banners/banner_sherpa.jpg", - "rcid": "" - } - } - ], - "BossLocationSpawn": [ - { - "BossChance": 100, - "BossDifficult": "normal", - "BossEscortAmount": "2", - "BossEscortDifficult": "normal", - "BossEscortType": "followerZryachiy", - "BossName": "bossZryachiy", - "BossPlayer": false, - "BossZone": "Zone_Island", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "0", - "BossEscortDifficult": "normal", - "BossEscortType": "exUsec", - "BossName": "bossPartisan", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": true, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": 900, - "TriggerId": "PARTISAN_TRIGGER", - "TriggerName": "botEvent" - }, - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "2", - "BossEscortDifficult": "normal", - "BossEscortType": "exUsec", - "BossName": "bossKnight", - "BossPlayer": false, - "BossZone": "Zone_TreatmentContainers,Zone_Chalet", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": true, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": [ - { - "BossEscortAmount": "1", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerBigPipe" - }, - { - "BossEscortAmount": "1", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerBirdEye" - }, - { - "BossEscortAmount": "0", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerGluharScout" - } - ], - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 80, - "BossDifficult": "normal", - "BossEscortAmount": "1", - "BossEscortDifficult": "normal", - "BossEscortType": "exUsec", - "BossName": "exUsec", - "BossPlayer": false, - "BossZone": "Zone_Blockpost", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 80, - "BossDifficult": "normal", - "BossEscortAmount": "1,2", - "BossEscortDifficult": "normal", - "BossEscortType": "exUsec", - "BossName": "exUsec", - "BossPlayer": false, - "BossZone": "Zone_RoofContainers", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,2", - "BossEscortDifficult": "normal", - "BossEscortType": "exUsec", - "BossName": "exUsec", - "BossPlayer": false, - "BossZone": "Zone_TreatmentRocks", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,2", - "BossEscortDifficult": "normal", - "BossEscortType": "exUsec", - "BossName": "exUsec", - "BossPlayer": false, - "BossZone": "Zone_TreatmentBeach", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 0, - "BossDifficult": "normal", - "BossEscortAmount": "2", - "BossEscortDifficult": "normal", - "BossEscortType": "exUsec", - "BossName": "exUsec", - "BossPlayer": false, - "BossZone": "Zone_Island", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 80, - "BossDifficult": "normal", - "BossEscortAmount": "0", - "BossEscortDifficult": "normal", - "BossEscortType": "exUsec", - "BossName": "exUsec", - "BossPlayer": false, - "BossZone": "Zone_RoofRocks", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 80, - "BossDifficult": "normal", - "BossEscortAmount": "1", - "BossEscortDifficult": "normal", - "BossEscortType": "exUsec", - "BossName": "exUsec", - "BossPlayer": false, - "BossZone": "Zone_RoofBeach", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 20, - "BossDifficult": "normal", - "BossEscortAmount": "1,2", - "BossEscortDifficult": "normal", - "BossEscortType": "exUsec", - "BossName": "exUsec", - "BossPlayer": false, - "BossZone": "Zone_Hellicopter", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,2,2,2,1,1,1,1,1", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 5, - "BossDifficult": "normal", - "BossEscortAmount": "2", - "BossEscortDifficult": "normal", - "BossEscortType": "crazyAssaultEvent", - "BossName": "crazyAssaultEvent", - "BossPlayer": false, - "BossZone": "Zone_OldHouse", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": [], - "Time": -1, - "TriggerId": "", - "TriggerName": "" - } - ], - "BotAssault": 100, - "BotEasy": 10, - "BotHard": 40, - "BotImpossible": 0, - "BotLocationModifier": { - "AccuracySpeed": 0.6, - "AdditionalHostilitySettings": [ - { - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 75, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcBEAR", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - }, - { - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 90, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcUSEC", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - } - ], - "DistToActivate": 330, - "DistToActivatePvE": 330, - "DistToPersueAxemanCoef": 0.7, - "DistToSleep": 350, - "DistToSleepPvE": 350, - "GainSight": 1.3, - "KhorovodChance": 0, - "MarksmanAccuratyCoef": 1, - "MaxExfiltrationTime": 1800, - "MinExfiltrationTime": 1200, - "Scattering": 0.6, - "VisibleDistance": 1.3 - }, - "BotMarksman": 0, - "BotMax": 22, - "BotMaxPlayer": 7, - "BotMaxPvE": 29, - "BotMaxTimePlayer": 1000, - "BotNormal": 50, - "BotSpawnCountStep": 3, - "BotSpawnPeriodCheck": 15, - "BotSpawnTimeOffMax": 30, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOnMax": 320, - "BotSpawnTimeOnMin": 260, - "BotStart": 20, - "BotStartPlayer": 550, - "BotStop": 1900, - "Description": "The lighthouse at Cape Dalniy used to be an important strategic point of the city. At the outbreak of the conflict, USEC used it as a landing zone, thus attracting the attention of BEAR troops that aimed to reduce the hostile PMC presence to zero. ", - "DisabledForScav": false, - "DisabledScavExits": "", - "EnableCoop": true, - "Enabled": true, - "EscapeTimeLimit": 40, - "EscapeTimeLimitCoop": 30, - "EscapeTimeLimitPVE": 40, - "Events": { - "Halloween2024": { - "CrowdAttackBlockRadius": 100, - "CrowdAttackSpawnParams": [ - { - "Difficulty": "easy", - "Role": "infectedAssault", - "Weight": 30 - }, - { - "Difficulty": "normal", - "Role": "infectedAssault", - "Weight": 110 - }, - { - "Difficulty": "hard", - "Role": "infectedAssault", - "Weight": 40 - }, - { - "Difficulty": "easy", - "Role": "infectedPmc", - "Weight": 15 - }, - { - "Difficulty": "normal", - "Role": "infectedPmc", - "Weight": 55 - }, - { - "Difficulty": "hard", - "Role": "infectedPmc", - "Weight": 20 - }, - { - "Difficulty": "easy", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "easy", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedLaborant", - "Weight": 0 - } - ], - "CrowdCooldownPerPlayerSec": 300, - "CrowdsLimit": 2, - "InfectedLookCoeff": 2, - "InfectionPercentage": 0, - "MaxCrowdAttackSpawnLimit": 18, - "MinInfectionPercentage": 0, - "MinSpawnDistToPlayer": 50, - "TargetPointSearchRadiusLimit": 200, - "ZombieCallDeltaRadius": 20, - "ZombieCallPeriodSec": 1, - "ZombieCallRadiusLimit": 200, - "ZombieMultiplier": 5 - } - }, - "ForceOnlineRaidInPVE": false, - "GenerateLocalLootCache": true, - "GlobalContainerChanceModifier": 1, - "GlobalLootChanceModifier": 0.12, - "GlobalLootChanceModifierPvE": 0.26, - "IconX": 120, - "IconY": 450, - "Id": "Lighthouse", - "Insurance": true, - "IsSecret": false, - "Locked": false, - "Loot": [], - "MatchMakerMinPlayersByWaitTime": [ - { - "minPlayers": 7, - "time": 60 - }, - { - "minPlayers": 6, - "time": 120 - }, - { - "minPlayers": 5, - "time": 180 - }, - { - "minPlayers": 4, - "time": 240 - }, - { - "minPlayers": 3, - "time": 300 - }, - { - "minPlayers": 2, - "time": 360 - }, - { - "minPlayers": 1, - "time": 420 - } - ], - "MaxBotPerZone": 8, - "MaxCoopGroup": 12, - "MaxDistToFreePoint": 200, - "MaxPlayers": 12, - "MinDistToExitPoint": 30, - "MinDistToFreePoint": 70, - "MinMaxBots": [], - "MinPlayerLvlAccessKeys": 0, - "MinPlayers": 10, - "Name": "Lighthouse", - "NewSpawn": true, - "NewSpawnForPlayers": true, - "NonWaveGroupScenario": { - "Chance": 50, - "Enabled": true, - "MaxToBeGroup": 3, - "MinToBeGroup": 2 - }, - "OcculsionCullingEnabled": false, - "OfflineNewSpawn": true, - "OfflineOldSpawn": true, - "OldSpawn": true, - "OpenZones": "Zone_Containers,Zone_Rocks,Zone_Chalet,Zone_Village,Zone_Bridge,Zone_OldHouse,Zone_LongRoad,Zone_DestroyedHouse,Zone_SniperPeak,Zone_Island", - "PlayersRequestCount": -1, - "PmcMaxPlayersInGroup": 5, - "Preview": { - "path": "", - "rcid": "" - }, - "RequiredPlayerLevelMax": 100, - "RequiredPlayerLevelMin": 0, - "Rules": "Normal", - "SafeLocation": false, - "ScavMaxPlayersInGroup": 4, - "Scene": { - "path": "maps/lighthouse_preset.bundle", - "rcid": "lighthouse.scenespreset.asset" - }, - "SpawnPointParams": [ - { - "BotZoneName": "Zone_Bridge", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "000b6c76-206e-4c26-932b-bda107773b32", - "Infiltration": "", - "Position": { - "x": -38.27002, - "y": 5.640217, - "z": -299.52 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Containers", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 4, - "Id": "0156db2d-5136-4bff-a562-9fb4fb952999", - "Infiltration": "", - "Position": { - "x": -131.030029, - "y": 10.5248337, - "z": -807.85 - }, - "Rotation": 71.051445, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "02d3353c-9df3-4ac1-8140-f0d700a95de3", - "Infiltration": "", - "Position": { - "x": -130.450012, - "y": 11.2891312, - "z": -205.959991 - }, - "Rotation": 244.211288, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "035e94f9-c4b3-4e8a-a1a9-7e1b06b2fb75", - "Infiltration": "Tunnel", - "Position": { - "x": 113.112579, - "y": 4.99489975, - "z": 104.740662 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_TreatmentContainers", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 3600, - "Id": "06b05fe3-3a1e-4634-9157-52e02edfb3cc", - "Infiltration": "", - "Position": { - "x": -94.92001, - "y": 4.93265152, - "z": -750.14 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Rocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "071f0fa9-b3dc-44c2-b0ec-1ce2b3c354af", - "Infiltration": "", - "Position": { - "x": -152.920013, - "y": 37.55528, - "z": 138.09 - }, - "Rotation": 128.073547, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "089bb581-e642-43e5-88e9-22ca3accd2ee", - "Infiltration": "", - "Position": { - "x": -197.74, - "y": 5.882332, - "z": -261.949982 - }, - "Rotation": 348.435364, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_TreatmentRocks", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 3600, - "Id": "0a105306-31c1-4408-b1df-86dd3890693c", - "Infiltration": "", - "Position": { - "x": -199.700012, - "y": 4.910652, - "z": -665.11 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Rocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "0c2117e8-6737-4400-9b2f-9215654d779a", - "Infiltration": "", - "Position": { - "x": -128.16, - "y": 39.89565, - "z": 95.26999 - }, - "Rotation": 23.3241863, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Bridge", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "0c4dfb6a-2745-4c43-b3da-3a049334b318", - "Infiltration": "", - "Position": { - "x": -59.11502, - "y": 5.86565, - "z": -290.691 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "10b98bcc-fa01-4045-9de1-31a89b9d2c24", - "Infiltration": "North", - "Position": { - "x": 26.39, - "y": 6.01, - "z": -81.62 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "119b220b-ec7f-41a8-bdb2-eeb831e2c17b", - "Infiltration": "North", - "Position": { - "x": -7.76003075, - "y": 10.89, - "z": -802.78 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "11ce34bc-53bb-4a1b-83d5-140043008d80", - "Infiltration": "North", - "Position": { - "x": 31.67, - "y": 6.66, - "z": -82.54 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "124b1a0f-28da-4de3-b2f6-bfd60da6e44a", - "Infiltration": "North", - "Position": { - "x": 22.8, - "y": 6.01, - "z": -78.84 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_Island", - "Categories": [ - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "189bf4a7-9b7c-4038-b6c8-6f319a0e124f", - "Infiltration": "", - "Position": { - "x": 371.841, - "y": 15.1656494, - "z": 571.147 - }, - "Rotation": 115.016975, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1a79e2ec-b166-437d-a2e2-0d175a882f0d", - "Infiltration": "Tunnel", - "Position": { - "x": 105.9234, - "y": 0.8048973, - "z": 427.2954 - }, - "Rotation": 260.715424, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1ae5dc66-b54c-4584-bc24-174f5b3194ec", - "Infiltration": "North", - "Position": { - "x": -7.620077, - "y": 10.89, - "z": -804.54 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1b65286c-52e8-48ef-a369-e89bfd0ab95e", - "Infiltration": "North", - "Position": { - "x": 6.73, - "y": 6.16, - "z": -18.99 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_RoofBeach", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 3600, - "Id": "1cd9b175-2223-449f-a63b-064a5a860057", - "Infiltration": "", - "Position": { - "x": 29.3799744, - "y": 14.0556488, - "z": -621.069946 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_TreatmentContainers", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 3600, - "Id": "1d327156-2c17-446f-9f62-8400f1178247", - "Infiltration": "", - "Position": { - "x": -106.490021, - "y": 4.94265, - "z": -754.910034 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1f0216f7-aec5-4c69-b217-ecb42c32e1a1", - "Infiltration": "North", - "Position": { - "x": -444.616425, - "y": 28.8648987, - "z": -372.493347 - }, - "Rotation": 294.262756, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_TreatmentBeach", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 3600, - "Id": "21990f73-d577-4f31-a2e7-7a6b905011e2", - "Infiltration": "", - "Position": { - "x": 54.1099854, - "y": 4.95064926, - "z": -606.329956 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "222800ad-50c8-4c75-b94b-ff1ec3d807d0", - "Infiltration": "North", - "Position": { - "x": -13.07, - "y": 10.89, - "z": -801.9 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_DestroyedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 4, - "Id": "23c3b739-987a-42d4-a639-0a55f93bd563", - "Infiltration": "", - "Position": { - "x": 57.3399963, - "y": 12.8756523, - "z": 193.669983 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_LongRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "263cbb1f-5046-49be-8845-652a12561acd", - "Infiltration": "", - "Position": { - "x": 44.8999939, - "y": 2.95565033, - "z": -211.6 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "267ea0a0-c531-4d2a-8861-5db864fe8aff", - "Infiltration": "Tunnel", - "Position": { - "x": -134.9774, - "y": 6.02489853, - "z": 482.1007 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "27643426-5933-4ba9-a5dd-04b40c8e33e2", - "Infiltration": "Tunnel", - "Position": { - "x": -59.7774048, - "y": 5.990898, - "z": 332.250732 - }, - "Rotation": 119.557549, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Island", - "Categories": [ - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "27e85a39-0768-4a6f-9d46-c7ec39a5cba1", - "Infiltration": "", - "Position": { - "x": 332.006958, - "y": 2.03665161, - "z": 518.079 - }, - "Rotation": 190.619385, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "283916a7-9bed-4e06-91a5-0490819397a9", - "Infiltration": "North", - "Position": { - "x": -221.127411, - "y": 13.2248974, - "z": -186.749329 - }, - "Rotation": 281.698669, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2854bc78-ceaa-401f-bf71-e41de72e0052", - "Infiltration": "Tunnel", - "Position": { - "x": -60.9864044, - "y": 5.990898, - "z": 328.409668 - }, - "Rotation": 119.557549, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_TreatmentBeach", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 3600, - "Id": "286920a4-6f50-4335-a9a2-e9dae4ffc337", - "Infiltration": "", - "Position": { - "x": 30.5999756, - "y": 4.90765, - "z": -631.13 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Blockpost", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 3600, - "Id": "291165b2-16c2-4c7a-8baf-1a7e9f6f83bb", - "Infiltration": "", - "Position": { - "x": 15.2599792, - "y": 4.728651, - "z": -447.690033 - }, - "Rotation": 26.8442173, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "2a961493-b814-4e69-be25-f9fe23837fe5", - "Infiltration": "", - "Position": { - "x": -120.820007, - "y": 11.11565, - "z": -228.91 - }, - "Rotation": 244.211288, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Containers", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "2b5868a8-5bbd-47c9-9409-7235d46ad58a", - "Infiltration": "", - "Position": { - "x": -102.210022, - "y": 10.6186514, - "z": -844.2999 - }, - "Rotation": 4.104724, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_LongRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 4, - "Id": "2d1563cd-b15e-4ee0-a528-e1822285b0c5", - "Infiltration": "", - "Position": { - "x": 39.1399841, - "y": 11.02565, - "z": -11.1400146 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2e02fd39-ee4a-4c26-bb44-12324b433a02", - "Infiltration": "North", - "Position": { - "x": 6.91000462, - "y": 6.16, - "z": -24.889986 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "2ea50142-be25-479c-9a0c-b5b959114c16", - "Infiltration": "", - "Position": { - "x": -178.26001, - "y": 12.25, - "z": -193.290009 - }, - "Rotation": 194.970718, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_TreatmentBeach", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 3600, - "Id": "2ef81c28-b7d9-4333-ad88-4187bf83be56", - "Infiltration": "", - "Position": { - "x": 37.48999, - "y": 4.94265, - "z": -641.36 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2fdbfe41-bd5c-446b-80a8-8681f926ab94", - "Infiltration": "North", - "Position": { - "x": 25.36, - "y": 6.01, - "z": -87.93 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_LongRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 4, - "Id": "2ff52f01-f8ad-42c2-977b-e3b136c80057", - "Infiltration": "", - "Position": { - "x": -8.480011, - "y": 0.763252258, - "z": 81.53 - }, - "Rotation": 113.936485, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3028626c-6718-4f74-b43b-60cfe2081f41", - "Infiltration": "Tunnel", - "Position": { - "x": -135.877411, - "y": 6.02489853, - "z": 483.9607 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_DestroyedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 21, - "DelayToCanSpawnSec": 4, - "Id": "3134f27a-31ed-41ee-866d-0f1e35f0ff7d", - "Infiltration": "", - "Position": { - "x": 46.75, - "y": 7.32564926, - "z": 324.84 - }, - "Rotation": 116.208389, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "31bb4ef3-4336-4360-a43a-1195365c1faf", - "Infiltration": "Tunnel", - "Position": { - "x": 111.742584, - "y": 0.3838997, - "z": -161.499329 - }, - "Rotation": 212.519348, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "342a7c9a-3034-4c0d-9520-035ecfafccb8", - "Infiltration": "North", - "Position": { - "x": -221.157425, - "y": 13.2248974, - "z": -183.899353 - }, - "Rotation": 328.91275, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "349103c5-bba4-4d48-97d4-ae8d5de12a24", - "Infiltration": "North", - "Position": { - "x": -15.1174011, - "y": 1.05489731, - "z": -137.2793 - }, - "Rotation": 165.596863, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "36f8e82f-3b95-4386-ace5-53d1b32d9beb", - "Infiltration": "", - "Position": { - "x": -122.320007, - "y": 6.45565033, - "z": -270.449982 - }, - "Rotation": 348.435364, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Bridge", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "374e67dc-29cb-4968-93ab-ce1a45843e4b", - "Infiltration": "", - "Position": { - "x": 12.5099792, - "y": 6.105652, - "z": -238.940033 - }, - "Rotation": 297.348724, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "37f1ab84-276c-494f-9b03-690b75720f7f", - "Infiltration": "", - "Position": { - "x": -108.170013, - "y": 6.57564926, - "z": -271.120026 - }, - "Rotation": 348.435364, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "38532084-60d9-4b4e-8e0a-bde16882f98b", - "Infiltration": "", - "Position": { - "x": -133.150024, - "y": 11.353878, - "z": -203.670013 - }, - "Rotation": 244.211288, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Rocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "38c4ebc9-fbe8-4e71-bc7b-1f234b942387", - "Infiltration": "", - "Position": { - "x": -113.915009, - "y": 36.7456474, - "z": 102.474991 - }, - "Rotation": 275.2177, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3a76b2a9-1dbb-4f5f-87e3-277d1980bcb8", - "Infiltration": "Tunnel", - "Position": { - "x": 103.953522, - "y": 0.480896, - "z": 426.513062 - }, - "Rotation": 260.715424, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3d8b0ddc-b842-4f3d-8524-bb3a99fc8b7e", - "Infiltration": "Tunnel", - "Position": { - "x": 75.3526, - "y": 8.804897, - "z": 226.640686 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "41310551-d363-4643-9bad-390a5ccb3562", - "Infiltration": "", - "Position": { - "x": -299.567017, - "y": 0.110027313, - "z": -323.816 - }, - "Rotation": 85.4818039, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_RoofBeach", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 3600, - "Id": "41cf4fd7-e698-4aed-8966-180df81dbb59", - "Infiltration": "", - "Position": { - "x": 30.5599976, - "y": 13.95565, - "z": -591.73 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_RoofBeach", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 3600, - "Id": "435828ad-da49-4163-b005-169181c66e4f", - "Infiltration": "", - "Position": { - "x": 29.8399963, - "y": 13.95565, - "z": -623.39 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "44370e95-5bec-4943-8de1-e53beaa8e758", - "Infiltration": "North", - "Position": { - "x": 28.3, - "y": 6.01, - "z": -68.41 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_TreatmentRocks", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 3600, - "Id": "4485b593-d7db-4329-82e2-655af293dc13", - "Infiltration": "", - "Position": { - "x": -172.51001, - "y": 5.02565, - "z": -655.47 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_LongRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 4, - "Id": "44d7c65a-e893-4cd0-8e3c-724211b28c31", - "Infiltration": "", - "Position": { - "x": -12.6200256, - "y": 2.82564926, - "z": 108.479996 - }, - "Rotation": 113.936485, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Containers", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 4, - "Id": "460b507b-ed63-4a4a-8502-eecd321a1d3d", - "Infiltration": "", - "Position": { - "x": -140.080017, - "y": 10.5248337, - "z": -870.77 - }, - "Rotation": 53.9718971, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "46749164-2db8-4711-83e7-ff8d85b5b03e", - "Infiltration": "North", - "Position": { - "x": -444.4114, - "y": 28.9749, - "z": -374.474365 - }, - "Rotation": 294.262756, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "46be8874-7a0e-431e-934d-918e75423c94", - "Infiltration": "", - "Position": { - "x": -124.001007, - "y": 11.7786522, - "z": -218.06 - }, - "Rotation": 149.101685, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "46d9652b-5416-42be-bd85-92a6064a3444", - "Infiltration": "Tunnel", - "Position": { - "x": -168.237411, - "y": 30.4148979, - "z": -65.0293 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "49cf148a-3f73-449a-89bb-8920f59a9000", - "Infiltration": "Tunnel", - "Position": { - "x": 102.215881, - "y": 0.3598938, - "z": 425.473877 - }, - "Rotation": 260.715424, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Containers", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 4, - "Id": "4c2205a2-be1a-4abd-addf-7ea9c77a0c0a", - "Infiltration": "", - "Position": { - "x": -139.07, - "y": 10.5248337, - "z": -856.98 - }, - "Rotation": 53.9718971, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4dca4f98-d5b5-4f2f-9976-4e19f4b3479b", - "Infiltration": "North", - "Position": { - "x": 22.44, - "y": 6.01, - "z": -75.53 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4e876370-2396-4517-81c1-c535811d18e0", - "Infiltration": "North", - "Position": { - "x": 6.819993, - "y": 6.16, - "z": -20.65999 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_TreatmentRocks", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 12, - "DelayToCanSpawnSec": 3600, - "Id": "4f8bd9ad-447d-4da5-b2d5-fda9cc05d026", - "Infiltration": "", - "Position": { - "x": -180.49, - "y": 5.02565, - "z": -633.040039 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "502bb829-ab80-4051-9218-fcac2bc4e08d", - "Infiltration": "North", - "Position": { - "x": -385.1474, - "y": 24.9248981, - "z": -509.9793 - }, - "Rotation": 141.822754, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_DestroyedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 21, - "DelayToCanSpawnSec": 4, - "Id": "51349452-d639-43bc-9eef-b9bb80bd6af1", - "Infiltration": "", - "Position": { - "x": 68.32999, - "y": 5.76124954, - "z": 373.38 - }, - "Rotation": 116.208389, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "5140a6ba-a2cf-466e-b7fb-0c122647eab4", - "Infiltration": "", - "Position": { - "x": -301.271, - "y": 0.09542465, - "z": -319.793976 - }, - "Rotation": 85.4818039, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "52521b3f-59a4-4323-8063-e42e116f7554", - "Infiltration": "Tunnel", - "Position": { - "x": 76.9725952, - "y": 9.154898, - "z": 219.860657 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "52d32a54-836d-4b78-b2d7-6ec797c3bde8", - "Infiltration": "North", - "Position": { - "x": 26.67, - "y": 6.01, - "z": -78.49 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_LongRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 4, - "Id": "57217803-b7b9-4cc7-83d2-bfe316750c2e", - "Infiltration": "", - "Position": { - "x": 40.6599731, - "y": 9.495651, - "z": 14.6900024 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Bridge", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "58a77a58-141b-4239-87dc-c11016aae8c2", - "Infiltration": "", - "Position": { - "x": 9.919983, - "y": 6.11565, - "z": -243.28 - }, - "Rotation": 297.348724, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "59a8c279-8c5d-4af2-86aa-98755cbc109c", - "Infiltration": "North", - "Position": { - "x": -442.8274, - "y": 28.7448978, - "z": -375.699341 - }, - "Rotation": 294.262756, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_TreatmentContainers", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 3600, - "Id": "5c1c074b-9696-435a-81ad-e924202b98f2", - "Infiltration": "", - "Position": { - "x": -130.090027, - "y": 7.734501, - "z": -747.189941 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Hellicopter", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 3600, - "Id": "5c38a67f-0095-42d3-9ba6-d5726f071972", - "Infiltration": "", - "Position": { - "x": -101.01001, - "y": 0.0156517029, - "z": -537.61 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_DestroyedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 20, - "DelayToCanSpawnSec": 4, - "Id": "5c814f61-bbe3-48ab-8063-b2a70eb3542c", - "Infiltration": "", - "Position": { - "x": 25.0499878, - "y": 6.88413239, - "z": 374.950348 - }, - "Rotation": 116.208389, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_TreatmentRocks", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 3600, - "Id": "5e2936bd-1966-4e6a-b731-bce646ca2136", - "Infiltration": "", - "Position": { - "x": -198.790009, - "y": 5.189949, - "z": -697.670044 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "5ebc7b0c-ffa1-47a6-bf9a-23ce4dae6fcc", - "Infiltration": "", - "Position": { - "x": -26.1110229, - "y": 3.299652, - "z": -213.541016 - }, - "Rotation": 348.435364, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Containers", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "61840dd5-4d19-4f8c-b386-feed2db3efce", - "Infiltration": "", - "Position": { - "x": -100.570007, - "y": 10.6186514, - "z": -844.319946 - }, - "Rotation": 4.104724, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "61aba24c-79d9-445f-8a1c-f887b36a8417", - "Infiltration": "North", - "Position": { - "x": -7.6000576, - "y": 10.72, - "z": -800.92 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "61f9d52f-5ccb-48a7-a4a1-a852b049f7b8", - "Infiltration": "Tunnel", - "Position": { - "x": -169.927414, - "y": 30.3048973, - "z": -65.95935 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Island", - "Categories": [ - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "64322540-a704-4d6c-9ba5-1d4ded2bf28a", - "Infiltration": "", - "Position": { - "x": 329.55, - "y": 1.75564957, - "z": 505.63 - }, - "Rotation": 115.016975, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "64fa43f4-e2e8-4f16-9251-2bf3094d337d", - "Infiltration": "Tunnel", - "Position": { - "x": -137.6374, - "y": 6.02489853, - "z": 480.8806 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "65ca29cd-d60a-458b-b588-6e898b8c060d", - "Infiltration": "Tunnel", - "Position": { - "x": -61.99241, - "y": 5.990898, - "z": 325.273682 - }, - "Rotation": 119.557549, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_TreatmentContainers", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 3600, - "Id": "6643cdd3-37af-45fb-93f4-2c2f9b2ec580", - "Infiltration": "", - "Position": { - "x": -66.66, - "y": 4.92964935, - "z": -753.74 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6646be81-5f8c-4c2d-bb8f-cb148c0c6fae", - "Infiltration": "North", - "Position": { - "x": 23.11, - "y": 6.01, - "z": -86.49 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_LongRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 4, - "Id": "66d74b51-9203-42e6-bef5-9e452ba871dc", - "Infiltration": "", - "Position": { - "x": 35.19998, - "y": 7.20565033, - "z": 95.5 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "677581fc-5c9f-4e13-913d-e32798dfd61c", - "Infiltration": "North", - "Position": { - "x": -5.76, - "y": 10.89, - "z": -801.87 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "68091dec-b042-4e80-9caf-b6a9e8a43877", - "Infiltration": "North", - "Position": { - "x": -11.9374084, - "y": 0.644897461, - "z": -126.729309 - }, - "Rotation": 134.737534, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "68e599f9-806f-4082-ba71-574de6dd8f2c", - "Infiltration": "Tunnel", - "Position": { - "x": -168.8574, - "y": 30.4148979, - "z": -67.9093 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "69893240-0388-42f5-b313-231a2915c47b", - "Infiltration": "Tunnel", - "Position": { - "x": 111.742584, - "y": 4.99489975, - "z": 103.180664 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Chalet", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } - }, - "CorePointId": 26, - "DelayToCanSpawnSec": 4, - "Id": "6b305477-7b1e-4ca1-9139-a4e3848e003c", - "Infiltration": "", - "Position": { - "x": -93.54001, - "y": 17.63565, - "z": -13.2000122 - }, - "Rotation": 208.517929, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "6b7c5283-2d13-46c8-ac57-73f99472cb39", - "Infiltration": "", - "Position": { - "x": -321.75, - "y": 1.06699753, - "z": -331.889984 - }, - "Rotation": 60.8000031, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6e3ad315-21c1-4816-84f5-e6d5ad0568af", - "Infiltration": "North", - "Position": { - "x": -1.5, - "y": 10.6, - "z": -801.74 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_Hellicopter", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 3600, - "Id": "71331f39-d65f-4b08-924e-366209cb46b6", - "Infiltration": "", - "Position": { - "x": -83.70001, - "y": -0.106666565, - "z": -541.36 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "715dfa23-e817-41fd-805c-6b77c3b7dde4", - "Infiltration": "Tunnel", - "Position": { - "x": 116.612579, - "y": 0.3838997, - "z": -163.829346 - }, - "Rotation": 274.115753, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7214a6f6-1ad5-4a25-98d4-5fc92559d599", - "Infiltration": "North", - "Position": { - "x": 25.42, - "y": 6.01, - "z": -89.94 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_Rocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "723e2598-d770-4243-9d68-4b932a9f91de", - "Infiltration": "", - "Position": { - "x": -144.540009, - "y": 37.33565, - "z": 149.299988 - }, - "Rotation": 128.073547, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "73df6563-200e-4701-9753-91e438cfc1cc", - "Infiltration": "Tunnel", - "Position": { - "x": 113.832581, - "y": 4.99489975, - "z": 101.8407 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_DestroyedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 21, - "DelayToCanSpawnSec": 4, - "Id": "74bed501-a620-4f27-bac1-b7e3a556dc22", - "Infiltration": "", - "Position": { - "x": 86.00998, - "y": 0.5456505, - "z": 363.7 - }, - "Rotation": 116.208389, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_DestroyedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 20, - "DelayToCanSpawnSec": 4, - "Id": "74d88c3b-3b82-4949-9ab1-98c30141e588", - "Infiltration": "", - "Position": { - "x": 47.00998, - "y": 7.28757858, - "z": 328.47 - }, - "Rotation": 116.208389, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "751ed8cb-d9c5-4c3a-ad31-7ae979f66316", - "Infiltration": "North", - "Position": { - "x": 7.01300144, - "y": 6.3, - "z": -26.49399 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_Rocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "75955117-2bf2-4677-90d3-ebb4535ef1b4", - "Infiltration": "", - "Position": { - "x": -105.090027, - "y": 33.39565, - "z": 89.31 - }, - "Rotation": 275.2177, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_LongRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 4, - "Id": "76d4a9a5-bcda-46af-b16c-e87fb867492b", - "Infiltration": "", - "Position": { - "x": 53.5499878, - "y": 11.145649, - "z": 47.9299927 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7b8a26cc-a83c-4b3f-b5f7-5637c19289bf", - "Infiltration": "Tunnel", - "Position": { - "x": 104.329529, - "y": 0.504894257, - "z": 424.062744 - }, - "Rotation": 260.715424, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7bd68d2b-39aa-4eef-a98a-5394fc63eed7", - "Infiltration": "North", - "Position": { - "x": 31.44, - "y": 6.66, - "z": -91.27 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7c56a74c-5e05-4bbc-84eb-b45ca808c190", - "Infiltration": "Tunnel", - "Position": { - "x": 74.7225952, - "y": 8.974897, - "z": 233.730652 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Chalet", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "7cc47cc4-c9b3-4f8a-a5fd-9be54d43f752", - "Infiltration": "", - "Position": { - "x": -124.53, - "y": 18.21967, - "z": -135.450012 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Containers", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 160 - } - }, - "CorePointId": 24, - "DelayToCanSpawnSec": 4, - "Id": "800af768-9fbd-407a-9544-f76e13b5a523", - "Infiltration": "", - "Position": { - "x": -51.1490173, - "y": 10.70362, - "z": -794.814941 - }, - "Rotation": 129.653656, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "801ec76b-b32d-4f56-a5ec-d93ede49fb8f", - "Infiltration": "Tunnel", - "Position": { - "x": -159.287415, - "y": 30.3648987, - "z": 260.930664 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Chalet", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "81bd9e3f-0ff6-49af-8769-00cb781786c5", - "Infiltration": "", - "Position": { - "x": -109.380005, - "y": 17.66565, - "z": -24.2799988 - }, - "Rotation": 208.517929, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Island", - "Categories": [ - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "84047c7f-e461-460e-8378-6f85a74b835f", - "Infiltration": "", - "Position": { - "x": 356.39, - "y": 15.51865, - "z": 553.695 - }, - "Rotation": 158.316177, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8464e389-d91c-45d4-9e99-5b61d5bcdc69", - "Infiltration": "North", - "Position": { - "x": 6.85998631, - "y": 6.16, - "z": -23.4999866 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "84c2f0bb-5869-4e84-bbaa-5fdd23a4bae2", - "Infiltration": "North", - "Position": { - "x": -222.5874, - "y": 13.5648975, - "z": -193.249329 - }, - "Rotation": 198.027451, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "85902d64-8404-48ba-84d9-1292b3c79e13", - "Infiltration": "Tunnel", - "Position": { - "x": 77.002594, - "y": 9.054897, - "z": 224.620667 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8690a712-9114-40d8-8ca2-56a69ea90bfe", - "Infiltration": "Tunnel", - "Position": { - "x": 115.9126, - "y": 4.464897, - "z": 103.9707 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8799bb42-bc67-4556-94fb-c5a401efb5b3", - "Infiltration": "North", - "Position": { - "x": 22.83, - "y": 6.01, - "z": -84.79 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_LongRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "8a5e9fbb-8014-4711-abc2-bc9010c30721", - "Infiltration": "", - "Position": { - "x": 49.4099731, - "y": 1.63565063, - "z": -147.12 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Rocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "8b8f52d5-820c-4c25-aec0-94671c8c7b55", - "Infiltration": "", - "Position": { - "x": -145.71, - "y": 37.33565, - "z": 144.76 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_DestroyedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 4, - "Id": "8c8942d2-33d7-4926-b61e-b844b10fb18b", - "Infiltration": "", - "Position": { - "x": 54.1099854, - "y": 11.9674034, - "z": 197.849991 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_LongRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 4, - "Id": "8fae9265-05f2-4210-bdcb-11834b1424a7", - "Infiltration": "", - "Position": { - "x": 38.4199829, - "y": 9.165649, - "z": 1.27999878 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "90610890-d33d-4fd7-9dc4-7f2d8d6bf7ff", - "Infiltration": "North", - "Position": { - "x": -14.8574066, - "y": 0.374897, - "z": -134.839355 - }, - "Rotation": 153.723572, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Containers", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "909fdb57-c4d6-4740-8907-d8ee324ab9bc", - "Infiltration": "", - "Position": { - "x": 31.8799744, - "y": 10.768651, - "z": -827.27 - }, - "Rotation": 279.3638, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Hellicopter", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 3600, - "Id": "91f49ddc-7c01-4569-9b51-6d7ac019120b", - "Infiltration": "", - "Position": { - "x": -90.26001, - "y": 1.71564865, - "z": -577.11 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Chalet", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 25, - "DelayToCanSpawnSec": 4, - "Id": "92c20fd6-5480-4298-a104-dbb7b09f0e6b", - "Infiltration": "", - "Position": { - "x": -84.91, - "y": 16.95565, - "z": 20.1499939 - }, - "Rotation": 208.517929, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "93427305-4f03-44d6-8690-7c24dbbb4128", - "Infiltration": "North", - "Position": { - "x": 6.92999363, - "y": 6.16, - "z": -22.1199818 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "934c3322-9145-4406-a23f-c2e90b99b969", - "Infiltration": "North", - "Position": { - "x": -12.26741, - "y": 0.9448967, - "z": -133.069336 - }, - "Rotation": 151.1096, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "97513a7b-d467-454a-8232-2e77f3e386ef", - "Infiltration": "North", - "Position": { - "x": -3.76, - "y": 10.920001, - "z": -802.2 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_Bridge", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "976a4d47-bbed-4966-855b-5433c8407921", - "Infiltration": "", - "Position": { - "x": 6.5, - "y": 3.62565231, - "z": -311.800018 - }, - "Rotation": 297.348724, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "977b34cf-397f-4ec9-a2b0-f7bbf67284ed", - "Infiltration": "North", - "Position": { - "x": 23.66, - "y": 6.01, - "z": -68.1 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "980d7e02-2692-4fb9-83c9-a43f61bc04cc", - "Infiltration": "Tunnel", - "Position": { - "x": 114.390594, - "y": 0.3838997, - "z": -166.727356 - }, - "Rotation": 212.519348, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "987bfe64-ef9b-4fa7-80a2-5f5045d7d178", - "Infiltration": "Tunnel", - "Position": { - "x": -135.7774, - "y": 6.02489853, - "z": 480.5807 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Rocks", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 22, - "DelayToCanSpawnSec": 4, - "Id": "98c771f5-a2ab-4979-a514-654576598195", - "Infiltration": "", - "Position": { - "x": -113.200012, - "y": 30.6256828, - "z": 153.7 - }, - "Rotation": 195.903351, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "999c413b-05eb-4c30-a4ef-4e0c95c838ef", - "Infiltration": "North", - "Position": { - "x": -7.51003075, - "y": 10.72, - "z": -799.37 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_Chalet", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "9aae4ab4-74ff-4384-b691-03b1ed0b5fb7", - "Infiltration": "", - "Position": { - "x": -128.51001, - "y": 20.06565, - "z": -106.149994 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "9ab140af-b8b3-4656-b7cf-b9bcd6393779", - "Infiltration": "", - "Position": { - "x": -149.85, - "y": 11.95565, - "z": -200.76001 - }, - "Rotation": 244.211288, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Blockpost", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 3600, - "Id": "9bc9c196-b64b-465b-ae16-c91ebd5080ef", - "Infiltration": "", - "Position": { - "x": 31.8899841, - "y": 4.7986509999999996, - "z": -451.1 - }, - "Rotation": 26.8442173, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9c96af9c-f0bc-46a9-b62b-ee6b96b5fafd", - "Infiltration": "Tunnel", - "Position": { - "x": 115.702606, - "y": 0.3838997, - "z": -160.319336 - }, - "Rotation": 312.183167, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9e2387b3-10fa-4e10-b192-f2bce8fd0358", - "Infiltration": "North", - "Position": { - "x": -386.5914, - "y": 23.7648983, - "z": -511.923279 - }, - "Rotation": 141.822754, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9e807cd8-a412-40d0-b62e-8df7c31b91ae", - "Infiltration": "North", - "Position": { - "x": -386.7574, - "y": 23.5148983, - "z": -515.9593 - }, - "Rotation": 141.822754, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Island", - "Categories": [ - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "9eedd190-88a3-42f2-84ae-9483691d9986", - "Infiltration": "", - "Position": { - "x": 365.69, - "y": 15.5336494, - "z": 545.678 - }, - "Rotation": 19.1368885, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9f6cbe96-7d68-45bf-8f4b-4ccac2550961", - "Infiltration": "North", - "Position": { - "x": -10.31, - "y": 10.63, - "z": -802.38 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a02f1065-8639-4738-afa0-9a031c18912f", - "Infiltration": "North", - "Position": { - "x": 26.84, - "y": 6.01, - "z": -71.94 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_Hellicopter", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 3600, - "Id": "a068f918-1c5f-4311-b088-2c294f1bdaa1", - "Infiltration": "", - "Position": { - "x": -130.75, - "y": 4.945652, - "z": -738.22 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a119da51-2ddf-4ec1-a6a1-1aa701b619ec", - "Infiltration": "North", - "Position": { - "x": -441.8674, - "y": 28.6048985, - "z": -372.989319 - }, - "Rotation": 294.262756, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_SniperPeak", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 2000, - "Id": "a22f75f6-0e9a-4e19-be56-a9099861c045", - "Infiltration": "", - "Position": { - "x": -71.78, - "y": 39.2056541, - "z": 451.11 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "a250b7d8-8b4e-4658-8a6c-103081685256", - "Infiltration": "", - "Position": { - "x": -161.500015, - "y": 9.84565, - "z": -261.699982 - }, - "Rotation": 348.435364, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a374b3f8-f839-41a9-a28d-c1222ce4f890", - "Infiltration": "North", - "Position": { - "x": -220.127411, - "y": 13.1848965, - "z": -188.419312 - }, - "Rotation": 198.027451, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Chalet", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } - }, - "CorePointId": 26, - "DelayToCanSpawnSec": 4, - "Id": "a552c808-942d-4db8-b09b-abfdd3ef45fe", - "Infiltration": "", - "Position": { - "x": -81, - "y": 16.4738655, - "z": 19.2799988 - }, - "Rotation": 208.517929, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_RoofContainers", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 3600, - "Id": "a59edfb4-1545-4908-9391-42ed1653821a", - "Infiltration": "", - "Position": { - "x": -124.830017, - "y": 14.0356522, - "z": -738.319946 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_DestroyedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 20, - "DelayToCanSpawnSec": 4, - "Id": "a69d60a1-8252-4404-9e58-87b1dfbcd2ac", - "Infiltration": "", - "Position": { - "x": 41.1099854, - "y": 7.55524445, - "z": 345.21 - }, - "Rotation": 116.208389, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_LongRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 4, - "Id": "a91f971b-d962-4be7-83eb-a4319e0fa8ad", - "Infiltration": "", - "Position": { - "x": 48.19998, - "y": 1.645649, - "z": -116.300018 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a9f32457-a94d-4547-ba4f-8d94ddfe604b", - "Infiltration": "Tunnel", - "Position": { - "x": -161.4974, - "y": 31.2748985, - "z": 257.310669 - }, - "Rotation": 89.10666, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_LongRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 4, - "Id": "ab68fd30-5aa4-4091-9987-a3772136bc00", - "Infiltration": "", - "Position": { - "x": 29.4199829, - "y": 4.57564926, - "z": 133.43 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ae732602-eb95-47bd-b13a-af481f28e570", - "Infiltration": "Tunnel", - "Position": { - "x": 106.705719, - "y": 0.730896, - "z": 424.522827 - }, - "Rotation": 260.715424, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Bridge", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "b077ec12-e061-4971-a60f-986d5ed226fe", - "Infiltration": "", - "Position": { - "x": -49.6600037, - "y": 5.86565, - "z": -290.65 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Island", - "Categories": [ - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "b10fefc8-e1a2-478a-b2ca-04ac0d0f7cac", - "Infiltration": "", - "Position": { - "x": 392.156, - "y": 15.2086487, - "z": 567.006 - }, - "Rotation": 115.016975, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "b193ef40-123d-48c6-a1ad-f1fb09a20ef5", - "Infiltration": "", - "Position": { - "x": -321.065338, - "y": 1.67699814, - "z": -334.890045 - }, - "Rotation": 52.1100044, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b24f0b0e-ac91-40fa-bb25-d33ff5e4bb57", - "Infiltration": "North", - "Position": { - "x": -10.3174133, - "y": 1.8348999, - "z": -130.169312 - }, - "Rotation": 135.900757, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b2970193-779c-4598-a2d2-0a474afec06c", - "Infiltration": "North", - "Position": { - "x": 23, - "y": 6.01, - "z": -88.71 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "b712c860-4678-45b7-a39c-ad16f1e73c4d", - "Infiltration": "", - "Position": { - "x": -87.52002, - "y": 6.034649, - "z": -269.98 - }, - "Rotation": 348.435364, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "b7a7460a-c8b6-472d-bf3b-d4a41d1f5387", - "Infiltration": "", - "Position": { - "x": -246.780029, - "y": 1.246952, - "z": -381.949982 - }, - "Rotation": 4.91000032, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b7bea9fa-5af8-47e2-b3d1-d2be915cbf31", - "Infiltration": "North", - "Position": { - "x": -443.404419, - "y": 28.4408989, - "z": -371.109375 - }, - "Rotation": 294.262756, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Rocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "ba0ad9af-e742-4380-aa57-5000f75b44e5", - "Infiltration": "", - "Position": { - "x": -128.050018, - "y": 39.9256477, - "z": 74.29999 - }, - "Rotation": 23.3241863, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "bc7d2613-a056-4d4c-8e43-b703b211d3d3", - "Infiltration": "", - "Position": { - "x": -84.46002, - "y": 5.86565, - "z": -271.620026 - }, - "Rotation": 348.435364, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Hellicopter", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 3600, - "Id": "be8fb70e-ab66-40ef-a82e-2a49c2d9ed43", - "Infiltration": "", - "Position": { - "x": -62.53, - "y": 3.95565033, - "z": -586.410034 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bf33b549-99fd-4974-956a-0be2cc5174e0", - "Infiltration": "North", - "Position": { - "x": -382.737427, - "y": 24.7548981, - "z": -512.699341 - }, - "Rotation": 141.822754, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_RoofRocks", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 3600, - "Id": "bf975195-82da-46b7-9f69-9257a3f2dce0", - "Infiltration": "", - "Position": { - "x": -190.35, - "y": 13.9855, - "z": -660.22 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_TreatmentBeach", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 3600, - "Id": "c05428b6-9ec3-4890-8c36-d62810187ca7", - "Infiltration": "", - "Position": { - "x": 111.659973, - "y": 5.02565, - "z": -671.98 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_DestroyedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 4, - "Id": "c0c2f790-c283-4e6a-aecb-c6e5f06aa9e5", - "Infiltration": "", - "Position": { - "x": 54.22998, - "y": 11.75729, - "z": 200.579987 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c23035da-dbd1-4bde-b90f-9b809215ee57", - "Infiltration": "North", - "Position": { - "x": 26.432, - "y": 6.01, - "z": -74.981 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_Chalet", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "c269b7f5-17fa-4c7e-b5a6-bbacb5ce0003", - "Infiltration": "", - "Position": { - "x": -123.577026, - "y": 18.21967, - "z": -132.695 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Blockpost", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 3600, - "Id": "c3bcd168-85f1-48c8-a46c-58727bfeb632", - "Infiltration": "", - "Position": { - "x": 12.9400024, - "y": 4.7986509999999996, - "z": -447.53 - }, - "Rotation": 26.8442173, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Rocks", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "c4219a3c-1490-4883-9977-51ca0cb89280", - "Infiltration": "", - "Position": { - "x": -69.18002, - "y": 26.78165, - "z": 112.903 - }, - "Rotation": 195.903351, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_RoofRocks", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 240 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 3600, - "Id": "c4a79941-9132-4067-9678-b5bbe1104713", - "Infiltration": "", - "Position": { - "x": -185.700012, - "y": 13.9855, - "z": -693.6416 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c751b04f-87ed-4cda-81db-7d66787c94be", - "Infiltration": "North", - "Position": { - "x": -384.5074, - "y": 24.2249, - "z": -513.6393 - }, - "Rotation": 141.822754, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_TreatmentContainers", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 3600, - "Id": "c820f8ff-0b02-4078-a5ea-27604950b4f8", - "Infiltration": "", - "Position": { - "x": -109.02002, - "y": 4.92964935, - "z": -729.52 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c9298667-ff36-4aa5-b33e-26256e5ff71d", - "Infiltration": "Tunnel", - "Position": { - "x": -137.627411, - "y": 6.02489853, - "z": 482.910645 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cb454f82-501c-4633-a1ab-2ae86c2559d8", - "Infiltration": "North", - "Position": { - "x": -217.447433, - "y": 12.584898, - "z": -181.449341 - }, - "Rotation": 4.4928484, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "cbee66a4-e0f0-476c-9a44-c042ab290cd5", - "Infiltration": "", - "Position": { - "x": -237.310013, - "y": 14.7656517, - "z": -170.290009 - }, - "Rotation": 194.970718, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cdabcf05-fa38-4640-89a6-294133b99a5c", - "Infiltration": "North", - "Position": { - "x": 8.798004, - "y": 6.16, - "z": -25.9239826 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_Rocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "ce07d1ba-6bc7-4f65-898c-e2309ec3bbf9", - "Infiltration": "", - "Position": { - "x": -117.630005, - "y": 37.0256538, - "z": 113.7 - }, - "Rotation": 275.2177, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cec675dc-0443-44f1-90bb-61b0fc25b2fc", - "Infiltration": "North", - "Position": { - "x": 8.569992, - "y": 6.16, - "z": -20.7299824 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ced7d497-d16a-41d4-8caf-7c515c28ccdb", - "Infiltration": "Tunnel", - "Position": { - "x": -63.247406, - "y": 6.00789642, - "z": 327.3567 - }, - "Rotation": 119.557549, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Blockpost", - "Categories": [ - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 3600, - "Id": "d0b5c25c-7439-45b9-a830-21a194831752", - "Infiltration": "", - "Position": { - "x": -8.040009, - "y": 7.268448, - "z": -452.21 - }, - "Rotation": 26.8442173, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_DestroyedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 21, - "DelayToCanSpawnSec": 4, - "Id": "d12dfa52-8fa4-4e79-9d84-1edbc2b5edfb", - "Infiltration": "", - "Position": { - "x": 66.3899841, - "y": 6.049885, - "z": 374.950348 - }, - "Rotation": 116.208389, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_TreatmentRocks", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 3600, - "Id": "d26c7492-92de-4513-907a-baeb78f34630", - "Infiltration": "", - "Position": { - "x": -199.430008, - "y": 4.92964935, - "z": -680.459961 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_TreatmentBeach", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 10, - "DelayToCanSpawnSec": 3600, - "Id": "d3097675-4b9b-43d2-a6c7-0dfe4cac7df6", - "Infiltration": "", - "Position": { - "x": 105.329987, - "y": 7.43565, - "z": -529.73 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d3f61184-0493-4e68-a33f-0035672f24c3", - "Infiltration": "Tunnel", - "Position": { - "x": 113.09259, - "y": 5.1749, - "z": 106.870667 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Chalet", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "d547f03e-36ca-4e98-a441-91ab2e6c7499", - "Infiltration": "", - "Position": { - "x": -116.140015, - "y": 17.79565, - "z": -32.0899963 - }, - "Rotation": 208.517929, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Containers", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 200 - } - }, - "CorePointId": 24, - "DelayToCanSpawnSec": 4, - "Id": "d600851d-0b6a-4aff-855c-1e077c49a5ee", - "Infiltration": "", - "Position": { - "x": -16.74002, - "y": 10.5248337, - "z": -782.680054 - }, - "Rotation": 129.653656, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_TreatmentBeach", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 3600, - "Id": "d6ce18d5-98f4-43ae-920c-bd7fbc504f9c", - "Infiltration": "", - "Position": { - "x": 55.44998, - "y": 4.94265, - "z": -633.199951 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d72a6e26-6f13-4e56-b902-a50465fd844b", - "Infiltration": "North", - "Position": { - "x": 31.7, - "y": 6.66, - "z": -86.84 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d994edf1-9146-4863-a39d-d223a1ecf5ea", - "Infiltration": "Tunnel", - "Position": { - "x": -167.4974, - "y": 30.4148979, - "z": -66.609314 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "da2f58e2-3e97-4830-aa08-2d1902c88943", - "Infiltration": "North", - "Position": { - "x": 22.83, - "y": 6.01, - "z": -71.62 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "da8bcf91-a3cd-49f2-bddf-d70ae9ccee96", - "Infiltration": "North", - "Position": { - "x": 34.48, - "y": 5.59, - "z": -87.37 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "db8d86bc-0016-4535-88a6-e5c201961dc5", - "Infiltration": "", - "Position": { - "x": -248.670044, - "y": 0.7086563, - "z": -379.630035 - }, - "Rotation": 13.6, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Rocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "dba7bf78-421b-4e32-bad4-1716e5550472", - "Infiltration": "", - "Position": { - "x": -127.975006, - "y": 39.88065, - "z": 87.26099 - }, - "Rotation": 23.3241863, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "dbea7bef-9e12-46f7-bbdf-62a80851cc14", - "Infiltration": "", - "Position": { - "x": -322.080017, - "y": 1.177166, - "z": -329.620026 - }, - "Rotation": 52.1100044, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "dd9aa54a-5841-43af-af9c-e2fd2c7bbf0a", - "Infiltration": "", - "Position": { - "x": -249, - "y": 0.8441658, - "z": -382.21 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_TreatmentBeach", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 10, - "DelayToCanSpawnSec": 3600, - "Id": "de169321-3165-4434-84b4-c6d39a069191", - "Infiltration": "", - "Position": { - "x": 51.8299866, - "y": 5.187237, - "z": -589.9 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "df949703-1471-4367-a395-3afa78fcf886", - "Infiltration": "North", - "Position": { - "x": 6.52999973, - "y": 6.16, - "z": -17.28998 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_SniperPeak", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 2000, - "Id": "dffa485d-70ef-4bdb-869b-c42d27ec8987", - "Infiltration": "", - "Position": { - "x": -58.01001, - "y": 39.5256538, - "z": 459.39 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e1228f5b-be4c-4859-882e-8ead2fd3987a", - "Infiltration": "Tunnel", - "Position": { - "x": -150.487411, - "y": 29.9358978, - "z": 262.8806 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Containers", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 150 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "e18c5b63-5aa7-419b-9f2d-340fe7546097", - "Infiltration": "", - "Position": { - "x": -3.55001831, - "y": 12.0293722, - "z": -870.1699 - }, - "Rotation": 4.104724, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_RoofRocks", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 3600, - "Id": "e23d24cf-1b50-4ddb-b622-7d4aa930ab7d", - "Infiltration": "", - "Position": { - "x": -181.590012, - "y": 14.0029526, - "z": -659.829956 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_TreatmentRocks", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 12, - "DelayToCanSpawnSec": 3600, - "Id": "e2889fae-f2fb-44ce-a6df-be10d4908137", - "Infiltration": "", - "Position": { - "x": -180.530014, - "y": 5.02565, - "z": -647.310059 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "e3309a9d-1562-4836-9705-61f6df7daf2b", - "Infiltration": "", - "Position": { - "x": -213.080017, - "y": 12.7456512, - "z": -187.81 - }, - "Rotation": 177.55925, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e5da63fb-4d33-4ebb-a621-dd414deecab5", - "Infiltration": "North", - "Position": { - "x": -5.28, - "y": 10.71, - "z": -804.34 - }, - "Rotation": 358.2052, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e8aad4bd-3990-45f0-9106-197afd5251a0", - "Infiltration": "Tunnel", - "Position": { - "x": -162.8074, - "y": 31.3148975, - "z": 254.180664 - }, - "Rotation": 104.295624, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Hellicopter", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 3600, - "Id": "e9af3bc9-ebf6-4252-8551-ec64bd75c390", - "Infiltration": "", - "Position": { - "x": -84.34003, - "y": -0.104351044, - "z": -565.560059 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ea3ee12f-63bf-40b0-86b2-d73e575e6b38", - "Infiltration": "North", - "Position": { - "x": 22.91, - "y": 6.01, - "z": -81.8 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "ec0f240b-d414-4041-b28c-6dd72f3a8c13", - "Infiltration": "", - "Position": { - "x": -222.950012, - "y": 12.668705, - "z": -186.459991 - }, - "Rotation": 194.970718, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ed90c8a5-b740-4aa2-868a-f91e710d4e17", - "Infiltration": "Tunnel", - "Position": { - "x": -171.187408, - "y": 30.3048973, - "z": -66.78931 - }, - "Rotation": 148.08, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_LongRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 4, - "Id": "ee12a020-cec0-496b-8755-42ddaf928be0", - "Infiltration": "", - "Position": { - "x": 40.03, - "y": 9.52565, - "z": 71.81999 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_DestroyedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 20, - "DelayToCanSpawnSec": 4, - "Id": "ee4478fd-aa92-42b2-aa63-0bcd41d3215b", - "Infiltration": "", - "Position": { - "x": 31.75998, - "y": 7.055649, - "z": 371.66 - }, - "Rotation": 116.208389, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Hellicopter", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 3600, - "Id": "ef14df08-71d8-48c8-a8e5-db0c3af8f0ab", - "Infiltration": "", - "Position": { - "x": -56.8900146, - "y": 1.88565063, - "z": -586.440063 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_LongRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 4, - "Id": "ef216442-d3df-4ccf-b797-94a695827a57", - "Infiltration": "", - "Position": { - "x": -5.5, - "y": 1.90975571, - "z": 37.3999939 - }, - "Rotation": 113.936485, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "ef79c37b-639e-498c-a2d2-b20036748f2f", - "Infiltration": "", - "Position": { - "x": -202.62001, - "y": 12.3556519, - "z": -194.37 - }, - "Rotation": 194.970718, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 77 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f0113a3b-12cd-4801-ad39-c5ebc9578d38", - "Infiltration": "North", - "Position": { - "x": 8.755005, - "y": 6.16, - "z": -23.86899 - }, - "Rotation": 179.094986, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_Containers", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "f06fb745-0fbb-4ed6-bc3f-0fb36d5e87b2", - "Infiltration": "", - "Position": { - "x": 35.9400024, - "y": 12.0053339, - "z": -833.12 - }, - "Rotation": 4.104724, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "f0e2fe27-9ac5-4127-9a4e-30bf7eddac5c", - "Infiltration": "", - "Position": { - "x": -246.109985, - "y": 1.216999, - "z": -379.630035 - }, - "Rotation": 4.91000032, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_RoofContainers", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 3600, - "Id": "f0f76982-288f-4cfa-8c5a-397f7b9422b7", - "Infiltration": "", - "Position": { - "x": -66.2750244, - "y": 14.0756493, - "z": -734.574 - }, - "Rotation": 34.3430061, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Blockpost", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 240 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 3600, - "Id": "f143f0ca-33af-4541-aa88-1e4d18059ec4", - "Infiltration": "", - "Position": { - "x": -1.39001465, - "y": 1.78865123, - "z": -470.79 - }, - "Rotation": 26.8442173, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Blockpost", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 3600, - "Id": "f2b31e14-8d7f-4348-8464-5ab9fe7f462e", - "Infiltration": "", - "Position": { - "x": -13.3700256, - "y": 4.528651, - "z": -449.639984 - }, - "Rotation": 26.8442173, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f519a18e-0583-4d8d-b5c6-de9d75699312", - "Infiltration": "Tunnel", - "Position": { - "x": -62.47941, - "y": 5.990898, - "z": 330.1067 - }, - "Rotation": 119.557549, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Chalet", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } - }, - "CorePointId": 26, - "DelayToCanSpawnSec": 4, - "Id": "f69e3535-6c4d-4607-85e5-7eb5cfa0a111", - "Infiltration": "", - "Position": { - "x": -73.20001, - "y": 11.4756508, - "z": 4.47998047 - }, - "Rotation": 208.517929, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Chalet", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "f6cebfe5-4844-49c7-b424-187b4403bf88", - "Infiltration": "", - "Position": { - "x": -62.0599976, - "y": 19.86565, - "z": -134.26001 - }, - "Rotation": 81.6740341, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f7bd8ddc-c49f-44d0-8309-75961279d395", - "Infiltration": "Tunnel", - "Position": { - "x": 76.0825958, - "y": 8.794899, - "z": 228.730652 - }, - "Rotation": 293.2345, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f7d2e2e2-6525-4061-be4f-adae897b8a1a", - "Infiltration": "Tunnel", - "Position": { - "x": -164.797409, - "y": 30.834898, - "z": 260.620728 - }, - "Rotation": 108.442146, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "Zone_Village", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "f8a1c7aa-a550-479b-8e81-cf1e7af59445", - "Infiltration": "", - "Position": { - "x": -185.040009, - "y": 5.405651, - "z": -261.759979 - }, - "Rotation": 348.435364, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f8e5ea44-10d0-4a32-be65-2cfc6ea50953", - "Infiltration": "Tunnel", - "Position": { - "x": 116.310608, - "y": 0.3838997, - "z": -167.806335 - }, - "Rotation": 182.088867, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f96f3b5d-2aae-4238-adac-0af4d71b97fa", - "Infiltration": "North", - "Position": { - "x": 25.7, - "y": 6.01, - "z": -84.33 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fa7869a2-8896-4414-ba7d-60a7c95bd1a8", - "Infiltration": "North", - "Position": { - "x": 25.67, - "y": 6.01, - "z": -85.89 - }, - "Rotation": 266.5001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "Zone_LongRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "fd71e948-35d6-49c1-b647-5248d6234bb1", - "Infiltration": "", - "Position": { - "x": 47.5999756, - "y": 0.4856491, - "z": -173.4 - }, - "Rotation": 256.630219, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_Rocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "fe428f41-73e2-468f-8cb8-ac6c27050690", - "Infiltration": "", - "Position": { - "x": -148.040009, - "y": 39.9856529, - "z": 94.89 - }, - "Rotation": 23.3241863, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "Zone_RoofRocks", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 240 - } - }, - "CorePointId": 12, - "DelayToCanSpawnSec": 3600, - "Id": "ff80b050-df12-4859-9f5f-37ba90a68599", - "Infiltration": "", - "Position": { - "x": -186.51001, - "y": 14.0341454, - "z": -643.839966 - }, - "Rotation": 256.404022, - "Sides": [ - "Savage" - ] - } - ], - "UnixDateTime": 1634148599, - "_Id": "5704e4dad2720bb55b8b4567", - "doors": [], - "exit_access_time": 45, - "exit_count": 1, - "exit_time": 2, - "exits": [ - { - "Chance": 100, - "ChancePVE": 100, - "Count": 400, - "CountPVE": 300, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 5, - "ExfiltrationTimePVE": 5, - "ExfiltrationType": "SharedTimer", - "Id": "0", - "MaxTime": 1500, - "MaxTimePVE": 1420, - "MinTime": 1200, - "MinTimePVE": 1300, - "Name": "EXFIL_Train", - "PassageRequirement": "Train", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "TIP IS HARDCODED" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "Alpinist", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Alpinist_light", - "PassageRequirement": "Reference", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "SharedTimer", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "tunnel_shared", - "PassageRequirement": "ScavCooperation", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Cooperate" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Tunnel", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Nothern_Checkpoint", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Coastal_South_Road", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Shorl_free", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 50, - "ChancePVE": 50, - "Count": 5000, - "CountPVE": 5000, - "EntryPoints": "Tunnel,North", - "EventAvailable": false, - "ExfiltrationTime": 60, - "ExfiltrationTimePVE": 60, - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": " V-Ex_light", - "PassageRequirement": "TransferItem", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Item" - } - ], - "filter_ex": [], - "limits": [], - "matching_min_seconds": 60, - "maxItemCountInLocation": [], - "sav_summon_seconds": 60, - "tmp_location_field_remove_me": 0, - "transits": [ - { - "activateAfterSec": 60, - "active": true, - "conditions": "LIG_TRANSIT_21_COND", - "description": "LIG_TRANSIT_21_DESC", - "id": 21, - "location": "Shoreline", - "name": "LIG_TRANSIT_21", - "target": "5704e554d2720bac5b8b456e", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": true, - "conditions": "LIG_TRANSIT_22_COND", - "description": "LIG_TRANSIT_22_DESC", - "id": 22, - "location": "RezervBase", - "name": "LIG_TRANSIT_22", - "target": "5704e5fad2720bc05b8b4567", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": true, - "conditions": "LIG_TRANSIT_23_COND", - "description": "LIG_TRANSIT_23_DESC", - "id": 23, - "location": "Woods", - "name": "LIG_TRANSIT_23", - "target": "5704e3c2d2720bac5b8b4567", - "time": 30 - } - ], - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "waves": [] -} diff --git a/project/assets/database/locations/lighthouse/looseLoot.json b/project/assets/database/locations/lighthouse/looseLoot.json deleted file mode 100644 index 57c60ee4..00000000 --- a/project/assets/database/locations/lighthouse/looseLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0ef3c40fcc8159e42f801be8978b3b57348848238b38e22c7ff0dd112769f38d -size 99539573 diff --git a/project/assets/database/locations/lighthouse/staticAmmo.json b/project/assets/database/locations/lighthouse/staticAmmo.json deleted file mode 100644 index 8a4b8f2e..00000000 --- a/project/assets/database/locations/lighthouse/staticAmmo.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f8af4d1c11bfeac783f09b785abb9ec1d3991c4912c063148463fb72711acba9 -size 11347 diff --git a/project/assets/database/locations/lighthouse/staticContainers.json b/project/assets/database/locations/lighthouse/staticContainers.json deleted file mode 100644 index ce988ccf..00000000 --- a/project/assets/database/locations/lighthouse/staticContainers.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1c1c98b0d315aeafa092a843bd19cec78052bdfaaf5c1efebcda35520968cf14 -size 298788 diff --git a/project/assets/database/locations/lighthouse/staticLoot.json b/project/assets/database/locations/lighthouse/staticLoot.json deleted file mode 100644 index 87df7e91..00000000 --- a/project/assets/database/locations/lighthouse/staticLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3444f720b1dc510b5d4a4f8eeba965bd46d239e12ca6c81fc367d68ed23574e0 -size 630254 diff --git a/project/assets/database/locations/lighthouse/statics.json b/project/assets/database/locations/lighthouse/statics.json deleted file mode 100644 index ddc58f52..00000000 --- a/project/assets/database/locations/lighthouse/statics.json +++ /dev/null @@ -1,1649 +0,0 @@ -{ - "containersGroups": { - "Rocks": { - "minContainers": 6, - "maxContainers": 8 - }, - "Other": { - "minContainers": 5, - "maxContainers": 6 - }, - "Chalet": { - "minContainers": 38, - "maxContainers": 42 - }, - "DestroedVillage": { - "minContainers": 4, - "maxContainers": 5 - }, - "Lighthouse": { - "minContainers": 55, - "maxContainers": 70 - }, - "Stashes": { - "minContainers": 19, - "maxContainers": 21 - }, - "Longroad": { - "minContainers": 13, - "maxContainers": 15 - }, - "Beach": { - "minContainers": 14, - "maxContainers": 16 - }, - "Stock": { - "minContainers": 10, - "maxContainers": 14 - }, - "Village": { - "minContainers": 34, - "maxContainers": 36 - }, - "Treatment": { - "minContainers": 110, - "maxContainers": 140 - } - }, - "containers": { - "container_Lighthouse_DesignStuff_00138": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00139": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00141": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00140": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00053": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00023": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00024": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00026": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00025": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00184": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00029": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00030": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00028": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00027": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00152": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00153": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00310": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00181": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00135": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00134": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00136": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00137": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00132": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00133": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00131": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00130": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00112": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00111": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00109": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00110": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00425": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00049": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00052": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00044": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00469": { - "groupId": "DestroedVillage" - }, - "Lootable_00000": { - "groupId": "DestroedVillage" - }, - "container_Lighthouse_DesignStuff_00048": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00391": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00178": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00018": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00017": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00015": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00016": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00165": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00164": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00162": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00163": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00033": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00034": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00032": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00031": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00307": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00375": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00051": { - "groupId": "Lighthouse" - }, - "Lootable_00005": { - "groupId": "Treatment" - }, - "Lootable_00006": { - "groupId": "Treatment" - }, - "Lootable_00008": { - "groupId": "Treatment" - }, - "Lootable_00007": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00373": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00180": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00390": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00156": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00157": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00154": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00127": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00126": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00128": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00129": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00392": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00054": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00427": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00426": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00050": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00466": { - "groupId": "DestroedVillage" - }, - "container_Lighthouse_DesignStuff_00022": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00021": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00019": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00020": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00045": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00429": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00046": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00055": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00282": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00281": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00283": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00284": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00185": { - "groupId": "Treatment" - }, - "Lootable_00001": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00047": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00038": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00037": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00035": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00036": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00428": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00056": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00431": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00058": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00430": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00147": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00148": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00149": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00145": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00144": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00142": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00143": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00160": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00158": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00159": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00306": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00057": { - "groupId": "Lighthouse" - }, - "Lootable_00009": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00311": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00374": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00183": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00182": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00308": { - "groupId": "Chalet" - }, - "Lootable_00002": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00309": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00012": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00011": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00013": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00014": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00179": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00384": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00372": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00175": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00343": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00303": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00519": { - "groupId": "Other" - }, - "container_Lighthouse_DesignStuff_00007": { - "groupId": "" - }, - "container_Lighthouse_DesignStuff_00405": { - "groupId": "Rocks" - }, - "container_Lighthouse_DesignStuff_00344": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00043": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00424": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00401": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00454": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00389": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00304": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00305": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00287": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00177": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00176": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00520": { - "groupId": "Other" - }, - "container_Lighthouse_DesignStuff_00494": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00481": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00476": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00493": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00474": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00480": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00489": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00478": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00491": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00486": { - "groupId": "Stashes" - }, - "Lootable_00072": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00485": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00383": { - "groupId": "Beach" - }, - "container_Test_for_export_00000": { - "groupId": "Other" - }, - "container_Lighthouse_DesignStuff_00400": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00121": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00009": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00252": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00396": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00095": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00419": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00125": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00368": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00326": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00330": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00397": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00008": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00367": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00253": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00092": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00387": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00422": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00439": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00327": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00404": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00423": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00329": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00328": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00453": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00358": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00448": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00420": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00280": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00399": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00369": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00093": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00518": { - "groupId": "Other" - }, - "container_Lighthouse_DesignStuff_00254": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00357": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00124": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00366": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00452": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00251": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00259": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00003": { - "groupId": "" - }, - "container_Lighthouse_DesignStuff_00257": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00388": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00331": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00438": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00371": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00258": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00094": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00421": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00382": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00255": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00356": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00517": { - "groupId": "Other" - }, - "container_Lighthouse_DesignStuff_00381": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00096": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00450": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00359": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00108": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00370": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00451": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00449": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00386": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00010": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00256": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00484": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00477": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00495": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00475": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00479": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00487": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00482": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00488": { - "groupId": "Stashes" - }, - "Lootable_00068": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00492": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00490": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00483": { - "groupId": "Stashes" - }, - "container_Lighthouse_DesignStuff_00336": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00442": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00338": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00263": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00409": { - "groupId": "Rocks" - }, - "container_Lighthouse_DesignStuff_00415": { - "groupId": "Rocks" - }, - "container_Lighthouse_DesignStuff_00099": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00262": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00378": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00506": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00300": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00100": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00103": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00365": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00341": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00464": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00274": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00515": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00446": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00509": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00339": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00244": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00461": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00447": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00380": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00363": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00521": { - "groupId": "Other" - }, - "container_Lighthouse_DesignStuff_00273": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00508": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00265": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00107": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00105": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00459": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00101": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00102": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00104": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00301": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00503": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00465": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00443": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00511": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00267": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00505": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00106": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00275": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00504": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00123": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00271": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00337": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00410": { - "groupId": "Rocks" - }, - "container_Lighthouse_DesignStuff_00264": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00340": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00510": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00278": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00512": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00500": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00513": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00342": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00417": { - "groupId": "Rocks" - }, - "container_Lighthouse_DesignStuff_00501": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00302": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00462": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00416": { - "groupId": "Rocks" - }, - "container_Lighthouse_DesignStuff_00460": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00364": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00502": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00272": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00279": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00268": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00122": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00411": { - "groupId": "Rocks" - }, - "container_Lighthouse_DesignStuff_00463": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00437": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00444": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00266": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00270": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00499": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00379": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00269": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00276": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00516": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00514": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00445": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00277": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00457": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00458": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00455": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00472": { - "groupId": "DestroedVillage" - }, - "container_Lighthouse_DesignStuff_00435": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00433": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00434": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00473": { - "groupId": "DestroedVillage" - }, - "container_Lighthouse_DesignStuff_00456": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00432": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00468": { - "groupId": "DestroedVillage" - }, - "container_Lighthouse_DesignStuff_00436": { - "groupId": "Village" - }, - "Lootable_00004": { - "groupId": "Lighthouse" - }, - "Lootable_00010": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00113": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00042": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00285": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00496": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00168": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00166": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00040": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00174": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00173": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00167": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00172": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00041": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00171": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00286": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00418": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00169": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00170": { - "groupId": "Treatment" - }, - "00012": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00039": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00335": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00333": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00362": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00361": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00398": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00440": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00260": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00261": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00334": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00097": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00098": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00332": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00441": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00360": { - "groupId": "Chalet" - }, - "n1": { - "groupId": "Village" - }, - "container_Lighthouse_DesignStuff_00090": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00325": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00246": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00248": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00091": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00120": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00249": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00247": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00250": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00081": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00354": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00117": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00079": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00000": { - "groupId": "" - }, - "container_Lighthouse_DesignStuff_00294": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00219": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00220": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00323": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00078": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00221": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00080": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00065": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00066": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00189": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00186": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00059": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00063": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00187": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00190": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00188": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00062": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00192": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00064": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00060": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00061": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00288": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00191": { - "groupId": "Treatment" - }, - "container_Test_for_export_00001": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00403": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00395": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00297": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00299": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00245": { - "groupId": "Treatment" - }, - "Lootable_00003": { - "groupId": "Other" - }, - "container_Lighthouse_DesignStuff_00238": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00232": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00242": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00235": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00085": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00414": { - "groupId": "Rocks" - }, - "container_Lighthouse_DesignStuff_00408": { - "groupId": "Rocks" - }, - "container_Lighthouse_DesignStuff_00234": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00088": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00228": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00229": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00239": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00005": { - "groupId": "" - }, - "container_Lighthouse_DesignStuff_00241": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00243": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00233": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00230": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00296": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00119": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00087": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00402": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00231": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00298": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00240": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00237": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00394": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00089": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00086": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00236": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00006": { - "groupId": "" - }, - "container_Lighthouse_DesignStuff_00082": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00223": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00355": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00385": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00407": { - "groupId": "Rocks" - }, - "container_Lighthouse_DesignStuff_00227": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00471": { - "groupId": "DestroedVillage" - }, - "container_Lighthouse_DesignStuff_00083": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00295": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00324": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00225": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00467": { - "groupId": "DestroedVillage" - }, - "container_Lighthouse_DesignStuff_00470": { - "groupId": "DestroedVillage" - }, - "container_Lighthouse_DesignStuff_00004": { - "groupId": "" - }, - "container_Lighthouse_DesignStuff_00413": { - "groupId": "Rocks" - }, - "container_Lighthouse_DesignStuff_00377": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00224": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00226": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00222": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00084": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00118": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00204": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00317": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00291": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00348": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00115": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00205": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00073": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00072": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00206": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00316": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00290": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00346": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00497": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00347": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00313": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00068": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00198": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00197": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00067": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00199": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00201": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00194": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00312": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00315": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00069": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00406": { - "groupId": "Rocks" - }, - "container_Lighthouse_DesignStuff_00314": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00114": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00070": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00193": { - "groupId": "Treatment" - }, - "container_Test_for_export_00002": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00202": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00412": { - "groupId": "Rocks" - }, - "container_Lighthouse_DesignStuff_00289": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00203": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00200": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00071": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00195": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00196": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00345": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00075": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00320": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00349": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00077": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00353": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00498": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00214": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00216": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00207": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00208": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00393": { - "groupId": "Longroad" - }, - "container_Lighthouse_DesignStuff_00218": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00350": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00210": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00211": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00318": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00322": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00209": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00293": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00352": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00292": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00212": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00116": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00351": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00319": { - "groupId": "Chalet" - }, - "container_Lighthouse_DesignStuff_00076": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00376": { - "groupId": "Beach" - }, - "container_Lighthouse_DesignStuff_00507": { - "groupId": "Stock" - }, - "container_Lighthouse_DesignStuff_00213": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00074": { - "groupId": "Lighthouse" - }, - "container_Lighthouse_DesignStuff_00215": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00217": { - "groupId": "Treatment" - }, - "container_Lighthouse_DesignStuff_00321": { - "groupId": "Chalet" - } - } -} \ No newline at end of file diff --git a/project/assets/database/locations/privatearea/base.json b/project/assets/database/locations/privatearea/base.json deleted file mode 100644 index d446795e..00000000 --- a/project/assets/database/locations/privatearea/base.json +++ /dev/null @@ -1,125 +0,0 @@ -{ - "Enabled": false, - "Locked": true, - "Insurance": true, - "SafeLocation": false, - "Name": "Private Sector", - "Description": "Private residential sector, built up with cottages of the upper-class citizens of Tarkov. In the first weeks of emerging chaos it served as a refugee staging camp, but has become a known scavenger haunt afterwards.", - "Scene": { - "path": "", - "rcid": "" - }, - "Area": 0, - "RequiredPlayerLevel": 0, - "MinPlayers": 6, - "MaxPlayers": 9, - "exit_count": 1, - "exit_access_time": 10, - "exit_time": 2, - "Preview": { - "path": "", - "rcid": "" - }, - "IconX": 224, - "IconY": 646, - "filter_ex": [], - "waves": [ - { - "number": 0, - "time_min": 1, - "time_max": 2, - "slots_min": 3, - "slots_max": 6, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault" - }, - { - "number": 1, - "time_min": 10, - "time_max": 12, - "slots_min": 3, - "slots_max": 5, - "SpawnPoints": "", - "BotSide": "Usec", - "BotPreset": "hard", - "isPlayers": false, - "WildSpawnType": "assault" - } - ], - "limits": [], - "AveragePlayTime": 100, - "AveragePlayerLevel": 10, - "escape_time_limit": 0, - "Rules": "Normal", - "IsSecret": true, - "doors": [], - "tmp_location_field_remove_me": 0, - "MinDistToExitPoint": 30, - "MaxDistToFreePoint": 900, - "MinDistToFreePoint": 10, - "MaxBotPerZone": 0, - "OpenZones": "", - "OcculsionCullingEnabled": false, - "GlobalLootChanceModifier": 1, - "OldSpawn": true, - "NewSpawn": false, - "BotMax": 0, - "BotStart": 0, - "BotStop": 0, - "BotMaxTimePlayer": 0, - "BotSpawnTimeOnMin": 0, - "BotSpawnTimeOnMax": 0, - "BotSpawnTimeOffMin": 0, - "BotSpawnTimeOffMax": 0, - "BotMaxPlayer": 0, - "BotEasy": 0, - "BotNormal": 0, - "BotHard": 0, - "BotImpossible": 0, - "BotAssault": 0, - "BotMarksman": 0, - "DisabledScavExits": "", - "AccessKeys": [], - "UnixDateTime": 0, - "users_gather_seconds": 120, - "users_spawn_seconds_n": 60, - "users_spawn_seconds_n2": 90, - "users_summon_seconds": 0, - "sav_summon_seconds": 60, - "matching_min_seconds": 120, - "MinMaxBots": [], - "BotLocationModifier": { - "AccuracySpeed": 0, - "Scattering": 0, - "GainSight": 0, - "MarksmanAccuratyCoef": 0, - "VisibleDistance": 0 - }, - "exits": [], - "DisabledForScav": false, - "SpawnPointParams": [], - "maxItemCountInLocation": [], - "Id": "Private Area", - "_Id": "5704e64ad2720bb55b8b456e", - "Loot": [], - "Banners": [ - { - "id": "5803a58524597710ca36fcb2", - "pic": { - "path": "CONTENT/banners/banner_terragroup.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT/banners/banner_scavraider.jpg", - "rcid": "" - } - } - ], - "BossLocationSpawn": [] -} \ No newline at end of file diff --git a/project/assets/database/locations/rezervbase/allExtracts.json b/project/assets/database/locations/rezervbase/allExtracts.json deleted file mode 100644 index 6900a4a1..00000000 --- a/project/assets/database/locations/rezervbase/allExtracts.json +++ /dev/null @@ -1,232 +0,0 @@ -[ - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 400, - "CountPve": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 5.0, - "ExfiltrationTimePVE": 5.0, - "ExfiltrationType": "SharedTimer", - "Id": "0", - "MinTime": 1450.0, - "MinTimePVE": 1450.0, - "MaxTime": 1700.0, - "MaxTimePVE": 1700.0, - "Name": "EXFIL_Train", - "PassageRequirement": "Train", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "TIP IS HARDCODED", - "Side": "Coop" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "EXFIL_Bunker_D2", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 18.0, - "ExfiltrationTimePVE": 18.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "EXFIL_Bunker", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_BUNKER_POWER", - "Side": "Coop" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "Alpinist", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Alpinist", - "PassageRequirement": "Reference", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "SharedTimer", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "EXFIL_ScavCooperation", - "PassageRequirement": "ScavCooperation", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Cooperate", - "Side": "Coop" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 10.0, - "ExfiltrationTimePVE": 10.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "EXFIL_vent", - "PassageRequirement": "Empty", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "Backpack", - "RequirementTip": "EXFIL_tip_backpack", - "Side": "Coop" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Exit1", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Exit2", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Exit3", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Exit4", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - } -] \ No newline at end of file diff --git a/project/assets/database/locations/rezervbase/base.json b/project/assets/database/locations/rezervbase/base.json deleted file mode 100644 index 6988fa6c..00000000 --- a/project/assets/database/locations/rezervbase/base.json +++ /dev/null @@ -1,6814 +0,0 @@ -{ - "AccessKeys": [], - "AccessKeysPvE": [], - "AirdropParameters": [ - { - "AirdropPointDeactivateDistance": 50, - "MinPlayersCountToSpawnAirdrop": 6, - "PlaneAirdropChance": 0.1, - "PlaneAirdropCooldownMax": 800, - "PlaneAirdropCooldownMin": 700, - "PlaneAirdropEnd": 1500, - "PlaneAirdropMax": 1, - "PlaneAirdropStartMax": 900, - "PlaneAirdropStartMin": 300, - "UnsuccessfulTryPenalty": 600 - } - ], - "Area": 0, - "AveragePlayTime": 27, - "AveragePlayerLevel": 35, - "Banners": [ - { - "id": "5807bfe124597742a92e0a4c", - "pic": { - "path": "CONTENT/banners/norvinskzone.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT/banners/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "64c0ad6af99768b777048f4e", - "pic": { - "path": "CONTENT/banners/banner_emissary.jpg", - "rcid": "" - } - } - ], - "BossLocationSpawn": [ - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "2", - "BossEscortDifficult": "normal", - "BossEscortType": "followerGluharSecurity", - "BossName": "bossGluhar", - "BossPlayer": false, - "BossZone": "ZoneRailStrorage,ZonePTOR2,ZoneBarrack,ZoneSubStorage", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve", - "regular" - ], - "Supports": [ - { - "BossEscortAmount": "2", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerGluharAssault" - }, - { - "BossEscortAmount": "2", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerGluharSecurity" - }, - { - "BossEscortAmount": "2", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerGluharScout" - } - ], - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 40, - "BossDifficult": "normal", - "BossEscortAmount": "2,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "ZoneRailStrorage", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve", - "regular" - ], - "Supports": null, - "Time": 1470, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 25, - "BossDifficult": "normal", - "BossEscortAmount": "2,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "ZoneRailStrorage", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve", - "regular" - ], - "Supports": null, - "Time": -1, - "TriggerId": "autoId_00632_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 25, - "BossDifficult": "normal", - "BossEscortAmount": "2,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "ZoneSubCommand", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve", - "regular" - ], - "Supports": null, - "Time": -1, - "TriggerId": "autoId_00000_D2_LEVER", - "TriggerName": "interactObject" - }, - { - "BossChance": 25, - "BossDifficult": "normal", - "BossEscortAmount": "2,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "ZoneSubCommand", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve", - "regular" - ], - "Supports": null, - "Time": 3, - "TriggerId": "raider_simple_patroling", - "TriggerName": "interactObject" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - } - ], - "BotAssault": 100, - "BotEasy": 10, - "BotHard": 40, - "BotImpossible": 0, - "BotLocationModifier": { - "AccuracySpeed": 0.6, - "AdditionalHostilitySettings": [ - { - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 75, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcBEAR", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - }, - { - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 90, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcUSEC", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - } - ], - "DistToActivate": 330, - "DistToActivatePvE": 330, - "DistToPersueAxemanCoef": 1.1, - "DistToSleep": 350, - "DistToSleepPvE": 350, - "GainSight": 1.3, - "KhorovodChance": 0, - "MarksmanAccuratyCoef": 1, - "MaxExfiltrationTime": 1800, - "MinExfiltrationTime": 1200, - "Scattering": 0.6, - "VisibleDistance": 1.3 - }, - "BotMarksman": 0, - "BotMax": 16, - "BotMaxPlayer": 7, - "BotMaxPvE": 28, - "BotMaxTimePlayer": 1000, - "BotNormal": 50, - "BotSpawnCountStep": 3, - "BotSpawnPeriodCheck": 15, - "BotSpawnTimeOffMax": 30, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOnMax": 320, - "BotSpawnTimeOnMin": 260, - "BotStart": 20, - "BotStartPlayer": 100, - "BotStop": 1500, - "Description": "The secret Federal State Reserve Agency base that, according to urban legends, contains enough supplies to last for years: food, medications and other resources, enough to survive an all-out nuclear war.", - "DisabledForScav": false, - "DisabledScavExits": "", - "EnableCoop": true, - "Enabled": true, - "EscapeTimeLimit": 40, - "EscapeTimeLimitCoop": 30, - "EscapeTimeLimitPVE": 40, - "Events": { - "Halloween2024": { - "CrowdAttackBlockRadius": 100, - "CrowdAttackSpawnParams": [ - { - "Difficulty": "easy", - "Role": "infectedAssault", - "Weight": 30 - }, - { - "Difficulty": "normal", - "Role": "infectedAssault", - "Weight": 110 - }, - { - "Difficulty": "hard", - "Role": "infectedAssault", - "Weight": 40 - }, - { - "Difficulty": "easy", - "Role": "infectedPmc", - "Weight": 15 - }, - { - "Difficulty": "normal", - "Role": "infectedPmc", - "Weight": 55 - }, - { - "Difficulty": "hard", - "Role": "infectedPmc", - "Weight": 20 - }, - { - "Difficulty": "easy", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "easy", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedLaborant", - "Weight": 0 - } - ], - "CrowdCooldownPerPlayerSec": 300, - "CrowdsLimit": 2, - "InfectedLookCoeff": 2, - "InfectionPercentage": 0, - "MaxCrowdAttackSpawnLimit": 18, - "MinInfectionPercentage": 0, - "MinSpawnDistToPlayer": 50, - "TargetPointSearchRadiusLimit": 150, - "ZombieCallDeltaRadius": 20, - "ZombieCallPeriodSec": 1, - "ZombieCallRadiusLimit": 125, - "ZombieMultiplier": 5 - } - }, - "ForceOnlineRaidInPVE": false, - "GenerateLocalLootCache": true, - "GlobalContainerChanceModifier": 1, - "GlobalLootChanceModifier": 0.17, - "GlobalLootChanceModifierPvE": 0.4, - "IconX": 360, - "IconY": 410, - "Id": "RezervBase", - "Insurance": true, - "IsSecret": false, - "Locked": false, - "Loot": [], - "MatchMakerMinPlayersByWaitTime": [ - { - "minPlayers": 7, - "time": 60 - }, - { - "minPlayers": 6, - "time": 70 - }, - { - "minPlayers": 5, - "time": 120 - }, - { - "minPlayers": 4, - "time": 180 - }, - { - "minPlayers": 3, - "time": 250 - }, - { - "minPlayers": 2, - "time": 330 - }, - { - "minPlayers": 1, - "time": 420 - } - ], - "MaxBotPerZone": 4, - "MaxCoopGroup": 12, - "MaxDistToFreePoint": 200, - "MaxPlayers": 11, - "MinDistToExitPoint": 30, - "MinDistToFreePoint": 60, - "MinMaxBots": [], - "MinPlayerLvlAccessKeys": 0, - "MinPlayers": 9, - "Name": "ReserveBase", - "NewSpawn": false, - "NewSpawnForPlayers": false, - "NonWaveGroupScenario": { - "Chance": 50, - "Enabled": false, - "MaxToBeGroup": 3, - "MinToBeGroup": 2 - }, - "OcculsionCullingEnabled": false, - "OfflineNewSpawn": false, - "OfflineOldSpawn": true, - "OldSpawn": true, - "OpenZones": "ZoneRailStrorage,ZonePTOR1,ZonePTOR2,ZoneBarrack,ZoneBunkerStorage,ZoneSubStorage", - "PlayersRequestCount": -1, - "PmcMaxPlayersInGroup": 5, - "Preview": { - "path": "", - "rcid": "" - }, - "RequiredPlayerLevelMax": 100, - "RequiredPlayerLevelMin": 0, - "Rules": "Normal", - "SafeLocation": false, - "ScavMaxPlayersInGroup": 4, - "Scene": { - "path": "maps/rezerv_base_preset.bundle", - "rcid": "Rezerv_Base.scenespreset.asset" - }, - "SpawnPointParams": [ - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "00c42177-c407-4f54-9382-2d1044cc5970", - "Infiltration": "Common", - "Position": { - "x": 148.69, - "y": -10.8204985, - "z": 38.0700073 - }, - "Rotation": 201.86, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "00e9c4cb-2222-4ec5-94a6-67f07ecb3b0f", - "Infiltration": "", - "Position": { - "x": 141.042, - "y": -6.49700165, - "z": -223.095 - }, - "Rotation": 315.001068, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSubCommand", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "019be61d-5fde-4a7c-90de-01a6a0060e43", - "Infiltration": "", - "Position": { - "x": -85.138, - "y": -14.5049973, - "z": 36.945 - }, - "Rotation": 96.64535, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBarrack", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "03556c39-e856-420a-877f-fda1ab93af99", - "Infiltration": "", - "Position": { - "x": -118.6, - "y": -6.93600464, - "z": -3.04 - }, - "Rotation": 22.0423622, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0438fda7-9b94-4052-a234-211b5598ec62", - "Infiltration": "Common", - "Position": { - "x": -115.929993, - "y": -5.47, - "z": -22.95398 - }, - "Rotation": 170, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0741db23-e8c9-474a-8c0b-ec7e6f5ebe78", - "Infiltration": "Common", - "Position": { - "x": -45.5930176, - "y": -6.478, - "z": 29.5580139 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSubCommand", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "08f2256d-4fd7-4ece-bf91-6928a0410f95", - "Infiltration": "", - "Position": { - "x": -94.91, - "y": -14.75, - "z": 3.42 - }, - "Rotation": 96.64535, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "08f46995-7af7-4f7f-85d2-be46143d1ed0", - "Infiltration": "Common", - "Position": { - "x": 62.28003, - "y": -6.927332, - "z": -174.450012 - }, - "Rotation": 7.00999975, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZonePTOR2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0a530eba-bccb-4cc0-95d5-63287c0a07b2", - "Infiltration": "", - "Position": { - "x": 65.83, - "y": -6.774002, - "z": -39.17 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0a5669a9-4221-4e76-b4ac-67ea8c8bfc7e", - "Infiltration": "Common", - "Position": { - "x": 86.823, - "y": -6.77, - "z": -33.8469849 - }, - "Rotation": 254.950012, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0d4507f6-c500-4928-a941-7cd5f2a76f7b", - "Infiltration": "Common", - "Position": { - "x": 60.71997, - "y": -6.70799828, - "z": 63.77002 - }, - "Rotation": 184.72, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0f45c9a8-21a6-4671-9ee9-27ee5508cab7", - "Infiltration": "Common", - "Position": { - "x": 142.890015, - "y": -10.8204985, - "z": 40.539978 - }, - "Rotation": 201.86, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "119bf539-a9d7-400e-a69d-f7e36f715193", - "Infiltration": "Common", - "Position": { - "x": -168.593018, - "y": -6.298, - "z": 55.697998 - }, - "Rotation": 117.288177, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "14afdaf7-3bc8-4930-a982-a6ee62011177", - "Infiltration": "Common", - "Position": { - "x": 164.5, - "y": -6.817665, - "z": -234.905991 - }, - "Rotation": 28.0800037, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "14b54bc4-64b6-4d9f-b21f-ec4d00ea12c4", - "Infiltration": "Common", - "Position": { - "x": -40.9580078, - "y": -6.471, - "z": 30.5980225 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "154b9369-bff9-4365-a3d4-484355549dc7", - "Infiltration": "Common", - "Position": { - "x": 213.62, - "y": -6.85, - "z": -112.53 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "15b6e485-67c8-4d29-837b-c1d5576684a9", - "Infiltration": "Common", - "Position": { - "x": -50.0700073, - "y": -6.48, - "z": 26.5700073 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBarrack", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "162cd326-c355-446a-bf62-e2a76e76d743", - "Infiltration": "", - "Position": { - "x": -140.161, - "y": -6.963005, - "z": -35.536 - }, - "Rotation": 130.028351, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "17a95066-caca-4f93-b4ab-23feeede1153", - "Infiltration": "Common", - "Position": { - "x": 147.06, - "y": -10.8204985, - "z": 34.6499939 - }, - "Rotation": 201.86, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "18381674-3e66-4089-848f-f58600be9689", - "Infiltration": "Common", - "Position": { - "x": -40.8300171, - "y": -6.48, - "z": 26.2000122 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "191b8914-96c6-4216-b90c-d3748c9148de", - "Infiltration": "Common", - "Position": { - "x": 148.81, - "y": -10.8204985, - "z": 36.23001 - }, - "Rotation": 201.86, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1a174d20-8119-4054-9ce1-fcaf015f28bf", - "Infiltration": "Common", - "Position": { - "x": 189.640015, - "y": -6.782763, - "z": -101.459991 - }, - "Rotation": 216.03, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1ae36267-0f66-4dbe-af1d-60e0e9778805", - "Infiltration": "Common", - "Position": { - "x": 215.52002, - "y": -6.85, - "z": -114.519989 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1b219f54-e6fd-4299-9e7e-c00ca901ea32", - "Infiltration": "", - "Position": { - "x": 217.322, - "y": -6.91000366, - "z": -172.024 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1b553fc5-00fb-4973-a94c-1bacec06efdc", - "Infiltration": "Common", - "Position": { - "x": 164.81, - "y": -5.1726656, - "z": -161.37 - }, - "Rotation": 354.619965, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1d4fb8a6-88a1-49d2-b516-6acb50bc95f2", - "Infiltration": "", - "Position": { - "x": 219.21, - "y": -6.91000366, - "z": -173.99 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSubCommand", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1e519a90-0481-40d0-90fe-af14c6932a2e", - "Infiltration": "", - "Position": { - "x": -99.945, - "y": -14.5070038, - "z": 17.43 - }, - "Rotation": 297.8055, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1e5d8495-e764-497f-9209-f26bd9911a54", - "Infiltration": "Common", - "Position": { - "x": -167.830017, - "y": -6.303, - "z": 59.125 - }, - "Rotation": 135.641571, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1fb48b81-e694-45ce-bd44-bca19bc16a35", - "Infiltration": "Common", - "Position": { - "x": -148.19, - "y": -6.9, - "z": 45.6799927 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSubStorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2033dbca-f488-464b-948b-52073985318d", - "Infiltration": "", - "Position": { - "x": 73.38, - "y": -15.5040054, - "z": -38.34 - }, - "Rotation": 186.0699, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 50, - "y": 4, - "z": 50 - } - } - }, - "DelayToCanSpawnSec": 4, - "Id": "206ed703-1a5a-47b5-a354-b34cd6c267d2", - "Infiltration": "Common", - "Position": { - "x": -108.281006, - "y": -10.45, - "z": 73.56604 - }, - "Rotation": 96.94, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2309b6fc-8e22-4101-8989-b43aa37a4e82", - "Infiltration": "Common", - "Position": { - "x": 63.0700073, - "y": -6.8792696, - "z": -171.97 - }, - "Rotation": 7.00999975, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "24d23092-ce33-40cd-b1cf-b45c72f68fd9", - "Infiltration": "Common", - "Position": { - "x": -119.008972, - "y": -5.466, - "z": -24.3669739 - }, - "Rotation": 83.81, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZonePTOR1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2502dcb2-540d-4577-a635-6cbde07e0e35", - "Infiltration": "", - "Position": { - "x": -29.715, - "y": -6.75369263, - "z": -12.45 - }, - "Rotation": 105.6213, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "25353616-a83d-476e-b9e1-d30a67314b35", - "Infiltration": "Common", - "Position": { - "x": -160.515991, - "y": -6.293, - "z": 65.64099 - }, - "Rotation": 180.89, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2795dd2d-c233-4acc-835f-d76337b039b9", - "Infiltration": "Common", - "Position": { - "x": -79, - "y": 21.26, - "z": 193.82 - }, - "Rotation": 154.03, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2835cac0-f7fa-4910-8e00-7de2fd4d2a2e", - "Infiltration": "Common", - "Position": { - "x": 171.62, - "y": -5.1726656, - "z": -167.66 - }, - "Rotation": 314.09, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "289db12e-94af-42ab-ac89-0828b8d58709", - "Infiltration": "Common", - "Position": { - "x": -34.3300171, - "y": -6.45, - "z": 20.0800171 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSubStorage", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2f9b3c37-c5f9-4f27-9d0d-6ff8f904d674", - "Infiltration": "", - "Position": { - "x": 58.35, - "y": -12.2260056, - "z": -155.19 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "311bfd2a-3a32-47f9-bf5b-bcc6f17ab9a9", - "Infiltration": "", - "Position": { - "x": 38.57, - "y": -0.5377197, - "z": -184.23 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "31b28d9e-82c9-40fe-aba4-9199c6a59bc5", - "Infiltration": "Common", - "Position": { - "x": 156.494324, - "y": -6.817665, - "z": -234.905991 - }, - "Rotation": 29.01, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "320a99cf-bd60-4e05-b751-adabd7a32dbd", - "Infiltration": "Common", - "Position": { - "x": -150.01001, - "y": -6.9, - "z": 47.77002 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "348e573d-a5bf-4488-a64e-3c047677153c", - "Infiltration": "Common", - "Position": { - "x": -162.341, - "y": -6.305, - "z": 62.19403 - }, - "Rotation": 180.89, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "34cc45f7-8e1a-4fac-b6e2-0c0df2f7e310", - "Infiltration": "", - "Position": { - "x": 243.125, - "y": -7.088669, - "z": -88.11 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSubStorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "3537b338-638e-40f1-ad27-b61b30f73319", - "Infiltration": "", - "Position": { - "x": 41.44, - "y": -12.2260056, - "z": -110.21 - }, - "Rotation": 79.13992, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "360bc6a9-2abe-4a62-8942-e6b9b3310219", - "Infiltration": "Common", - "Position": { - "x": 57.9000244, - "y": -6.70799828, - "z": 64.82001 - }, - "Rotation": 184.72, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "37bc4422-3e90-46c1-bcdb-eed54d5697bd", - "Infiltration": "Common", - "Position": { - "x": 186.799988, - "y": -6.77978849, - "z": -105 - }, - "Rotation": 216.03, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "38e6ee1e-0d82-47bc-a1a7-e27f9b9ecb78", - "Infiltration": "Common", - "Position": { - "x": -27.8599854, - "y": 12.61, - "z": 184.18 - }, - "Rotation": 88.80001, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSubCommand", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "391109fd-2884-42ca-bd43-b3f83505d6e6", - "Infiltration": "", - "Position": { - "x": -105.636, - "y": -14.4990005, - "z": 21.839 - }, - "Rotation": 102.590828, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBarrack", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "3da9ec0e-d86e-4d32-b38c-4737a92ae487", - "Infiltration": "", - "Position": { - "x": -145.44, - "y": -6.93600464, - "z": 53.34 - }, - "Rotation": 110.272163, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBarrack", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "3ff434b8-bb79-4e4f-9d15-9e345ba538d6", - "Infiltration": "", - "Position": { - "x": -154.14, - "y": -6.16899872, - "z": -9.22 - }, - "Rotation": 294.580322, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "400cfcd7-5776-467a-b7eb-8b0f9819f7d6", - "Infiltration": "Common", - "Position": { - "x": 23.6300049, - "y": -6.927332, - "z": 8.209991 - }, - "Rotation": 289.35, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneBarrack", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "40552058-37f5-4e0e-a316-427a655d7e8c", - "Infiltration": "", - "Position": { - "x": -74.085, - "y": -6.816002, - "z": 27.013 - }, - "Rotation": 283.263184, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "43ccaa18-724f-4b57-b617-9531a2013c71", - "Infiltration": "Common", - "Position": { - "x": -37.52002, - "y": -6.79093742, - "z": -172.26001 - }, - "Rotation": 1.47, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSubCommand", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4485b6e9-e055-40a1-af23-ef9b688a0bf7", - "Infiltration": "", - "Position": { - "x": -117.59, - "y": -14.5930023, - "z": 58.736 - }, - "Rotation": 102.590828, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "45b2a94a-8e53-48d5-ad33-bcafdb0ec179", - "Infiltration": "Common", - "Position": { - "x": 216.200012, - "y": -6.85, - "z": -112.909973 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4705f3a7-01d8-4c9f-bf94-06687b8590f8", - "Infiltration": "Common", - "Position": { - "x": 56.6699829, - "y": -6.70799828, - "z": 66.6500244 - }, - "Rotation": 203.36, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSubCommand", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4768999a-9854-406d-88ed-501bf86be53f", - "Infiltration": "", - "Position": { - "x": -90.439, - "y": -14.5108719, - "z": 14.514 - }, - "Rotation": 96.64535, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "487c95ec-a07d-4b83-be98-d254990f8896", - "Infiltration": "Common", - "Position": { - "x": -27.9400024, - "y": 12.61, - "z": 181.580017 - }, - "Rotation": 264.97, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneBarrack", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 150 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4b04a014-b605-46c4-905e-c5f31f652b77", - "Infiltration": "", - "Position": { - "x": -266.77, - "y": -6.24500275, - "z": 23.06 - }, - "Rotation": 84.70626, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePTOR1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4b6dfb22-29ec-4631-bf12-c73a45788231", - "Infiltration": "", - "Position": { - "x": 32.54, - "y": -6.774002, - "z": -11.45 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4ef7931f-d559-4ad2-a850-8c53ff038651", - "Infiltration": "Common", - "Position": { - "x": -35.960022, - "y": -6.45, - "z": 21.8700256 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "503cb253-c40e-45ea-a820-37f45a521c98", - "Infiltration": "Common", - "Position": { - "x": 168.448, - "y": -6.817665, - "z": -234.905991 - }, - "Rotation": 15.7700033, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZonePTOR1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "50528d5a-c6ee-446f-9d53-d25134ada06f", - "Infiltration": "", - "Position": { - "x": 43.05, - "y": -6.786003, - "z": -32.69 - }, - "Rotation": 260.9375, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBarrack", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5094f5a8-697b-49e8-bcad-568cd43c3887", - "Infiltration": "", - "Position": { - "x": -83.86, - "y": -6.816002, - "z": 44.85 - }, - "Rotation": 347.314056, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBunkerStorage", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "52cb538e-3885-4059-91ed-c1219bd835a5", - "Infiltration": "", - "Position": { - "x": 126.439987, - "y": -6.771843, - "z": 45.4300079 - }, - "Rotation": 186.0699, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5361df43-6ce8-4c33-a400-236f16aeb446", - "Infiltration": "Common", - "Position": { - "x": 160.198, - "y": -5.106186, - "z": -168.052 - }, - "Rotation": 26.43, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "55d82f41-cb58-4bcc-82c0-14a3c3805033", - "Infiltration": "", - "Position": { - "x": 138.82, - "y": -6.79600525, - "z": -229.27 - }, - "Rotation": 315.001068, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePTOR2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5762e0f4-1b6b-4491-a306-6de962003c48", - "Infiltration": "", - "Position": { - "x": 102.747, - "y": -6.9240036, - "z": -5.478 - }, - "Rotation": 109.706451, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5b546bd1-83c9-4c97-a0f8-4baab6305dba", - "Infiltration": "Common", - "Position": { - "x": -135.099976, - "y": -6.665001, - "z": -129.98999 - }, - "Rotation": 2.98000026, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneBunkerStorage", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5b836fd7-6d36-40ef-a121-84a947effa5e", - "Infiltration": "", - "Position": { - "x": 249.138992, - "y": -6.44699669, - "z": -28.2319946 - }, - "Rotation": 297.1585, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5bf94615-7ec0-4d85-8e14-95e7d570145a", - "Infiltration": "Common", - "Position": { - "x": 217.539978, - "y": -6.85, - "z": -109.72998 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5da7b7d0-dbb1-496f-9889-521485c3d71a", - "Infiltration": "Common", - "Position": { - "x": 214.640015, - "y": -6.85, - "z": -109.369995 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5ddf18ce-8b04-4a2f-a18c-352505ec1baa", - "Infiltration": "Common", - "Position": { - "x": -121.913025, - "y": -5.454, - "z": -21.6659851 - }, - "Rotation": 126.350006, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6159ed20-e29b-45f3-8910-b8f20c40fe18", - "Infiltration": "Common", - "Position": { - "x": 25.8599854, - "y": -6.927332, - "z": 7.19000244 - }, - "Rotation": 281.74, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "64cc034d-d5b6-4d6b-8f9c-cb50175004de", - "Infiltration": "Common", - "Position": { - "x": -47.5999756, - "y": -6.42, - "z": 20.3200073 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "68091dec-b042-4e80-9caf-b6a9e8a43877", - "Infiltration": "Common", - "Position": { - "x": -32.23999, - "y": -6.47, - "z": 13.5900269 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "68e38aa2-a4b7-4d5d-939d-d561e7638f99", - "Infiltration": "Common", - "Position": { - "x": 141.38, - "y": -10.8204985, - "z": 41.1300049 - }, - "Rotation": 201.86, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6b9f8c39-0f5a-417c-a94a-0a03831d8872", - "Infiltration": "", - "Position": { - "x": -6.03, - "y": -6.96200562, - "z": -182.43 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6dca997c-477d-4029-8f7f-3f9d5060a4f6", - "Infiltration": "Common", - "Position": { - "x": 173.98999, - "y": -5.1726656, - "z": -166.78 - }, - "Rotation": 314.09, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6f6a1207-c890-4087-9b83-8d8f975c561a", - "Infiltration": "Common", - "Position": { - "x": 188.81, - "y": -6.84417343, - "z": -106.419983 - }, - "Rotation": 154.03, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "70efb1d6-60a1-47cd-8c08-86dae0389f48", - "Infiltration": "Common", - "Position": { - "x": -50.73999, - "y": -6.49, - "z": 15.7000122 - }, - "Rotation": 12.37, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSubCommand", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "71cea4ba-2112-4e0a-b365-c2a51c5fe627", - "Infiltration": "", - "Position": { - "x": -82.439, - "y": -14.2580032, - "z": 28.901 - }, - "Rotation": 96.64535, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "736c5c9d-155a-4772-9ca0-3bbc4523b37e", - "Infiltration": "Common", - "Position": { - "x": -137.969971, - "y": -7.050001, - "z": -129.98999 - }, - "Rotation": 2.98000026, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "739858a9-4e38-4ea2-ab47-9b15b660b4b1", - "Infiltration": "", - "Position": { - "x": 23.48, - "y": -5.10800171, - "z": -128.25 - }, - "Rotation": 110.272163, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "73cc9203-6243-4b8f-96bf-c61bda3bd80a", - "Infiltration": "Common", - "Position": { - "x": -36.3699951, - "y": -6.98216534, - "z": -166.97998 - }, - "Rotation": 12.24, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "741a7272-8fe2-4d4b-a4d6-1f7a34995f88", - "Infiltration": "Common", - "Position": { - "x": 22.6699829, - "y": -6.9191, - "z": 5.17001343 - }, - "Rotation": 289.35, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "74e240c1-45b8-4f62-a5a1-aa4cd2729df6", - "Infiltration": "Common", - "Position": { - "x": 23.22998, - "y": -6.8962636, - "z": 6.619995 - }, - "Rotation": 289.35, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "76888d25-113b-4601-a3d1-7edbaedcba9b", - "Infiltration": "Common", - "Position": { - "x": 189.450012, - "y": -6.80541134, - "z": -96.26001 - }, - "Rotation": 322.68, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7864de7f-7b35-49f6-9ebd-2af5b13f26d2", - "Infiltration": "Common", - "Position": { - "x": 55.9299927, - "y": -6.70799828, - "z": 65.1099854 - }, - "Rotation": 184.72, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7975dfd9-5a16-4157-80fd-5f99a3cde652", - "Infiltration": "Common", - "Position": { - "x": -150.76001, - "y": -6.9, - "z": 45.1300049 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSubCommand", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 8 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "79d4d786-e171-4910-949e-a055970afde8", - "Infiltration": "", - "Position": { - "x": -86.14, - "y": -14.3970032, - "z": 21.38 - }, - "Rotation": 96.64535, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBarrack", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 150 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7dd58283-cacc-4cfe-b192-1ff712f1a1c4", - "Infiltration": "", - "Position": { - "x": -265.47, - "y": -5.54600525, - "z": 13.13 - }, - "Rotation": 84.70626, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7df08a3e-3488-4077-8bec-48eac7903934", - "Infiltration": "Common", - "Position": { - "x": -42.0599976, - "y": -6.47, - "z": 23.9200134 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7fce3e48-e5eb-4db4-9c45-9f063aea47b7", - "Infiltration": "Common", - "Position": { - "x": -115.359009, - "y": -5.447, - "z": -26.6069946 - }, - "Rotation": 28.36, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "821b550f-0576-4806-af7f-cbac8393bf74", - "Infiltration": "", - "Position": { - "x": 225.13, - "y": -6.84999847, - "z": -122.95 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "853a88d5-ecf3-4131-aa49-bfd53a45e627", - "Infiltration": "Common", - "Position": { - "x": -40.5900269, - "y": -6.47, - "z": 20.52002 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "85485da0-9a38-41c6-b322-d3f18520c484", - "Infiltration": "Common", - "Position": { - "x": 86.15997, - "y": -6.81, - "z": -36.5599976 - }, - "Rotation": 254.950012, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "854ea99d-9c9a-4155-ba38-a3fb3f42226a", - "Infiltration": "Common", - "Position": { - "x": -43.3599854, - "y": -6.469, - "z": 28.7740173 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "859fbef2-6229-4b0c-9ab5-5788284fbd5f", - "Infiltration": "Common", - "Position": { - "x": -146.94, - "y": -6.9, - "z": 49.8599854 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "860a4540-4bb3-4976-b5af-221fd60d6e4c", - "Infiltration": "Common", - "Position": { - "x": 63.6900024, - "y": -6.897411, - "z": -168.200012 - }, - "Rotation": 7.00999975, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneBarrack", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 150 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "86d6130e-b1a9-4f64-9828-fd54c33cdb7a", - "Infiltration": "", - "Position": { - "x": -264.5, - "y": -5.21600342, - "z": 11.51 - }, - "Rotation": 84.70626, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "86d61f12-0b5f-4f3a-b085-c26fc1aeab12", - "Infiltration": "Common", - "Position": { - "x": -71.48999, - "y": 21.43, - "z": 193.75 - }, - "Rotation": 154.03, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneBarrack", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "87259d8f-ec8c-4033-a109-7ac91fdade2e", - "Infiltration": "", - "Position": { - "x": -62.3, - "y": -7.024811, - "z": 37.87 - }, - "Rotation": 347.314056, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBarrack", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 150 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "873b34aa-71f2-4547-ad55-d65ae25443b0", - "Infiltration": "", - "Position": { - "x": -252.84, - "y": -5.37599945, - "z": -0.72 - }, - "Rotation": 84.70626, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePTOR2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8796a598-2a66-442f-aab3-f56b54a67026", - "Infiltration": "", - "Position": { - "x": 96.7, - "y": -7.022003, - "z": -16.16 - }, - "Rotation": 109.706451, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "89cfb3d1-b3bb-4bbf-8a96-b23a8357cf3e", - "Infiltration": "Common", - "Position": { - "x": -49.289978, - "y": -6.49, - "z": 18.1000061 - }, - "Rotation": 12.37, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8a9c0e57-c784-497c-a215-1c45b6256f8a", - "Infiltration": "Common", - "Position": { - "x": 85.05798, - "y": -6.676, - "z": -37.8710022 - }, - "Rotation": 337.909149, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8ae2749b-0955-4d4b-8da6-b6fa0846f773", - "Infiltration": "Common", - "Position": { - "x": -32.8599854, - "y": -6.98216534, - "z": -154.47 - }, - "Rotation": 86.59, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8b961fc6-835c-430c-822c-733424995c94", - "Infiltration": "Common", - "Position": { - "x": -163.706, - "y": -6.311, - "z": 61.1260376 - }, - "Rotation": 180.89, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSubStorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8ba6cb72-0603-4612-b6b6-1949d61e813b", - "Infiltration": "", - "Position": { - "x": 30.671, - "y": -12.2260056, - "z": -153.948 - }, - "Rotation": 79.13992, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8e2e20fb-73c2-4fb8-914d-03e4fc0b607a", - "Infiltration": "Common", - "Position": { - "x": -148.890015, - "y": -6.9, - "z": 43.8500366 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8f95ec4e-cdb4-40f6-8e95-1bc0e90f74dc", - "Infiltration": "Common", - "Position": { - "x": 25.6699829, - "y": -6.927332, - "z": 4.880005 - }, - "Rotation": 289.35, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneBunkerStorage", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "92dfa172-96a1-42b1-bc6c-c8e4958f811e", - "Infiltration": "", - "Position": { - "x": 248.309982, - "y": -6.4659977, - "z": -32.87999 - }, - "Rotation": 248.310242, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "92e15d2b-c690-447e-abe0-a7ab7014dfc5", - "Infiltration": "Common", - "Position": { - "x": -147.5, - "y": -6.9, - "z": 47.73004 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "92e47a87-f606-400f-8557-a36a22bf88a8", - "Infiltration": "Common", - "Position": { - "x": 216.840027, - "y": -6.85, - "z": -111.539978 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSubCommand", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 8 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "94806514-6ed7-40ff-bb17-9b76c636c986", - "Infiltration": "", - "Position": { - "x": -136.37, - "y": -14.6259995, - "z": 41.582 - }, - "Rotation": 96.64535, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "952876c9-b4a8-41a1-afd4-ccfba67f26c9", - "Infiltration": "", - "Position": { - "x": -10.27, - "y": -7.03700256, - "z": -186.01 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "9606681f-1eb4-465b-b1b3-0ce363746634", - "Infiltration": "Common", - "Position": { - "x": 192.44, - "y": -6.830794, - "z": -97.51999 - }, - "Rotation": 46.72, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "966f9ec5-32c5-4576-8940-430821816f51", - "Infiltration": "Common", - "Position": { - "x": -48.6500244, - "y": -6.43, - "z": 15.1000061 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "9674e4bd-0ef3-4cb9-8081-ccc3f88bc9c8", - "Infiltration": "", - "Position": { - "x": 230.42, - "y": -6.84999847, - "z": -117.53 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBunkerStorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "98af18c5-1581-43f4-b8c9-34356c3754ce", - "Infiltration": "", - "Position": { - "x": 248.83, - "y": -6.022997, - "z": -18.0099945 - }, - "Rotation": 248.310242, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "996cd4d3-0de0-42b1-bd70-41bb00a25615", - "Infiltration": "Common", - "Position": { - "x": 214.5, - "y": -6.86, - "z": -116.34 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "9c7c218f-2e40-4f4d-9c35-7531fa1cd85e", - "Infiltration": "Common", - "Position": { - "x": -33.71997, - "y": -6.98216534, - "z": -156.91 - }, - "Rotation": 86.59, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "9d5b9214-a40b-4f09-a0c9-33dbac45f36f", - "Infiltration": "Common", - "Position": { - "x": 212.52002, - "y": -6.85, - "z": -115.48999 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZonePTOR2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "9db1f48a-e761-4036-8c61-aad16ff69c0b", - "Infiltration": "", - "Position": { - "x": 104.76, - "y": -7.008003, - "z": 12.853 - }, - "Rotation": 109.706451, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "a42a953a-2ccc-4acd-9427-dbcc85dc9694", - "Infiltration": "Common", - "Position": { - "x": 160.22998, - "y": -6.817665, - "z": -234.905991 - }, - "Rotation": 28.0800018, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "a4484cbe-8a2d-4054-ab7f-38c562254d00", - "Infiltration": "Common", - "Position": { - "x": -34.8699951, - "y": -6.98216534, - "z": -169.22 - }, - "Rotation": 3.630001, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "a45293ef-65c6-4309-9f66-5e591aac01f2", - "Infiltration": "Common", - "Position": { - "x": 213, - "y": -6.85, - "z": -114.09 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "a6e8eaf2-6ade-4924-8cdb-5670409ab674", - "Infiltration": "", - "Position": { - "x": -5.967, - "y": -6.996002, - "z": -180.038 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePTOR1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "a7bcdaca-c949-4a09-bd1c-db96d83b6aea", - "Infiltration": "", - "Position": { - "x": 1.843, - "y": -6.92733, - "z": -39.999 - }, - "Rotation": 105.6213, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSubCommand", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "a90880cc-8231-48d0-bf2f-d3c4d2aad9dc", - "Infiltration": "", - "Position": { - "x": -104.219, - "y": -14.4960022, - "z": 33.834 - }, - "Rotation": 102.590828, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSubCommand", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "aa54d668-26e5-4e65-9b84-290b4a4aa610", - "Infiltration": "", - "Position": { - "x": -89.81, - "y": -14.4660034, - "z": 17.202 - }, - "Rotation": 12.218833, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBarrack", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ab9aab74-6c70-4d2f-88ac-1dfbcc729c13", - "Infiltration": "", - "Position": { - "x": -52.99, - "y": -6.816002, - "z": 40.57 - }, - "Rotation": 347.314056, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "acf4be5a-f177-49d4-8e0e-ba432d202862", - "Infiltration": "Common", - "Position": { - "x": -75.96997, - "y": 21.36, - "z": 194.040039 - }, - "Rotation": 154.03, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "af19e12e-6379-4032-b901-2d99a736e2f3", - "Infiltration": "Common", - "Position": { - "x": -78.65997, - "y": 21.08, - "z": 191.140015 - }, - "Rotation": 154.03, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "af2243f9-b799-47d1-80fb-b178b1823eb9", - "Infiltration": "Common", - "Position": { - "x": 62.8400269, - "y": -6.70799828, - "z": 63.1099854 - }, - "Rotation": 216.23, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneBarrack", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b07b05e1-99e6-45ff-a046-10fadf79073e", - "Infiltration": "", - "Position": { - "x": -163.124, - "y": -6.16899872, - "z": -6.836 - }, - "Rotation": 294.580322, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b0fe3793-dc02-49d6-8f96-6e9d92458b02", - "Infiltration": "Common", - "Position": { - "x": 214.210022, - "y": -6.85, - "z": -110.81 - }, - "Rotation": 283.845032, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSubStorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b17e5f88-b45c-449e-9b8a-d7d01f0c5fb0", - "Infiltration": "", - "Position": { - "x": 83.169, - "y": -12.2200012, - "z": -123.123 - }, - "Rotation": 271.344574, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 50, - "y": 4, - "z": 50 - } - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b2fa9077-6179-4774-9aa9-fcbd7356f8b9", - "Infiltration": "Common", - "Position": { - "x": -114.937988, - "y": -10.443, - "z": 76.39899 - }, - "Rotation": 96.94, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b35f777f-63fa-427a-9528-436a5cf7dcd1", - "Infiltration": "", - "Position": { - "x": 45.353, - "y": -0.788002, - "z": -196.341 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b425c6d9-ccac-451d-a859-7c0ac171e618", - "Infiltration": "Common", - "Position": { - "x": -44.8309937, - "y": -6.459, - "z": 27.40802 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b5c0445f-4f81-471c-99bb-5488f14a8f55", - "Infiltration": "Common", - "Position": { - "x": -149.44, - "y": -6.9, - "z": 49.52002 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b6f8e7e0-de74-4f7b-95ce-5e058b6e0050", - "Infiltration": "Common", - "Position": { - "x": -48.3200073, - "y": -6.49, - "z": 15.0599976 - }, - "Rotation": 12.37, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 52 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b7247acd-a58d-4c8f-887a-c8ac50d94b67", - "Infiltration": "Common", - "Position": { - "x": 170.349976, - "y": -6.817665, - "z": -234.905991 - }, - "Rotation": 28.0800037, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b9725c82-b56b-4399-a5a0-af96fe5be188", - "Infiltration": "Common", - "Position": { - "x": -53.460022, - "y": -6.48, - "z": 33.3099976 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBunkerStorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 85 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "bc7a9ead-4321-49e6-9015-1a91ed281360", - "Infiltration": "", - "Position": { - "x": 197.055008, - "y": -6.329996, - "z": 42.002 - }, - "Rotation": 186.0699, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSubStorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "bde50af8-0a4a-466a-93e8-b6049ee28d1e", - "Infiltration": "", - "Position": { - "x": 33.367, - "y": -12.2260056, - "z": -142.628 - }, - "Rotation": 79.13992, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "be80439c-09ae-4a4c-8268-9af3fc87d1ed", - "Infiltration": "", - "Position": { - "x": -7.279, - "y": -7.03700256, - "z": -183.433 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "bf2409cf-36b1-45f6-a891-711cfc4b8301", - "Infiltration": "Common", - "Position": { - "x": -49.6099854, - "y": -6.42, - "z": 16.6000061 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZonePTOR1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "bf2420e2-be63-43e9-bd5c-1429fb0985eb", - "Infiltration": "", - "Position": { - "x": -35.44, - "y": -7.036995, - "z": -34.11 - }, - "Rotation": 105.6213, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c1916fa5-33cc-42ae-84f9-0d4bee5820c1", - "Infiltration": "Common", - "Position": { - "x": 61.52002, - "y": -6.927332, - "z": -177.18 - }, - "Rotation": 7.00999975, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c24ae3d6-ca2f-4ff7-97d2-962436e34a6e", - "Infiltration": "Common", - "Position": { - "x": -115.723022, - "y": -5.444, - "z": -19.9519958 - }, - "Rotation": 170, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 50, - "y": 4, - "z": 50 - } - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c2617f1a-b99e-4a99-a863-28b779479b0a", - "Infiltration": "Common", - "Position": { - "x": -112.146973, - "y": -10.4690428, - "z": 75.19202 - }, - "Rotation": 96.94, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c32bcd20-a6db-4ffd-8888-e688431ea167", - "Infiltration": "Common", - "Position": { - "x": -151.580017, - "y": -6.9, - "z": 42.960022 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c82f1789-7941-4205-b547-280c23a2ebd5", - "Infiltration": "Common", - "Position": { - "x": -39.9199829, - "y": -6.5, - "z": 22.76001 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ca156a0b-c224-402a-a3cb-f0b30d7fd2dd", - "Infiltration": "", - "Position": { - "x": 39.721, - "y": -0.206001282, - "z": -188.589 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ca46288b-86e6-4d08-bc7e-b4042a26a050", - "Infiltration": "", - "Position": { - "x": 137.168, - "y": -6.505005, - "z": -231.952 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "cad15006-2004-489d-9988-026580c360d5", - "Infiltration": "", - "Position": { - "x": 216.719, - "y": -6.86700439, - "z": -176.889 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "cd1ecd67-b353-41a3-864f-685b27d0cb96", - "Infiltration": "Common", - "Position": { - "x": 87.76599, - "y": -6.758, - "z": -30.5809937 - }, - "Rotation": 254.950012, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZonePTOR2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "d08fec09-6582-4c82-905e-6035256e3645", - "Infiltration": "", - "Position": { - "x": 102.418, - "y": -7.008003, - "z": 3.068 - }, - "Rotation": 109.706451, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "d3c5085e-7b35-4d86-9caf-e1ea094ddb3b", - "Infiltration": "", - "Position": { - "x": 240.93, - "y": -7.053322, - "z": -94.94 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBarrack", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "d3d395ee-3f4b-479c-8b03-e7d9fe15a467", - "Infiltration": "", - "Position": { - "x": -149.914, - "y": -6.18400574, - "z": -10.41 - }, - "Rotation": 96.64535, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 30, - "y": 4, - "z": 30 - } - } - }, - "DelayToCanSpawnSec": 4, - "Id": "d74615bb-34d0-4fc5-9ab9-54f7a9634766", - "Infiltration": "Common", - "Position": { - "x": -118.280029, - "y": -10.4800005, - "z": 77.5 - }, - "Rotation": 96.94, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "d91a39ba-2c87-4cc0-8203-82f91d607526", - "Infiltration": "Common", - "Position": { - "x": 89.41498, - "y": -6.823, - "z": -24.7189941 - }, - "Rotation": 254.950012, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "db36d732-053f-48be-b73c-b1a7fbe23514", - "Infiltration": "Common", - "Position": { - "x": -34.5209961, - "y": -6.5, - "z": 14.9630127 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "db67eb64-27c8-498d-9920-1ffc66ecc786", - "Infiltration": "", - "Position": { - "x": 35.91, - "y": -0.256004333, - "z": -189.65 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "dba24d50-6429-4474-9787-ba7fabff23b8", - "Infiltration": "Common", - "Position": { - "x": -74.26001, - "y": 21.37, - "z": 192 - }, - "Rotation": 154.03, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "dcc98552-3235-46e4-bd1f-409af32b50cf", - "Infiltration": "Common", - "Position": { - "x": -38.1400146, - "y": -6.49, - "z": 16.27002 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSubStorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "dec2098e-2186-417e-8e94-cdcf495cbaf0", - "Infiltration": "", - "Position": { - "x": 31.49, - "y": -12.2260056, - "z": -146.815 - }, - "Rotation": 79.13992, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "defa3a38-4449-4268-9527-9c29c6abd095", - "Infiltration": "", - "Position": { - "x": 146.036, - "y": -6.84999847, - "z": -230.529 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePTOR1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "df73552a-de8a-4064-b8ec-d5eaf5d04155", - "Infiltration": "", - "Position": { - "x": -6.523, - "y": -6.723999, - "z": -19.157 - }, - "Rotation": 105.6213, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "e0048716-f08b-4594-9d5c-340d17b7f2a6", - "Infiltration": "Common", - "Position": { - "x": -43.1099854, - "y": -6.47, - "z": 20.730011 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "e01d4b5a-76ef-4447-865f-e5edad0fbd5f", - "Infiltration": "Common", - "Position": { - "x": 67.8499756, - "y": -7.28543139, - "z": -168.15 - }, - "Rotation": 7.00999975, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "e17e24b8-476b-49d0-b420-d9f620a9b9b9", - "Infiltration": "Common", - "Position": { - "x": -28.26001, - "y": 12.61, - "z": 182.93 - }, - "Rotation": 88.80001, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "e276b0b1-84ca-4731-ad13-fc7a9c91191c", - "Infiltration": "Common", - "Position": { - "x": -47.25, - "y": -6.49, - "z": 18.7000122 - }, - "Rotation": 45.4399948, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSubStorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "e6a1196e-d800-4701-ac38-5d3d345c8f22", - "Infiltration": "", - "Position": { - "x": 47.26, - "y": -12.076004, - "z": -93.33 - }, - "Rotation": 186.0699, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBunkerStorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "e9aae147-491b-4e56-a383-f63172705b88", - "Infiltration": "", - "Position": { - "x": 255.05, - "y": -6.409996, - "z": -42.14 - }, - "Rotation": 248.310242, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "eb080bed-b347-4820-a790-4a04f1ac83c9", - "Infiltration": "Common", - "Position": { - "x": -135.099976, - "y": -6.665001, - "z": -129.98999 - }, - "Rotation": 2.98000026, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "eb784bd2-2b96-43f7-981d-152c3598cf93", - "Infiltration": "Common", - "Position": { - "x": -135.539978, - "y": -6.665001, - "z": -129.98999 - }, - "Rotation": 2.98000026, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneBunkerStorage", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ece4ff1a-c548-4b1a-ac8f-660fbab649ae", - "Infiltration": "", - "Position": { - "x": 226.305008, - "y": -6.829998, - "z": 31.4150085 - }, - "Rotation": 186.0699, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBarrack", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ed696df4-0ff8-41d7-b380-631d7b115b97", - "Infiltration": "", - "Position": { - "x": -174.14, - "y": -6.87599945, - "z": 1.2 - }, - "Rotation": 294.580322, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnBoxParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Size": { - "x": 50, - "y": 4, - "z": 50 - } - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ed8b01cb-2827-4707-9d46-a3fb51f4a628", - "Infiltration": "Common", - "Position": { - "x": -120.780029, - "y": -10.459444, - "z": 78.1400146 - }, - "Rotation": 96.94, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "eef4cc76-2b20-48d3-af56-2e8442aa8b7f", - "Infiltration": "Common", - "Position": { - "x": 173.799988, - "y": -5.1726656, - "z": -169.16 - }, - "Rotation": 314.09, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f2fdf203-fc09-4a5d-b38b-e226a40d1da4", - "Infiltration": "Common", - "Position": { - "x": -148.650024, - "y": -6.9, - "z": 51.3300171 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f3fa28cb-eff0-4e05-bafd-0f428b69153d", - "Infiltration": "Common", - "Position": { - "x": -136.01001, - "y": -6.665001, - "z": -129.98999 - }, - "Rotation": 2.98000026, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f453c38d-5bad-44d7-b71c-7c7bad6b3e70", - "Infiltration": "Common", - "Position": { - "x": -40.7969971, - "y": -6.48, - "z": 17.059021 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f486be10-b81a-4893-aafb-58ebbffda26a", - "Infiltration": "Common", - "Position": { - "x": -149.609985, - "y": -6.9, - "z": 41.77002 - }, - "Rotation": 112.108734, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSubStorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f499d5f6-5a76-4825-b4a3-e43997c428d2", - "Infiltration": "", - "Position": { - "x": 121.965, - "y": -12.2470016, - "z": -120.284 - }, - "Rotation": 286.266541, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f8165791-4f87-4127-8590-e684659682c5", - "Infiltration": "Common", - "Position": { - "x": -26.8499756, - "y": 12.61, - "z": 182.830017 - }, - "Rotation": 88.80001, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f82b1195-b8e3-4087-b5af-8bcc78ac506b", - "Infiltration": "Common", - "Position": { - "x": -47.25, - "y": -6.49, - "z": 14.269989 - }, - "Rotation": 12.37, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "fa5ad796-2cff-460c-9162-6b44dbdd0441", - "Infiltration": "Common", - "Position": { - "x": -38.8499756, - "y": -6.49, - "z": 28.8600159 - }, - "Rotation": 28.0800037, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBunkerStorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "fc214558-4f24-4b2e-bce4-ed097bfb556e", - "Infiltration": "", - "Position": { - "x": 176.250992, - "y": -5.93699646, - "z": 40.798996 - }, - "Rotation": 186.0699, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePTOR2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "fded8e8f-4c7d-48d5-81de-a27dd0d31574", - "Infiltration": "", - "Position": { - "x": 60.5, - "y": -6.87000275, - "z": -56.2 - }, - "Rotation": 105.6213, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRailStrorage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "fe986f48-0619-40e6-b330-228bedb84c96", - "Infiltration": "", - "Position": { - "x": 218.029, - "y": -6.91000366, - "z": -175.682 - }, - "Rotation": 281.0713, - "Sides": [ - "Savage" - ] - } - ], - "UnixDateTime": 1706874543, - "_Id": "5704e5fad2720bc05b8b4567", - "doors": [], - "exit_access_time": 50, - "exit_count": 1, - "exit_time": 2, - "exits": [ - { - "Chance": 100, - "ChancePVE": 100, - "Count": 420, - "CountPVE": 400, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 5, - "ExfiltrationTimePVE": 5, - "ExfiltrationType": "SharedTimer", - "Id": "0", - "MaxTime": 1700, - "MaxTimePVE": 1700, - "MinTime": 1450, - "MinTimePVE": 1450, - "Name": "EXFIL_Train", - "PassageRequirement": "Train", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "TIP IS HARDCODED" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "Alpinist", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Alpinist", - "PassageRequirement": "Reference", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "SharedTimer", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "EXFIL_ScavCooperation", - "PassageRequirement": "ScavCooperation", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Cooperate" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 18, - "ExfiltrationTimePVE": 18, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "EXFIL_Bunker", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_BUNKER_POWER" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationTimePVE": 10, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "EXFIL_vent", - "PassageRequirement": "Empty", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "Backpack", - "RequirementTip": "EXFIL_tip_backpack" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "EXFIL_Bunker_D2", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - } - ], - "filter_ex": [], - "limits": [ - { - "items": [ - "634959225289190e5e773b3b" - ], - "max": 8, - "min": 7 - } - ], - "matching_min_seconds": 60, - "maxItemCountInLocation": [ - { - "TemplateId": "634959225289190e5e773b3b", - "Value": 7 - } - ], - "sav_summon_seconds": 60, - "tmp_location_field_remove_me": 0, - "transits": [ - { - "activateAfterSec": 60, - "active": true, - "conditions": "REZ_TRANSIT_18_COND", - "description": "REZ_TRANSIT_18_DESC", - "id": 18, - "location": "bigmap", - "name": "REZ_TRANSIT_18", - "target": "56f40101d2720b2a4d8b45d6", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": true, - "conditions": "REZ_TRANSIT_19_COND", - "description": "REZ_TRANSIT_19_DESC", - "id": 19, - "location": "Woods", - "name": "REZ_TRANSIT_19", - "target": "5704e3c2d2720bac5b8b4567", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": true, - "conditions": "REZ_TRANSIT_20_COND", - "description": "REZ_TRANSIT_20_DESC", - "id": 20, - "location": "Lighthouse", - "name": "REZ_TRANSIT_20", - "target": "5704e4dad2720bb55b8b4567", - "time": 30 - } - ], - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "waves": [ - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 1, - "slots_max": 4, - "slots_min": 1, - "time_max": -1, - "time_min": -1 - }, - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 2, - "slots_max": 2, - "slots_min": 2, - "time_max": 120, - "time_min": 80 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 3, - "slots_max": 2, - "slots_min": 1, - "time_max": 200, - "time_min": 100 - }, - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 4, - "slots_max": 3, - "slots_min": 1, - "time_max": 300, - "time_min": 100 - }, - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "", - "WildSpawnType": "assault", - "isPlayers": true, - "number": 5, - "slots_max": 4, - "slots_min": 2, - "time_max": 400, - "time_min": 260 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "", - "WildSpawnType": "assault", - "isPlayers": true, - "number": 6, - "slots_max": 4, - "slots_min": 2, - "time_max": 600, - "time_min": 320 - }, - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 7, - "slots_max": 2, - "slots_min": 2, - "time_max": 600, - "time_min": 300 - }, - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "", - "WildSpawnType": "assault", - "isPlayers": true, - "number": 8, - "slots_max": 4, - "slots_min": 2, - "time_max": 800, - "time_min": 480 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "", - "WildSpawnType": "assault", - "isPlayers": true, - "number": 9, - "slots_max": 4, - "slots_min": 2, - "time_max": 1000, - "time_min": 500 - }, - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "", - "WildSpawnType": "assault", - "isPlayers": true, - "number": 10, - "slots_max": 4, - "slots_min": 2, - "time_max": 1000, - "time_min": 600 - }, - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "", - "WildSpawnType": "assault", - "isPlayers": true, - "number": 11, - "slots_max": 4, - "slots_min": 2, - "time_max": 1000, - "time_min": 700 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 12, - "slots_max": 3, - "slots_min": 1, - "time_max": 1400, - "time_min": 900 - }, - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 13, - "slots_max": 3, - "slots_min": 0, - "time_max": 1600, - "time_min": 900 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 14, - "slots_max": 2, - "slots_min": 1, - "time_max": 2400, - "time_min": 1200 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 15, - "slots_max": 2, - "slots_min": 0, - "time_max": 2400, - "time_min": 1200 - } - ] -} diff --git a/project/assets/database/locations/rezervbase/looseLoot.json b/project/assets/database/locations/rezervbase/looseLoot.json deleted file mode 100644 index dac48f5f..00000000 --- a/project/assets/database/locations/rezervbase/looseLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:76bb3ff52759c85361d3a21971cf357450c7ece0834dd85ec88636a0401bc72a -size 54162585 diff --git a/project/assets/database/locations/rezervbase/staticAmmo.json b/project/assets/database/locations/rezervbase/staticAmmo.json deleted file mode 100644 index 1dd2a1c2..00000000 --- a/project/assets/database/locations/rezervbase/staticAmmo.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7e76ce4b0a9f25be58cec67bf42ea4c514a245a17e678824f2cb93dae55a5558 -size 11288 diff --git a/project/assets/database/locations/rezervbase/staticContainers.json b/project/assets/database/locations/rezervbase/staticContainers.json deleted file mode 100644 index de5a6427..00000000 --- a/project/assets/database/locations/rezervbase/staticContainers.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b3f588f6229b4d05e70e89485f54987b9c738aacac7766704ef051d769a8f9da -size 494549 diff --git a/project/assets/database/locations/rezervbase/staticLoot.json b/project/assets/database/locations/rezervbase/staticLoot.json deleted file mode 100644 index 19faa073..00000000 --- a/project/assets/database/locations/rezervbase/staticLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1b8217b517532a0ed979590070cb1b7737e0dff77baabc466c26ee045b6444c8 -size 531716 diff --git a/project/assets/database/locations/rezervbase/statics.json b/project/assets/database/locations/rezervbase/statics.json deleted file mode 100644 index 4c126344..00000000 --- a/project/assets/database/locations/rezervbase/statics.json +++ /dev/null @@ -1,3775 +0,0 @@ -{ - "containersGroups": { - "BagSportN40_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N25_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N53_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N93_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_64_open_N13_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "SupplyBoxFoodN4_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N67_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN9_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N27_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN23_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN5_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N86_5_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N123_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N102_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "SupplyBoxFoodN10_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N85_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N115_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_64_open_N11_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N111_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N130_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN8_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N18_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N34_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N79_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N31_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N83_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N75_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN58_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN3_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N87_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN16_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N125_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_64_open_N12_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_64_open_N16_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "SupplyBoxFoodN5_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N21_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N22_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N70_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N110_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN19_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "SupplyBoxFoodN9_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N36_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN54_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N26_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN4_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N63_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N55_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N64_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN57_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N50_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN53_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N116_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN26_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N124_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN43_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N118_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N62_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N51_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N108_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N29_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N17_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_64_open_N15_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N73_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN36_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N20_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_64_open_N5_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N37_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N43_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N38_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N69_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "SupplyBoxFoodN8_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_64_open_N4_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N77_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N41_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N96_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN39_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_64_open_N6_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N80_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_64_open_N1_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N49_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_64_open_N10_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N100_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN7_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N91_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N71_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN37_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N47_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N126_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N52_5_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN24_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN51_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN45_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N122_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N106_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN12_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N54_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N113_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN25_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN27_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N103_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN50_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N66_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N19_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "SupplyBoxFoodN2_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N105_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N42_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN44_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N48_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN31_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN48_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N65_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N56_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN21_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "SupplyBoxFoodN11_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN42_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN15_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_64_open_N3_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N114_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N119_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN55_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N117_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN18_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Medbag_N60_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N88_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "SupplyBoxFoodN3_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N40_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN49_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N68_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N109_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N78_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N76_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N107_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN22_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_64_open_N7_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN38_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N72_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N39_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN2_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN1_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN47_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N82_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "SupplyBoxFoodN6_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Medbag_N59_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N30_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N104_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN41_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N74_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_64_open_N2_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_64_open_N9_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N121_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N90_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N94_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N99_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN29_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N128_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N46_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N112_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN11_5_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN33_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN14_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN20_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N84_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN28_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN32_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN34_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Medbag_N58_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N35_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N89_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "SupplyBoxFoodN7_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N45_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN10_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N129_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Medcase_N61_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N127_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN13_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N120_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N97_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_64_open_N14_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN6_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN17_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN46_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "weaponbox_N101_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N98_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN52_4_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N23_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN30_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_grenade_N44_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Ammo_wood_N57_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N81_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN35_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N28_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N32_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N24_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "SupplyBoxFoodN1_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_110x45_open_N33_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N92_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "Suitcase_64_open_N8_5_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSportN56_2_rezerv": { - "minContainers": 0, - "maxContainers": 2 - }, - "toolbox_N95_3_rezerv": { - "minContainers": 0, - "maxContainers": 2 - } - }, - "containers": { - "container_Reserve_Base_DesignStuff_00305": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00102": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00101": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00099": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00100": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00147": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00148": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00150": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00149": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00019": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00020": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00022": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00021": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00043": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00044": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00046": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00045": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00152": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00151": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00153": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00154": { - "groupId": "" - }, - "Lootable_00001": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00309": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00303": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00212": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00211": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00213": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00214": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00323": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00318": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00182": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00181": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00179": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00180": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00163": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00164": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00166": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00165": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00321": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00300": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00310": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00037": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00038": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00036": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00035": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00131": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00132": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00134": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00133": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00106": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00105": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00103": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00104": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00143": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00144": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00146": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00145": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00247": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00248": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00250": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00249": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00111": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00112": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00114": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00113": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00054": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00053": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00051": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00052": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00042": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00041": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00039": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00040": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00258": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00257": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00255": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00256": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00302": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00026": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00025": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00023": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00024": { - "groupId": "" - }, - "Lootable_00009": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00313": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00123": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00124": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00126": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00125": { - "groupId": "" - }, - "Lootable_00002": { - "groupId": "" - }, - "Lootable_00005": { - "groupId": "" - }, - "Lootable_00006": { - "groupId": "" - }, - "Lootable_00008": { - "groupId": "" - }, - "Lootable_00007": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00315": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00094": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00093": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00091": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00092": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00110": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00109": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00107": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00108": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00317": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00184": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00183": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00185": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00186": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00307": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00320": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00056": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00055": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00057": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00058": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00209": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00210": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00208": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00207": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00301": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00016": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00015": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00017": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00018": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00155": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00156": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00158": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00157": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00308": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00122": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00121": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00119": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00120": { - "groupId": "" - }, - "Lootable_00000": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00322": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00081": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00082": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00080": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00079": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00083": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00084": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00086": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00085": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00204": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00203": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00205": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00206": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00227": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00228": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00230": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00229": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00240": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00239": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00241": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00242": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00220": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00219": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00221": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00222": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00304": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00096": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00095": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00097": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00098": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00233": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00234": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00232": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00231": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00177": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00178": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00314": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00176": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00175": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00173": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00174": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00172": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00171": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00252": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00251": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00253": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00254": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00238": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00237": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00235": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00236": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00048": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00047": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00049": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00050": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00118": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00117": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00115": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00116": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00299": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00298": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00195": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00196": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00198": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00197": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00324": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00167": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00168": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00170": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00169": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00162": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00161": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00159": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00160": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00225": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00226": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00224": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00223": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00312": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00260": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00259": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00261": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00262": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00013": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00014": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00012": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00011": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00192": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00191": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00193": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00194": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00139": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00140": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00142": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00141": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00061": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00062": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00060": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00059": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00306": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00137": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00138": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00136": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00135": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00033": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00034": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00032": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00031": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00075": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00076": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00078": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00077": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00003": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00004": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00006": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00005": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00316": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00070": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00069": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00067": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00068": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00311": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00201": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00202": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00200": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00199": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00319": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00071": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00072": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00074": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00073": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00190": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00189": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00187": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00188": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00008": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00007": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00009": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00010": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00065": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00066": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00064": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00063": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00218": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00217": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00215": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00216": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00245": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00246": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00244": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00243": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00028": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00027": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00029": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00030": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00129": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00130": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00128": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00127": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00088": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00087": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00089": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00090": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00264": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00263": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00265": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00266": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00292": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00291": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00290": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00293": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00297": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00296": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00295": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00294": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00557": { - "groupId": "BagSportN57_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00409": { - "groupId": "BagSportN9_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00442": { - "groupId": "BagSportN18_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00447": { - "groupId": "BagSportN19_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00390": { - "groupId": "BagSportN2_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00386": { - "groupId": "BagSportN1_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00472": { - "groupId": "BagSportN27_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00408": { - "groupId": "BagSportN8_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00416": { - "groupId": "BagSportN11_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00413": { - "groupId": "BagSportN10_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00401": { - "groupId": "BagSportN6_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00554": { - "groupId": "BagSportN56_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00419": { - "groupId": "BagSportN11_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00512": { - "groupId": "BagSportN41_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00539": { - "groupId": "BagSportN51_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00397": { - "groupId": "BagSportN5_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00502": { - "groupId": "BagSportN38_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00499": { - "groupId": "BagSportN37_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00541": { - "groupId": "BagSportN52_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00406": { - "groupId": "BagSportN7_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00388": { - "groupId": "BagSportN1_3_rezerv" - }, - "container_Test_for_export_00000": { - "groupId": "BagSportN58_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00509": { - "groupId": "BagSportN40_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00429": { - "groupId": "BagSportN15_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00448": { - "groupId": "BagSportN20_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00478": { - "groupId": "BagSportN29_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00493": { - "groupId": "BagSportN34_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00399": { - "groupId": "BagSportN5_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00404": { - "groupId": "BagSportN7_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00405": { - "groupId": "BagSportN7_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00468": { - "groupId": "BagSportN26_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00470": { - "groupId": "BagSportN26_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00527": { - "groupId": "BagSportN47_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00513": { - "groupId": "BagSportN41_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00521": { - "groupId": "BagSportN44_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00517": { - "groupId": "BagSportN43_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00516": { - "groupId": "BagSportN42_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00422": { - "groupId": "BagSportN12_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00398": { - "groupId": "BagSportN5_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00392": { - "groupId": "BagSportN3_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00551": { - "groupId": "BagSportN55_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00491": { - "groupId": "BagSportN33_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00511": { - "groupId": "BagSportN41_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00455": { - "groupId": "BagSportN22_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00481": { - "groupId": "BagSportN30_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00556": { - "groupId": "BagSportN57_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00490": { - "groupId": "BagSportN33_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00407": { - "groupId": "BagSportN8_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00440": { - "groupId": "BagSportN17_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00465": { - "groupId": "BagSportN25_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00457": { - "groupId": "BagSportN22_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00484": { - "groupId": "BagSportN31_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00467": { - "groupId": "BagSportN25_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00518": { - "groupId": "BagSportN43_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00535": { - "groupId": "BagSportN50_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00492": { - "groupId": "BagSportN34_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00412": { - "groupId": "BagSportN10_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00459": { - "groupId": "BagSportN23_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00402": { - "groupId": "BagSportN6_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00531": { - "groupId": "BagSportN48_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00522": { - "groupId": "BagSportN45_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00532": { - "groupId": "BagSportN49_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00548": { - "groupId": "BagSportN54_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00482": { - "groupId": "BagSportN30_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00411": { - "groupId": "BagSportN9_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00495": { - "groupId": "BagSportN35_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00474": { - "groupId": "BagSportN28_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00395": { - "groupId": "BagSportN4_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00510": { - "groupId": "BagSportN40_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00479": { - "groupId": "BagSportN29_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00530": { - "groupId": "BagSportN48_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00501": { - "groupId": "BagSportN37_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00438": { - "groupId": "BagSportN17_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00514": { - "groupId": "BagSportN42_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00504": { - "groupId": "BagSportN38_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00420": { - "groupId": "BagSportN12_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00496": { - "groupId": "BagSportN35_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00547": { - "groupId": "BagSportN54_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00437": { - "groupId": "BagSportN17_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00451": { - "groupId": "BagSportN20_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00553": { - "groupId": "BagSportN56_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00400": { - "groupId": "BagSportN6_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00418": { - "groupId": "BagSportN11_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00544": { - "groupId": "BagSportN53_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00450": { - "groupId": "BagSportN20_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00454": { - "groupId": "BagSportN21_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00425": { - "groupId": "BagSportN14_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00463": { - "groupId": "BagSportN24_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00430": { - "groupId": "BagSportN15_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00545": { - "groupId": "BagSportN53_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00464": { - "groupId": "BagSportN24_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00538": { - "groupId": "BagSportN51_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00471": { - "groupId": "BagSportN27_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00550": { - "groupId": "BagSportN55_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00515": { - "groupId": "BagSportN42_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00558": { - "groupId": "BagSportN58_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00456": { - "groupId": "BagSportN22_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00489": { - "groupId": "BagSportN33_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00449": { - "groupId": "BagSportN20_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00488": { - "groupId": "BagSportN32_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00475": { - "groupId": "BagSportN28_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00555": { - "groupId": "BagSportN57_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00536": { - "groupId": "BagSportN50_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00446": { - "groupId": "BagSportN19_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00462": { - "groupId": "BagSportN24_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00524": { - "groupId": "BagSportN46_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00486": { - "groupId": "BagSportN32_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00543": { - "groupId": "BagSportN52_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00528": { - "groupId": "BagSportN47_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00520": { - "groupId": "BagSportN44_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00497": { - "groupId": "BagSportN36_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00500": { - "groupId": "BagSportN37_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00503": { - "groupId": "BagSportN38_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00559": { - "groupId": "BagSportN58_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00428": { - "groupId": "BagSportN14_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00410": { - "groupId": "BagSportN9_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00476": { - "groupId": "BagSportN28_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00546": { - "groupId": "BagSportN53_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00523": { - "groupId": "BagSportN45_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00483": { - "groupId": "BagSportN31_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00480": { - "groupId": "BagSportN30_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00415": { - "groupId": "BagSportN11_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00458": { - "groupId": "BagSportN23_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00431": { - "groupId": "BagSportN15_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00443": { - "groupId": "BagSportN18_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00508": { - "groupId": "BagSportN40_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00444": { - "groupId": "BagSportN18_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00435": { - "groupId": "BagSportN16_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00487": { - "groupId": "BagSportN32_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00469": { - "groupId": "BagSportN26_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00414": { - "groupId": "BagSportN10_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00434": { - "groupId": "BagSportN16_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00526": { - "groupId": "BagSportN47_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00002": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00466": { - "groupId": "BagSportN25_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00525": { - "groupId": "BagSportN46_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00494": { - "groupId": "BagSportN34_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00461": { - "groupId": "BagSportN23_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00549": { - "groupId": "BagSportN54_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00439": { - "groupId": "BagSportN17_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00000": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00426": { - "groupId": "BagSportN14_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00391": { - "groupId": "BagSportN3_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00441": { - "groupId": "BagSportN18_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00432": { - "groupId": "BagSportN15_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00537": { - "groupId": "BagSportN50_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00552": { - "groupId": "BagSportN55_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00460": { - "groupId": "BagSportN23_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00396": { - "groupId": "BagSportN4_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00529": { - "groupId": "BagSportN48_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00473": { - "groupId": "BagSportN27_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00534": { - "groupId": "BagSportN49_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00485": { - "groupId": "BagSportN31_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00403": { - "groupId": "BagSportN7_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00433": { - "groupId": "BagSportN16_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00453": { - "groupId": "BagSportN21_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00001": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00540": { - "groupId": "BagSportN52_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00505": { - "groupId": "BagSportN39_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00533": { - "groupId": "BagSportN49_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00477": { - "groupId": "BagSportN29_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00417": { - "groupId": "BagSportN11_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00421": { - "groupId": "BagSportN12_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00387": { - "groupId": "BagSportN1_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00498": { - "groupId": "BagSportN36_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00423": { - "groupId": "BagSportN13_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00393": { - "groupId": "BagSportN3_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00427": { - "groupId": "BagSportN14_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00542": { - "groupId": "BagSportN52_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00452": { - "groupId": "BagSportN21_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00445": { - "groupId": "BagSportN19_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00506": { - "groupId": "BagSportN39_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00519": { - "groupId": "BagSportN44_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00389": { - "groupId": "BagSportN2_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00436": { - "groupId": "BagSportN16_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00394": { - "groupId": "BagSportN4_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00424": { - "groupId": "BagSportN13_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00507": { - "groupId": "BagSportN39_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00761": { - "groupId": "Medcase_N61_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00763": { - "groupId": "Medcase_N61_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00764": { - "groupId": "Medcase_N61_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00762": { - "groupId": "Medcase_N61_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00879": { - "groupId": "toolbox_N97_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00838": { - "groupId": "toolbox_N85_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00871": { - "groupId": "toolbox_N95_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00844": { - "groupId": "toolbox_N86_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00866": { - "groupId": "toolbox_N93_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00860": { - "groupId": "toolbox_N92_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00825": { - "groupId": "toolbox_N81_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00774": { - "groupId": "toolbox_N65_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00854": { - "groupId": "toolbox_N90_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00827": { - "groupId": "toolbox_N82_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00829": { - "groupId": "toolbox_N82_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00794": { - "groupId": "toolbox_N71_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00858": { - "groupId": "toolbox_N91_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00803": { - "groupId": "toolbox_N74_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00868": { - "groupId": "toolbox_N94_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00815": { - "groupId": "toolbox_N78_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00846": { - "groupId": "toolbox_N87_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00768": { - "groupId": "toolbox_N63_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00834": { - "groupId": "toolbox_N84_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00778": { - "groupId": "toolbox_N66_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00847": { - "groupId": "toolbox_N87_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00819": { - "groupId": "toolbox_N80_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00830": { - "groupId": "toolbox_N83_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00818": { - "groupId": "toolbox_N79_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00832": { - "groupId": "toolbox_N83_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00765": { - "groupId": "toolbox_N62_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00767": { - "groupId": "toolbox_N62_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00870": { - "groupId": "toolbox_N94_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00781": { - "groupId": "toolbox_N67_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00792": { - "groupId": "toolbox_N70_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00780": { - "groupId": "toolbox_N66_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00849": { - "groupId": "toolbox_N88_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00775": { - "groupId": "toolbox_N65_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00873": { - "groupId": "toolbox_N95_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00865": { - "groupId": "toolbox_N93_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00769": { - "groupId": "toolbox_N63_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00822": { - "groupId": "toolbox_N80_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00836": { - "groupId": "toolbox_N84_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00786": { - "groupId": "toolbox_N68_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00835": { - "groupId": "toolbox_N84_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00839": { - "groupId": "toolbox_N85_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00841": { - "groupId": "toolbox_N86_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00810": { - "groupId": "toolbox_N76_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00795": { - "groupId": "toolbox_N71_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00837": { - "groupId": "toolbox_N85_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00877": { - "groupId": "toolbox_N97_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00771": { - "groupId": "toolbox_N64_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00874": { - "groupId": "toolbox_N96_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00878": { - "groupId": "toolbox_N97_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00776": { - "groupId": "toolbox_N65_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00812": { - "groupId": "toolbox_N77_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00859": { - "groupId": "toolbox_N91_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00777": { - "groupId": "toolbox_N66_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00808": { - "groupId": "toolbox_N76_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00826": { - "groupId": "toolbox_N82_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00798": { - "groupId": "toolbox_N72_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00824": { - "groupId": "toolbox_N81_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00848": { - "groupId": "toolbox_N88_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00813": { - "groupId": "toolbox_N77_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00861": { - "groupId": "toolbox_N92_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00840": { - "groupId": "toolbox_N86_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00850": { - "groupId": "toolbox_N89_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00820": { - "groupId": "toolbox_N80_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00766": { - "groupId": "toolbox_N62_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00787": { - "groupId": "toolbox_N69_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00876": { - "groupId": "toolbox_N96_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00856": { - "groupId": "toolbox_N90_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00875": { - "groupId": "toolbox_N96_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00811": { - "groupId": "toolbox_N77_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00843": { - "groupId": "toolbox_N86_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00864": { - "groupId": "toolbox_N93_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00862": { - "groupId": "toolbox_N92_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00770": { - "groupId": "toolbox_N63_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00790": { - "groupId": "toolbox_N70_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00789": { - "groupId": "toolbox_N69_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00872": { - "groupId": "toolbox_N95_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00377": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00816": { - "groupId": "toolbox_N78_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00855": { - "groupId": "toolbox_N90_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00376": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00823": { - "groupId": "toolbox_N81_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00817": { - "groupId": "toolbox_N79_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00784": { - "groupId": "toolbox_N68_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00785": { - "groupId": "toolbox_N68_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00783": { - "groupId": "toolbox_N67_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00831": { - "groupId": "toolbox_N83_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00375": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00772": { - "groupId": "toolbox_N64_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00869": { - "groupId": "toolbox_N94_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00863": { - "groupId": "toolbox_N93_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00773": { - "groupId": "toolbox_N64_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00851": { - "groupId": "toolbox_N89_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00842": { - "groupId": "toolbox_N86_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00801": { - "groupId": "toolbox_N73_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00779": { - "groupId": "toolbox_N66_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00793": { - "groupId": "toolbox_N71_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00374": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00833": { - "groupId": "toolbox_N84_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00880": { - "groupId": "toolbox_N98_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00853": { - "groupId": "toolbox_N89_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00828": { - "groupId": "toolbox_N82_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00807": { - "groupId": "toolbox_N75_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00791": { - "groupId": "toolbox_N70_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00799": { - "groupId": "toolbox_N73_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00805": { - "groupId": "toolbox_N75_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00881": { - "groupId": "toolbox_N98_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00882": { - "groupId": "toolbox_N98_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00821": { - "groupId": "toolbox_N80_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00802": { - "groupId": "toolbox_N74_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00845": { - "groupId": "toolbox_N87_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00814": { - "groupId": "toolbox_N78_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00797": { - "groupId": "toolbox_N72_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00809": { - "groupId": "toolbox_N76_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00806": { - "groupId": "toolbox_N75_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00788": { - "groupId": "toolbox_N69_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00857": { - "groupId": "toolbox_N91_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00867": { - "groupId": "toolbox_N94_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00804": { - "groupId": "toolbox_N74_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00378": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00852": { - "groupId": "toolbox_N89_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00782": { - "groupId": "toolbox_N67_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00796": { - "groupId": "toolbox_N72_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00373": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00800": { - "groupId": "toolbox_N73_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00363": { - "groupId": "" - }, - "Lootable_00004": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00364": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00271": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00566": { - "groupId": "SupplyBoxFoodN4_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00576": { - "groupId": "SupplyBoxFoodN8_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00278": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00268": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00577": { - "groupId": "SupplyBoxFoodN9_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00273": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00579": { - "groupId": "SupplyBoxFoodN10_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00561": { - "groupId": "SupplyBoxFoodN1_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00288": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00569": { - "groupId": "SupplyBoxFoodN5_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00573": { - "groupId": "SupplyBoxFoodN7_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00567": { - "groupId": "SupplyBoxFoodN4_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00275": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00580": { - "groupId": "SupplyBoxFoodN10_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00560": { - "groupId": "SupplyBoxFoodN1_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00565": { - "groupId": "SupplyBoxFoodN3_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00564": { - "groupId": "SupplyBoxFoodN3_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00267": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00270": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00571": { - "groupId": "SupplyBoxFoodN6_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00574": { - "groupId": "SupplyBoxFoodN7_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00570": { - "groupId": "SupplyBoxFoodN5_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00269": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00286": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00281": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00283": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00284": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00581": { - "groupId": "SupplyBoxFoodN11_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00279": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00280": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00277": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00285": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00287": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00289": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00274": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00572": { - "groupId": "SupplyBoxFoodN6_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00282": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00582": { - "groupId": "SupplyBoxFoodN11_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00575": { - "groupId": "SupplyBoxFoodN8_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00562": { - "groupId": "SupplyBoxFoodN2_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00563": { - "groupId": "SupplyBoxFoodN2_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00272": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00568": { - "groupId": "SupplyBoxFoodN5_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00578": { - "groupId": "SupplyBoxFoodN9_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00276": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00372": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00759": { - "groupId": "Medbag_N60_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00756": { - "groupId": "Medbag_N59_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00760": { - "groupId": "Medbag_N60_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00753": { - "groupId": "Medbag_N58_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00754": { - "groupId": "Medbag_N58_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00757": { - "groupId": "Medbag_N59_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00758": { - "groupId": "Medbag_N60_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00755": { - "groupId": "Medbag_N59_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00371": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00751": { - "groupId": "Ammo_wood_N57_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00752": { - "groupId": "Ammo_wood_N57_3_rezerv" - }, - "n1": { - "groupId": "Ammo_wood_N57_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00352": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00358": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00357": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00360": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00355": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00361": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00356": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00362": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00353": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00351": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00354": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00359": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00337": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00328": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00339": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00329": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00334": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00338": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00327": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00330": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00325": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00326": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00336": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00332": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00331": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00335": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00333": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00924": { - "groupId": "weaponbox_N113_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00899": { - "groupId": "weaponbox_N105_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00903": { - "groupId": "weaponbox_N106_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00974": { - "groupId": "weaponbox_N129_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00883": { - "groupId": "weaponbox_N99_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00902": { - "groupId": "weaponbox_N106_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00383": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00964": { - "groupId": "weaponbox_N126_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00895": { - "groupId": "weaponbox_N103_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00945": { - "groupId": "weaponbox_N120_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00908": { - "groupId": "weaponbox_N108_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00918": { - "groupId": "weaponbox_N111_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00973": { - "groupId": "weaponbox_N129_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00932": { - "groupId": "weaponbox_N115_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00957": { - "groupId": "weaponbox_N124_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00900": { - "groupId": "weaponbox_N105_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00906": { - "groupId": "weaponbox_N107_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00885": { - "groupId": "weaponbox_N100_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00380": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00891": { - "groupId": "weaponbox_N102_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00888": { - "groupId": "weaponbox_N101_3_rezerv" - }, - "Lootable_00003": { - "groupId": "weaponbox_N130_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00913": { - "groupId": "weaponbox_N109_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00381": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00886": { - "groupId": "weaponbox_N100_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00934": { - "groupId": "weaponbox_N116_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00968": { - "groupId": "weaponbox_N127_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00910": { - "groupId": "weaponbox_N108_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00967": { - "groupId": "weaponbox_N127_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00961": { - "groupId": "weaponbox_N125_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00887": { - "groupId": "weaponbox_N101_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00907": { - "groupId": "weaponbox_N107_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00912": { - "groupId": "weaponbox_N109_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00975": { - "groupId": "weaponbox_N130_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00950": { - "groupId": "weaponbox_N121_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00892": { - "groupId": "weaponbox_N102_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00935": { - "groupId": "weaponbox_N116_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00925": { - "groupId": "weaponbox_N113_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00956": { - "groupId": "weaponbox_N123_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00970": { - "groupId": "weaponbox_N128_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00894": { - "groupId": "weaponbox_N103_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00962": { - "groupId": "weaponbox_N125_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00965": { - "groupId": "weaponbox_N126_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00379": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00384": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00948": { - "groupId": "weaponbox_N121_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00940": { - "groupId": "weaponbox_N118_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00917": { - "groupId": "weaponbox_N111_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00959": { - "groupId": "weaponbox_N124_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00911": { - "groupId": "weaponbox_N109_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00941": { - "groupId": "weaponbox_N118_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00909": { - "groupId": "weaponbox_N108_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00382": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00914": { - "groupId": "weaponbox_N110_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00972": { - "groupId": "weaponbox_N129_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00943": { - "groupId": "weaponbox_N119_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00949": { - "groupId": "weaponbox_N121_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00942": { - "groupId": "weaponbox_N119_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00931": { - "groupId": "weaponbox_N115_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00939": { - "groupId": "weaponbox_N118_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00916": { - "groupId": "weaponbox_N110_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00958": { - "groupId": "weaponbox_N124_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00952": { - "groupId": "weaponbox_N122_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00919": { - "groupId": "weaponbox_N111_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00904": { - "groupId": "weaponbox_N106_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00926": { - "groupId": "weaponbox_N114_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00915": { - "groupId": "weaponbox_N110_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00385": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00896": { - "groupId": "weaponbox_N104_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00929": { - "groupId": "weaponbox_N115_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00954": { - "groupId": "weaponbox_N123_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00933": { - "groupId": "weaponbox_N116_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00937": { - "groupId": "weaponbox_N117_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00976": { - "groupId": "weaponbox_N130_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00936": { - "groupId": "weaponbox_N117_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00951": { - "groupId": "weaponbox_N122_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00893": { - "groupId": "weaponbox_N103_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00955": { - "groupId": "weaponbox_N123_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00938": { - "groupId": "weaponbox_N117_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00969": { - "groupId": "weaponbox_N128_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00971": { - "groupId": "weaponbox_N128_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00966": { - "groupId": "weaponbox_N127_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00905": { - "groupId": "weaponbox_N107_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00922": { - "groupId": "weaponbox_N112_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00889": { - "groupId": "weaponbox_N101_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00890": { - "groupId": "weaponbox_N102_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00923": { - "groupId": "weaponbox_N113_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00953": { - "groupId": "weaponbox_N122_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00928": { - "groupId": "weaponbox_N114_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00960": { - "groupId": "weaponbox_N125_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00963": { - "groupId": "weaponbox_N126_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00921": { - "groupId": "weaponbox_N112_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00930": { - "groupId": "weaponbox_N115_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00947": { - "groupId": "weaponbox_N120_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00944": { - "groupId": "weaponbox_N120_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00897": { - "groupId": "weaponbox_N104_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00901": { - "groupId": "weaponbox_N105_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00927": { - "groupId": "weaponbox_N114_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00884": { - "groupId": "weaponbox_N99_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00946": { - "groupId": "weaponbox_N120_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00898": { - "groupId": "weaponbox_N104_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00920": { - "groupId": "weaponbox_N112_3_rezerv" - }, - "container_Test_for_export_00001": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00710": { - "groupId": "Ammo_grenade_N45_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00744": { - "groupId": "Ammo_grenade_N55_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00743": { - "groupId": "Ammo_grenade_N55_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00715": { - "groupId": "Ammo_grenade_N47_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00695": { - "groupId": "Ammo_grenade_N40_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00703": { - "groupId": "Ammo_grenade_N42_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00732": { - "groupId": "Ammo_grenade_N52_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00702": { - "groupId": "Ammo_grenade_N42_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00734": { - "groupId": "Ammo_grenade_N52_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00720": { - "groupId": "Ammo_grenade_N48_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00701": { - "groupId": "Ammo_grenade_N42_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00369": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00726": { - "groupId": "Ammo_grenade_N51_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00708": { - "groupId": "Ammo_grenade_N44_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00740": { - "groupId": "Ammo_grenade_N54_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00707": { - "groupId": "Ammo_grenade_N44_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00368": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00745": { - "groupId": "Ammo_grenade_N55_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00724": { - "groupId": "Ammo_grenade_N50_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00738": { - "groupId": "Ammo_grenade_N53_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00704": { - "groupId": "Ammo_grenade_N43_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00367": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00712": { - "groupId": "Ammo_grenade_N46_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00716": { - "groupId": "Ammo_grenade_N47_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00731": { - "groupId": "Ammo_grenade_N52_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00739": { - "groupId": "Ammo_grenade_N54_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00737": { - "groupId": "Ammo_grenade_N53_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00709": { - "groupId": "Ammo_grenade_N45_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00741": { - "groupId": "Ammo_grenade_N54_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00750": { - "groupId": "Ammo_grenade_N56_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00729": { - "groupId": "Ammo_grenade_N51_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00705": { - "groupId": "Ammo_grenade_N43_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00698": { - "groupId": "Ammo_grenade_N41_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00730": { - "groupId": "Ammo_grenade_N52_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00697": { - "groupId": "Ammo_grenade_N40_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00370": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00365": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00699": { - "groupId": "Ammo_grenade_N41_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00721": { - "groupId": "Ammo_grenade_N49_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00736": { - "groupId": "Ammo_grenade_N53_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00733": { - "groupId": "Ammo_grenade_N52_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00718": { - "groupId": "Ammo_grenade_N48_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00717": { - "groupId": "Ammo_grenade_N47_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00700": { - "groupId": "Ammo_grenade_N41_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00747": { - "groupId": "Ammo_grenade_N56_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00706": { - "groupId": "Ammo_grenade_N43_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00742": { - "groupId": "Ammo_grenade_N54_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00727": { - "groupId": "Ammo_grenade_N51_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00749": { - "groupId": "Ammo_grenade_N56_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00366": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00696": { - "groupId": "Ammo_grenade_N40_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00711": { - "groupId": "Ammo_grenade_N45_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00714": { - "groupId": "Ammo_grenade_N46_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00719": { - "groupId": "Ammo_grenade_N48_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00728": { - "groupId": "Ammo_grenade_N51_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00713": { - "groupId": "Ammo_grenade_N46_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00725": { - "groupId": "Ammo_grenade_N50_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00722": { - "groupId": "Ammo_grenade_N49_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00735": { - "groupId": "Ammo_grenade_N53_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00746": { - "groupId": "Ammo_grenade_N55_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00748": { - "groupId": "Ammo_grenade_N56_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00723": { - "groupId": "Ammo_grenade_N50_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00342": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00343": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00341": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00601": { - "groupId": "Suitcase_64_open_N7_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00585": { - "groupId": "Suitcase_64_open_N2_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00607": { - "groupId": "Suitcase_64_open_N8_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00613": { - "groupId": "Suitcase_64_open_N11_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00616": { - "groupId": "Suitcase_64_open_N12_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00627": { - "groupId": "Suitcase_64_open_N16_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00617": { - "groupId": "Suitcase_64_open_N12_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00597": { - "groupId": "Suitcase_64_open_N6_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00605": { - "groupId": "Suitcase_64_open_N8_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00589": { - "groupId": "Suitcase_64_open_N3_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00626": { - "groupId": "Suitcase_64_open_N15_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00619": { - "groupId": "Suitcase_64_open_N13_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00593": { - "groupId": "Suitcase_64_open_N4_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00598": { - "groupId": "Suitcase_64_open_N6_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00587": { - "groupId": "Suitcase_64_open_N2_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00340": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00611": { - "groupId": "Suitcase_64_open_N10_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00584": { - "groupId": "Suitcase_64_open_N1_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00595": { - "groupId": "Suitcase_64_open_N5_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00614": { - "groupId": "Suitcase_64_open_N11_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00588": { - "groupId": "Suitcase_64_open_N3_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00609": { - "groupId": "Suitcase_64_open_N9_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00591": { - "groupId": "Suitcase_64_open_N4_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00610": { - "groupId": "Suitcase_64_open_N9_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00608": { - "groupId": "Suitcase_64_open_N9_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00603": { - "groupId": "Suitcase_64_open_N8_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00600": { - "groupId": "Suitcase_64_open_N7_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00586": { - "groupId": "Suitcase_64_open_N2_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00596": { - "groupId": "Suitcase_64_open_N5_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00590": { - "groupId": "Suitcase_64_open_N3_3_rezerv" - }, - "container_Test_for_export_00002": { - "groupId": "Suitcase_64_open_N16_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00623": { - "groupId": "Suitcase_64_open_N14_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00624": { - "groupId": "Suitcase_64_open_N14_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00604": { - "groupId": "Suitcase_64_open_N8_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00615": { - "groupId": "Suitcase_64_open_N11_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00583": { - "groupId": "Suitcase_64_open_N1_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00612": { - "groupId": "Suitcase_64_open_N10_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00618": { - "groupId": "Suitcase_64_open_N12_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00606": { - "groupId": "Suitcase_64_open_N8_5_rezerv" - }, - "container_Reserve_Base_DesignStuff_00620": { - "groupId": "Suitcase_64_open_N13_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00622": { - "groupId": "Suitcase_64_open_N14_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00621": { - "groupId": "Suitcase_64_open_N13_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00594": { - "groupId": "Suitcase_64_open_N5_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00625": { - "groupId": "Suitcase_64_open_N15_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00628": { - "groupId": "Suitcase_64_open_N16_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00599": { - "groupId": "Suitcase_64_open_N6_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00602": { - "groupId": "Suitcase_64_open_N7_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00592": { - "groupId": "Suitcase_64_open_N4_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00671": { - "groupId": "Suitcase_110x45_open_N32_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00633": { - "groupId": "Suitcase_110x45_open_N18_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00654": { - "groupId": "Suitcase_110x45_open_N26_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00670": { - "groupId": "Suitcase_110x45_open_N32_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00350": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00630": { - "groupId": "Suitcase_110x45_open_N17_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00665": { - "groupId": "Suitcase_110x45_open_N30_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00663": { - "groupId": "Suitcase_110x45_open_N29_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00655": { - "groupId": "Suitcase_110x45_open_N26_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00678": { - "groupId": "Suitcase_110x45_open_N35_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00672": { - "groupId": "Suitcase_110x45_open_N33_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00676": { - "groupId": "Suitcase_110x45_open_N34_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00685": { - "groupId": "Suitcase_110x45_open_N37_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00652": { - "groupId": "Suitcase_110x45_open_N25_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00658": { - "groupId": "Suitcase_110x45_open_N27_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00684": { - "groupId": "Suitcase_110x45_open_N36_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00650": { - "groupId": "Suitcase_110x45_open_N24_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00692": { - "groupId": "Suitcase_110x45_open_N39_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00631": { - "groupId": "Suitcase_110x45_open_N17_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00660": { - "groupId": "Suitcase_110x45_open_N28_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00345": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00686": { - "groupId": "Suitcase_110x45_open_N37_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00651": { - "groupId": "Suitcase_110x45_open_N24_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00348": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00641": { - "groupId": "Suitcase_110x45_open_N21_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00635": { - "groupId": "Suitcase_110x45_open_N19_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00688": { - "groupId": "Suitcase_110x45_open_N37_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00694": { - "groupId": "Suitcase_110x45_open_N39_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00653": { - "groupId": "Suitcase_110x45_open_N25_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00648": { - "groupId": "Suitcase_110x45_open_N23_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00634": { - "groupId": "Suitcase_110x45_open_N18_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00667": { - "groupId": "Suitcase_110x45_open_N31_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00346": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00682": { - "groupId": "Suitcase_110x45_open_N36_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00675": { - "groupId": "Suitcase_110x45_open_N34_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00657": { - "groupId": "Suitcase_110x45_open_N27_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00693": { - "groupId": "Suitcase_110x45_open_N39_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00687": { - "groupId": "Suitcase_110x45_open_N37_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00349": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00669": { - "groupId": "Suitcase_110x45_open_N32_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00674": { - "groupId": "Suitcase_110x45_open_N33_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00632": { - "groupId": "Suitcase_110x45_open_N17_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00680": { - "groupId": "Suitcase_110x45_open_N35_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00691": { - "groupId": "Suitcase_110x45_open_N38_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00683": { - "groupId": "Suitcase_110x45_open_N36_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00640": { - "groupId": "Suitcase_110x45_open_N21_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00649": { - "groupId": "Suitcase_110x45_open_N24_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00690": { - "groupId": "Suitcase_110x45_open_N38_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00677": { - "groupId": "Suitcase_110x45_open_N34_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00664": { - "groupId": "Suitcase_110x45_open_N30_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00644": { - "groupId": "Suitcase_110x45_open_N22_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00636": { - "groupId": "Suitcase_110x45_open_N19_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00629": { - "groupId": "Suitcase_110x45_open_N17_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00681": { - "groupId": "Suitcase_110x45_open_N36_4_rezerv" - }, - "container_Reserve_Base_DesignStuff_00639": { - "groupId": "Suitcase_110x45_open_N20_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00647": { - "groupId": "Suitcase_110x45_open_N23_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00659": { - "groupId": "Suitcase_110x45_open_N27_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00344": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00689": { - "groupId": "Suitcase_110x45_open_N38_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00643": { - "groupId": "Suitcase_110x45_open_N22_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00642": { - "groupId": "Suitcase_110x45_open_N21_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00645": { - "groupId": "Suitcase_110x45_open_N22_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00646": { - "groupId": "Suitcase_110x45_open_N23_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00661": { - "groupId": "Suitcase_110x45_open_N28_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00662": { - "groupId": "Suitcase_110x45_open_N29_2_rezerv" - }, - "container_Reserve_Base_DesignStuff_00637": { - "groupId": "Suitcase_110x45_open_N20_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00679": { - "groupId": "Suitcase_110x45_open_N35_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00347": { - "groupId": "" - }, - "container_Reserve_Base_DesignStuff_00656": { - "groupId": "Suitcase_110x45_open_N26_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00668": { - "groupId": "Suitcase_110x45_open_N31_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00638": { - "groupId": "Suitcase_110x45_open_N20_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00673": { - "groupId": "Suitcase_110x45_open_N33_3_rezerv" - }, - "container_Reserve_Base_DesignStuff_00666": { - "groupId": "Suitcase_110x45_open_N31_3_rezerv" - } - } -} \ No newline at end of file diff --git a/project/assets/database/locations/sandbox/allExtracts.json b/project/assets/database/locations/sandbox/allExtracts.json deleted file mode 100644 index a797a20e..00000000 --- a/project/assets/database/locations/sandbox/allExtracts.json +++ /dev/null @@ -1,163 +0,0 @@ -[ - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 5000, - "CountPve": 0, - "EntryPoints": "west,east", - "EventAvailable": false, - "ExfiltrationTime": 60.0, - "ExfiltrationTimePVE": 60.0, - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Sandbox_VExit", - "PassageRequirement": "TransferItem", - "PlayersCount": 4, - "PlayersCountPVE": 4, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Item", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "east", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Unity_free_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "west,east", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "SharedTimer", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Scav_coop_exit", - "PassageRequirement": "ScavCooperation", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Cooperate", - "Side": "Coop" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "west", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Nakatani_stairs_free_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "west,east", - "EventAvailable": false, - "ExfiltrationTime": 6.0, - "ExfiltrationTimePVE": 6.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Sniper_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "east", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Unity_free_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "west", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Nakatani_stairs_free_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - } -] \ No newline at end of file diff --git a/project/assets/database/locations/sandbox/base.json b/project/assets/database/locations/sandbox/base.json deleted file mode 100644 index 0b3cc42d..00000000 --- a/project/assets/database/locations/sandbox/base.json +++ /dev/null @@ -1,6203 +0,0 @@ -{ - "AccessKeys": [], - "AccessKeysPvE": [], - "AirdropParameters": [ - { - "AirdropPointDeactivateDistance": 100, - "MinPlayersCountToSpawnAirdrop": 6, - "PlaneAirdropChance": 0.125, - "PlaneAirdropCooldownMax": 800, - "PlaneAirdropCooldownMin": 700, - "PlaneAirdropEnd": 2700, - "PlaneAirdropMax": 2, - "PlaneAirdropStartMax": 900, - "PlaneAirdropStartMin": 300, - "UnsuccessfulTryPenalty": 400 - } - ], - "Area": 0, - "AveragePlayTime": 35, - "AveragePlayerLevel": 20, - "Banners": [], - "BossLocationSpawn": [ - { - "BossChance": 50, - "BossDifficult": "easy", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", - "BossEscortDifficult": "easy", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "easy", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", - "BossEscortDifficult": "easy", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "easy", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", - "BossEscortDifficult": "easy", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "easy", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", - "BossEscortDifficult": "easy", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - } - ], - "BotAssault": 100, - "BotEasy": 100, - "BotHard": 0, - "BotImpossible": 0, - "BotLocationModifier": { - "AccuracySpeed": 1, - "AdditionalHostilitySettings": [ - { - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 35, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcBEAR", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 50, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - }, - { - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 50, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcUSEC", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 35, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - } - ], - "DistToActivate": 260, - "DistToActivatePvE": 260, - "DistToSleep": 300, - "DistToSleepPvE": 300, - "GainSight": 1, - "MarksmanAccuratyCoef": 1, - "MaxExfiltrationTime": 1500, - "MinExfiltrationTime": 1200, - "Scattering": 1, - "VisibleDistance": 1 - }, - "BotMarksman": 0, - "BotMax": 12, - "BotMaxPlayer": 10, - "BotMaxPvE": 20, - "BotMaxTimePlayer": 1000, - "BotNormal": 0, - "BotSpawnCountStep": 3, - "BotSpawnPeriodCheck": 14, - "BotSpawnTimeOffMax": 25, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOnMax": 380, - "BotSpawnTimeOnMin": 290, - "BotStart": 120, - "BotStartPlayer": 126, - "BotStop": 1800, - "Description": "The downtown Tarkov with banks, malls, hotels and all the other things a striving modern city could have needed.", - "DisabledForScav": false, - "DisabledScavExits": "", - "EnableCoop": true, - "Enabled": true, - "EscapeTimeLimit": 35, - "EscapeTimeLimitCoop": 30, - "EscapeTimeLimitPVE": 35, - "Events": { - "Halloween2024": { - "CrowdAttackBlockRadius": 100, - "CrowdAttackSpawnParams": [ - { - "Difficulty": "easy", - "Role": "infectedAssault", - "Weight": 20 - }, - { - "Difficulty": "normal", - "Role": "infectedAssault", - "Weight": 80 - }, - { - "Difficulty": "hard", - "Role": "infectedAssault", - "Weight": 40 - }, - { - "Difficulty": "easy", - "Role": "infectedPmc", - "Weight": 5 - }, - { - "Difficulty": "normal", - "Role": "infectedPmc", - "Weight": 35 - }, - { - "Difficulty": "hard", - "Role": "infectedPmc", - "Weight": 20 - }, - { - "Difficulty": "easy", - "Role": "infectedCivil", - "Weight": 15 - }, - { - "Difficulty": "normal", - "Role": "infectedCivil", - "Weight": 60 - }, - { - "Difficulty": "hard", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "easy", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedLaborant", - "Weight": 0 - } - ], - "CrowdCooldownPerPlayerSec": 300, - "CrowdsLimit": 2, - "InfectedLookCoeff": 2, - "InfectionPercentage": 0, - "MaxCrowdAttackSpawnLimit": 18, - "MinInfectionPercentage": 0, - "MinSpawnDistToPlayer": 50, - "TargetPointSearchRadiusLimit": 150, - "ZombieCallDeltaRadius": 20, - "ZombieCallPeriodSec": 1, - "ZombieCallRadiusLimit": 100, - "ZombieMultiplier": 5 - } - }, - "ExitZones": "5c82534488a45046451a2386", - "ForceOnlineRaidInPVE": false, - "GenerateLocalLootCache": true, - "GlobalContainerChanceModifier": 1, - "GlobalLootChanceModifier": 0.34, - "GlobalLootChanceModifierPvE": 0.72, - "IconX": 760, - "IconY": 735, - "Id": "Sandbox", - "Insurance": true, - "IsSecret": false, - "Locked": false, - "Loot": [], - "MatchMakerMinPlayersByWaitTime": [ - { - "minPlayers": 7, - "time": 60 - }, - { - "minPlayers": 6, - "time": 70 - }, - { - "minPlayers": 5, - "time": 120 - }, - { - "minPlayers": 4, - "time": 180 - }, - { - "minPlayers": 3, - "time": 250 - }, - { - "minPlayers": 2, - "time": 330 - }, - { - "minPlayers": 1, - "time": 420 - } - ], - "MaxBotPerZone": 5, - "MaxCoopGroup": 20, - "MaxDistToFreePoint": 220, - "MaxPlayers": 10, - "MinDistToExitPoint": 10, - "MinDistToFreePoint": 60, - "MinMaxBots": [], - "MinPlayerLvlAccessKeys": 0, - "MinPlayers": 9, - "Name": "Sandbox", - "NewSpawn": true, - "NewSpawnForPlayers": true, - "NonWaveGroupScenario": { - "Chance": 50, - "Enabled": true, - "MaxToBeGroup": 3, - "MinToBeGroup": 2 - }, - "OcculsionCullingEnabled": false, - "OfflineNewSpawn": true, - "OfflineOldSpawn": true, - "OldSpawn": true, - "OpenZones": "", - "PlayersRequestCount": -1, - "PmcMaxPlayersInGroup": 5, - "Preview": { - "path": "", - "rcid": "" - }, - "RequiredPlayerLevelMax": 20, - "RequiredPlayerLevelMin": 0, - "Rules": "Normal", - "SafeLocation": false, - "ScavMaxPlayersInGroup": 4, - "Scene": { - "path": "maps/sandbox_preset.bundle", - "rcid": "sandbox.scenespreset.asset" - }, - "SpawnPointParams": [ - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "01a17b0b-3f3a-4f05-9d37-5193f5a5361a", - "Infiltration": "", - "Position": { - "x": 182.9868, - "y": 16.21865, - "z": 127.555809 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0344832c-a6f2-4c58-8d89-85e9d451a7ed", - "Infiltration": "west", - "Position": { - "x": 72.81, - "y": 14.18, - "z": 5.44599962 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0524be03-bcd4-4e28-98d4-f477dd0e550d", - "Infiltration": "east", - "Position": { - "x": 65.03, - "y": 14.722, - "z": 161.741 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "079220f6-66d7-471f-8236-1acc4e441b53", - "Infiltration": "", - "Position": { - "x": -10.5931931, - "y": 23.982048, - "z": 22.86581 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0b110691-b8a9-4020-9ea1-910386dde586", - "Infiltration": "east", - "Position": { - "x": 127.158, - "y": 23.21, - "z": 187.909 - }, - "Rotation": 279.416534, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0dadcf0c-b3b8-4837-a16e-12ef201c21e1", - "Infiltration": "east", - "Position": { - "x": 67.59, - "y": 14.18, - "z": 104.54 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0eebe151-c53b-417e-a349-18c070ce5dac", - "Infiltration": "west", - "Position": { - "x": 137.37, - "y": 22.74, - "z": -70.18 - }, - "Rotation": 298.9875, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "10a75815-d786-43e2-9639-6b94071433f8", - "Infiltration": "east", - "Position": { - "x": 83.44798, - "y": 22.8000011, - "z": 11.6839752 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "119b220b-ec7f-41a8-bdb2-eeb831e2c17b", - "Infiltration": "west", - "Position": { - "x": 74.04802, - "y": 22.987999, - "z": 269.953979 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "14e76203-f6d3-49d3-bb5e-300ff6bd3773", - "Infiltration": "west", - "Position": { - "x": 121.832, - "y": 22.796, - "z": -1.133 - }, - "Rotation": 297.1408, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "16b9cd7d-ebea-41eb-8c9f-fe01aa2c9245", - "Infiltration": "east", - "Position": { - "x": 111.243, - "y": 23.193, - "z": 174.479 - }, - "Rotation": 25.0808964, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "181f7000-df70-4bc7-bff3-a709291c907f", - "Infiltration": "east", - "Position": { - "x": 81.838, - "y": 22.8000011, - "z": 11.7840118 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1a88bc11-50fc-4df3-bb6c-750136afbb86", - "Infiltration": "", - "Position": { - "x": 71.7568054, - "y": 14.1386509, - "z": 0.6758108 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1ae5dc66-b54c-4584-bc24-174f5b3194ec", - "Infiltration": "west", - "Position": { - "x": 77.06801, - "y": 22.987999, - "z": 269.114 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1b65286c-52e8-48ef-a369-e89bfd0ab95e", - "Infiltration": "east", - "Position": { - "x": 49.8150177, - "y": 22.777998, - "z": -78.392 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1c2fe835-f486-4f7e-847d-9ff1dfadc5c5", - "Infiltration": "east", - "Position": { - "x": 180.9, - "y": 16.27, - "z": 114.89 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1d60dfbb-d470-4557-8309-deb68d3cd7a4", - "Infiltration": "west", - "Position": { - "x": 184.961, - "y": 17.209, - "z": -8.589 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "222800ad-50c8-4c75-b94b-ff1ec3d807d0", - "Infiltration": "west", - "Position": { - "x": 73.647995, - "y": 22.987999, - "z": 262.904 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2251a0dd-f096-483c-88c6-d8abe1f0a8d8", - "Infiltration": "east", - "Position": { - "x": 117.106, - "y": 28.963, - "z": 150.689 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "22c535e6-6d49-46bd-9009-e688aace63d1", - "Infiltration": "east", - "Position": { - "x": 38.43, - "y": 23.44, - "z": 149.07 - }, - "Rotation": 150.727722, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2790d68f-c087-45d2-8b63-660e26858b34", - "Infiltration": "east", - "Position": { - "x": 143.1, - "y": 23.3, - "z": 248.83 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "287bf35f-5cdc-44dc-97b6-c035d5054bfa", - "Infiltration": "west", - "Position": { - "x": 82.34401, - "y": 22.8000011, - "z": 16.0929718 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2b8f1ba9-543b-45a7-84a7-23a0094ff8a4", - "Infiltration": "", - "Position": { - "x": -10.7931976, - "y": 23.982048, - "z": 16.7358112 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2c2faaf6-49f5-4286-9e68-449f6eff4384", - "Infiltration": "", - "Position": { - "x": 109.116806, - "y": 22.70865, - "z": 234.205811 - }, - "Rotation": 283.99, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2e02fd39-ee4a-4c26-bb44-12324b433a02", - "Infiltration": "east", - "Position": { - "x": 49.6950226, - "y": 22.778, - "z": -81.59199 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "31fca074-b125-48d7-9beb-4cc6f67c82d2", - "Infiltration": "east", - "Position": { - "x": 110.661, - "y": 23.193, - "z": 171.344 - }, - "Rotation": 37.9340668, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "36a3716c-e3f2-43c7-8b98-ea68c59f8238", - "Infiltration": "west", - "Position": { - "x": -8.020001, - "y": 23.86, - "z": -4.959993 - }, - "Rotation": 29.2678757, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "3b54601a-2e4b-4991-988e-962f1ee45668", - "Infiltration": "west", - "Position": { - "x": 77.81801, - "y": 22.8000011, - "z": 13.173996 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "3b8ab212-bd3f-41d2-bdc1-0f7d472b14f9", - "Infiltration": "", - "Position": { - "x": 172.2468, - "y": 16.9886513, - "z": 9.425811 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "3c5c66f2-5ce2-443f-b962-8938f67bf2b4", - "Infiltration": "west", - "Position": { - "x": 1.43, - "y": 23.89, - "z": -60.42 - }, - "Rotation": 15.3505669, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "3ceaca65-e5df-4ad2-8fc9-fe24f1c71b24", - "Infiltration": "", - "Position": { - "x": 57.717804, - "y": 23.4366512, - "z": 226.737823 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "3d869992-11e2-4ebf-9d24-f160b612ed17", - "Infiltration": "east", - "Position": { - "x": 112.67, - "y": 23.193, - "z": 175.8 - }, - "Rotation": 25.0808964, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "3fd9f3f8-a582-4f1a-938d-133cd47bed8c", - "Infiltration": "", - "Position": { - "x": 13.4328041, - "y": 23.48965, - "z": 157.559814 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "407eb4b9-5b70-4f84-bae5-f59e776d1c02", - "Infiltration": "", - "Position": { - "x": 73.69881, - "y": 14.1306515, - "z": 117.034813 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "412cc11b-b2ec-4d7b-bfbe-9691162949b7", - "Infiltration": "east", - "Position": { - "x": 67.764, - "y": 13.981, - "z": 163.128 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "419a0f20-e32e-4f17-a526-675314485814", - "Infiltration": "west", - "Position": { - "x": -0.66, - "y": 23.89, - "z": -60.43 - }, - "Rotation": 15.3505669, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4274c09b-9544-45e0-aa8a-011b6e929b70", - "Infiltration": "west", - "Position": { - "x": 73.06999, - "y": 14.18, - "z": 2.27599764 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "442298dc-403c-4550-9c2f-60398a638c07", - "Infiltration": "west", - "Position": { - "x": 73.09, - "y": 14.147, - "z": -56.52 - }, - "Rotation": 94.1142349, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "45bf1ce6-cab7-4b6b-a420-aefc135a942a", - "Infiltration": "east", - "Position": { - "x": 64.94, - "y": 14.14, - "z": 103.31 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "469bf936-cee9-4b9c-9fa9-54ccdc5467f2", - "Infiltration": "west", - "Position": { - "x": 139.255, - "y": 14.088, - "z": 65.609 - }, - "Rotation": 281.497131, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "46c3886e-8d68-4614-8a0b-48721ed1ee77", - "Infiltration": "", - "Position": { - "x": 74.6868057, - "y": 13.9586515, - "z": 160.9158 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "46cb5fbc-3d56-45a1-a6ab-18b22b51cf15", - "Infiltration": "east", - "Position": { - "x": 36.95, - "y": 23.47, - "z": 146.98 - }, - "Rotation": 142.971115, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "47849095-43c2-474c-a44d-899e1dc643e4", - "Infiltration": "", - "Position": { - "x": 32.7768021, - "y": 22.6686516, - "z": 335.6558 - }, - "Rotation": 158.465, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "48054a87-c386-461e-ad3b-f23291349be1", - "Infiltration": "", - "Position": { - "x": 73.880806, - "y": 14.1386509, - "z": 37.23281 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4a3e3ae1-e6fb-442f-99c6-f74b25b06a28", - "Infiltration": "east", - "Position": { - "x": 127.454, - "y": 23.204, - "z": 196.106 - }, - "Rotation": 279.416534, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4ad4b25c-70f0-47a0-84fd-f8dc685cf399", - "Infiltration": "west", - "Position": { - "x": -6.32000065, - "y": 23.86, - "z": -2.03999472 - }, - "Rotation": 29.2678757, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4bad832e-0532-463a-8072-c65b67c46519", - "Infiltration": "", - "Position": { - "x": 137.5668, - "y": 14.1126509, - "z": 61.81581 - }, - "Rotation": 249.33786, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4dd86c92-ee79-4b7d-9931-e658963c8dc0", - "Infiltration": "", - "Position": { - "x": 163.6168, - "y": 22.768652, - "z": -88.24419 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4e5dd2d4-cbee-4f97-8f88-18b9a7897e72", - "Infiltration": "east", - "Position": { - "x": 127.266, - "y": 23.199, - "z": 186.033 - }, - "Rotation": 279.416534, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4e876370-2396-4517-81c1-c535811d18e0", - "Infiltration": "east", - "Position": { - "x": 54.8150177, - "y": 22.778, - "z": -81.1619949 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4f865c11-d533-4fce-9833-fe41a6cb52af", - "Infiltration": "east", - "Position": { - "x": 83.088, - "y": 22.828, - "z": 17.4640045 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4fb0d413-cf19-4580-8217-b2d6ca431e91", - "Infiltration": "west", - "Position": { - "x": 83.27998, - "y": 22.8000011, - "z": 18.81697 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5051d4e9-291a-4384-9557-e10d149f3282", - "Infiltration": "west", - "Position": { - "x": 44.67, - "y": 23.276, - "z": -102.55 - }, - "Rotation": 323.255859, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "50d18fbd-cd19-4d33-afa7-aa1f97b1f303", - "Infiltration": "", - "Position": { - "x": 17.0988045, - "y": 24.20565, - "z": 73.366806 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "52521917-58bb-412f-b509-ed69191bf6a3", - "Infiltration": "east", - "Position": { - "x": 113.965996, - "y": 23.448, - "z": 269.982 - }, - "Rotation": 197.8527, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "551f5ea8-4bea-474d-a3d1-0af1e507aa73", - "Infiltration": "west", - "Position": { - "x": 75.1199951, - "y": 14.18, - "z": 6.036 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "564c09fb-f464-4c30-b61b-4cc1943808be", - "Infiltration": "east", - "Position": { - "x": 102.15, - "y": 28.1424046, - "z": 311.83 - }, - "Rotation": 129.322372, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5a4e21b9-8234-45a5-b24a-1cd71ffc9d4a", - "Infiltration": "east", - "Position": { - "x": 117.61, - "y": 28.963, - "z": 146.43 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5caf5e1b-0113-41fc-9867-007e37ffe906", - "Infiltration": "west", - "Position": { - "x": 77.647995, - "y": 22.8000011, - "z": 11.443985 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5cb1309d-05b9-4043-ba3a-1ef53d52c012", - "Infiltration": "east", - "Position": { - "x": 40.19, - "y": 23.45, - "z": 148.61 - }, - "Rotation": 171.041977, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5d711f09-edc9-4ec1-94f8-2e1765929dbd", - "Infiltration": "west", - "Position": { - "x": 73.815, - "y": 14.147, - "z": -54.394 - }, - "Rotation": 94.1142349, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5e1f6ac9-eac2-455e-a9ee-43b293f2ae39", - "Infiltration": "", - "Position": { - "x": 57.486805, - "y": 14.0686512, - "z": -33.82419 - }, - "Rotation": 57.4887657, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5fa59046-4e17-408e-8531-14766ae4a7c4", - "Infiltration": "east", - "Position": { - "x": 117.49, - "y": 28.963, - "z": 148.6 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "612fd960-fdd6-422b-9b5b-8161d4e5ec12", - "Infiltration": "west", - "Position": { - "x": 72.331, - "y": 14.147, - "z": -51.719 - }, - "Rotation": 94.1142349, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "61aba24c-79d9-445f-8a1c-f887b36a8417", - "Infiltration": "west", - "Position": { - "x": 70.188, - "y": 22.818, - "z": 269.214 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "61bc3b0f-bbb7-41a6-a3cb-fc647cb4d57d", - "Infiltration": "west", - "Position": { - "x": 137.174, - "y": 14.088, - "z": 67.36 - }, - "Rotation": 281.497131, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "62f5b14d-cb51-4529-b572-f5a8f5815bb5", - "Infiltration": "east", - "Position": { - "x": 85.92601, - "y": 22.828001, - "z": 18.5319977 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "64bab044-d9e2-41fb-8b02-435103f17bdc", - "Infiltration": "", - "Position": { - "x": 112.2068, - "y": 22.688652, - "z": 220.925812 - }, - "Rotation": 283.99, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "65f10e3a-3f0c-415a-82c9-65c494071117", - "Infiltration": "east", - "Position": { - "x": 131.006, - "y": 23.45, - "z": 268.826 - }, - "Rotation": 235.117432, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "677581fc-5c9f-4e13-913d-e32798dfd61c", - "Infiltration": "west", - "Position": { - "x": 73.48802, - "y": 22.987999, - "z": 263.994019 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6a18e621-14cc-4de5-83e9-4dbb5d57db3d", - "Infiltration": "east", - "Position": { - "x": 180.8, - "y": 16.21, - "z": 117.5 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6a4b6afe-e215-4d9b-8d1e-4c2f7187baef", - "Infiltration": "west", - "Position": { - "x": 46.38, - "y": 23.276, - "z": -101.48 - }, - "Rotation": 323.255859, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6acdf3c0-2c89-4824-97b9-7d5d10969670", - "Infiltration": "east", - "Position": { - "x": 64.41, - "y": 14.702, - "z": 164.414 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6b4a840c-fc42-4b8c-bc68-04d7f6c2113a", - "Infiltration": "east", - "Position": { - "x": 151.47, - "y": 22.85, - "z": 243.36 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6bb1d97d-c152-4467-b67b-bcd052438a96", - "Infiltration": "east", - "Position": { - "x": 180.58, - "y": 16.2, - "z": 123.16 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6ce9a592-54dc-4bbb-bfd1-0f2e8cbc3ea2", - "Infiltration": "", - "Position": { - "x": 22.2868042, - "y": 23.53865, - "z": 255.1308 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6e3ad315-21c1-4816-84f5-e6d5ad0568af", - "Infiltration": "west", - "Position": { - "x": 71.76799, - "y": 22.987999, - "z": 270.554016 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6f70381f-dcd2-4b4b-8f7e-27a787298af6", - "Infiltration": "west", - "Position": { - "x": -4.45, - "y": 23.89, - "z": -58.9 - }, - "Rotation": 15.3505669, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "70d32d6a-267d-4375-86be-dc240e2255e9", - "Infiltration": "", - "Position": { - "x": -15.6471939, - "y": 23.87565, - "z": 101.716812 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "71e27ce2-54ef-4070-942c-c8a136e81fcf", - "Infiltration": "east", - "Position": { - "x": 113.345993, - "y": 23.448, - "z": 273.162 - }, - "Rotation": 197.8527, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "734798e9-93cc-4239-93eb-8f23476b1f3d", - "Infiltration": "west", - "Position": { - "x": 137.609, - "y": 14.088, - "z": 63.101 - }, - "Rotation": 281.497131, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "74ce5970-afa4-4bfa-9a57-5f1725adb6f6", - "Infiltration": "west", - "Position": { - "x": 73.57, - "y": 14.147, - "z": -48.848 - }, - "Rotation": 94.1142349, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "74da28f8-d773-4ede-9c03-83811cf9563f", - "Infiltration": "west", - "Position": { - "x": 74.271, - "y": 14.147, - "z": -51.551 - }, - "Rotation": 94.1142349, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "751ed8cb-d9c5-4c3a-ad31-7ae979f66316", - "Infiltration": "east", - "Position": { - "x": 52.9480133, - "y": 22.918, - "z": -79.646 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "75f2a001-06c8-40a2-99f0-715c75b38138", - "Infiltration": "west", - "Position": { - "x": 135.18, - "y": 14.088, - "z": 66.07 - }, - "Rotation": 281.497131, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "76076875-b690-43f3-8917-68f7b077742f", - "Infiltration": "east", - "Position": { - "x": 117.819, - "y": 28.963, - "z": 152.665 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7650aa3e-7ab6-4e76-9b71-af60211b4ad1", - "Infiltration": "west", - "Position": { - "x": 143.83, - "y": 22.74, - "z": -71.39 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7689966a-e33d-45af-bec8-7f4161438b74", - "Infiltration": "east", - "Position": { - "x": 133.66, - "y": 23.45, - "z": 268.62 - }, - "Rotation": 235.117432, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7abcf691-7aa8-4dff-a592-5cd860701676", - "Infiltration": "west", - "Position": { - "x": 121.494, - "y": 22.834, - "z": -2.778 - }, - "Rotation": 297.1408, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7b81d205-9028-4a06-81ce-b1d73922fce0", - "Infiltration": "east", - "Position": { - "x": 115.777, - "y": 23.426, - "z": 274.272 - }, - "Rotation": 197.8527, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7c3113ec-ad54-4482-b131-616af7d8b187", - "Infiltration": "", - "Position": { - "x": 133.4458, - "y": 14.1126509, - "z": 66.43681 - }, - "Rotation": 249.33786, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7d15d123-4d59-451f-9bf5-c0d0ac846d84", - "Infiltration": "", - "Position": { - "x": 176.3018, - "y": 16.9956512, - "z": 10.2488108 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7e5be667-48c5-4d47-899b-6349fffab4f2", - "Infiltration": "", - "Position": { - "x": 17.0218048, - "y": 24.20565, - "z": 66.79081 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7f0d4fce-32a8-4d9a-ac19-d27ab617a45a", - "Infiltration": "east", - "Position": { - "x": 132.107, - "y": 23.45, - "z": 270.349 - }, - "Rotation": 235.117432, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "808fa3b4-3c42-4677-a55a-820550dbd33a", - "Infiltration": "", - "Position": { - "x": 71.866806, - "y": 14.1386509, - "z": -13.0741882 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "811063e9-7b4c-4e88-b571-dda14fc5c422", - "Infiltration": "east", - "Position": { - "x": 111.826, - "y": 23.448, - "z": 269.082 - }, - "Rotation": 197.8527, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "818d8bb3-2bb9-4323-be8a-f03b1cfc2137", - "Infiltration": "west", - "Position": { - "x": 143.33, - "y": 22.74, - "z": -69.41 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8199eec6-7c9e-47bd-9564-c8bf35c88cc8", - "Infiltration": "", - "Position": { - "x": 55.2668037, - "y": 14.0686512, - "z": -32.35419 - }, - "Rotation": 57.4887657, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "81dcf114-6ea8-4197-b024-d886a7b3b1fb", - "Infiltration": "", - "Position": { - "x": 46.5608063, - "y": 23.30565, - "z": -102.121193 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "82479080-e2bd-4673-be13-9e436f814a45", - "Infiltration": "", - "Position": { - "x": 26.1368027, - "y": 23.86865, - "z": -24.01419 - }, - "Rotation": 220.881927, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8464e389-d91c-45d4-9e99-5b61d5bcdc69", - "Infiltration": "east", - "Position": { - "x": 52.795, - "y": 22.778, - "z": -76.65201 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "85d0c978-1f88-4867-ab44-2d2a9a799ec9", - "Infiltration": "", - "Position": { - "x": 11.5208054, - "y": 23.48965, - "z": 156.3288 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "87e8d4b8-9daf-433d-ac02-618fa63697f3", - "Infiltration": "", - "Position": { - "x": 162.2768, - "y": 22.768652, - "z": -86.23419 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "88f9673a-94aa-41e0-af26-8fb49d809b60", - "Infiltration": "", - "Position": { - "x": 26.6068039, - "y": 23.86865, - "z": -26.9641876 - }, - "Rotation": 220.881927, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "894397aa-eb45-4371-a2da-dcaa55bbc2df", - "Infiltration": "east", - "Position": { - "x": 111.535995, - "y": 23.448, - "z": 271.632 - }, - "Rotation": 197.8527, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8991994e-2dd2-4335-8fb9-5f906a80c0f8", - "Infiltration": "west", - "Position": { - "x": 179.893, - "y": 17.01, - "z": -6.997 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8a478f38-07d3-4e3d-8322-d2f1f6137aff", - "Infiltration": "east", - "Position": { - "x": 99.644, - "y": 28.1424046, - "z": 314.177 - }, - "Rotation": 129.322372, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8aa4f53e-1ecd-4bda-900a-3c650e197c8e", - "Infiltration": "east", - "Position": { - "x": 134.04, - "y": 23.45, - "z": 271.91 - }, - "Rotation": 235.117432, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8ac7e495-cc53-4543-baa7-8a4fc32a6172", - "Infiltration": "", - "Position": { - "x": 96.9698, - "y": 22.87865, - "z": -86.9261856 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8b301a0d-e694-4f24-b938-32329a5084f5", - "Infiltration": "east", - "Position": { - "x": 87.17799, - "y": 22.809, - "z": 17.154007 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8befdee7-3429-4faa-85e4-c5bf3f763845", - "Infiltration": "", - "Position": { - "x": 11.1888046, - "y": 23.48965, - "z": 159.016815 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8e2cf7d7-6b81-4686-be31-1f169492165f", - "Infiltration": "east", - "Position": { - "x": 144.95, - "y": 22.949, - "z": 253.29 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8e70071b-0949-4f6a-b106-dcc689714e07", - "Infiltration": "east", - "Position": { - "x": 109.208, - "y": 23.193, - "z": 174.245 - }, - "Rotation": 24.08007, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8f3bef35-3e52-47ec-a072-02b3ad071433", - "Infiltration": "west", - "Position": { - "x": 183.821, - "y": 17.209, - "z": -6.948 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8f4062b7-bb81-4f5e-8400-d714bf323984", - "Infiltration": "", - "Position": { - "x": -15.4731979, - "y": 23.8186512, - "z": -56.62419 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "90a0d0bc-fe10-4772-b28a-74a61583e5f4", - "Infiltration": "", - "Position": { - "x": 36.1368027, - "y": 22.6686516, - "z": 334.6858 - }, - "Rotation": 158.465, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "93427305-4f03-44d6-8690-7c24dbbb4128", - "Infiltration": "east", - "Position": { - "x": 52.8650055, - "y": 22.778, - "z": -75.272 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "93f288d8-8fc8-4fee-b904-6c4128c7a7a9", - "Infiltration": "", - "Position": { - "x": 8.986805, - "y": 23.48965, - "z": 158.425812 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "96c84440-4cc8-410e-afd2-15dc920dca8b", - "Infiltration": "east", - "Position": { - "x": 147.74, - "y": 23.3, - "z": 253.63 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "97185451-3b24-4e74-baa1-6a706f09c520", - "Infiltration": "west", - "Position": { - "x": 80.90199, - "y": 22.8000011, - "z": 18.7039948 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "97513a7b-d467-454a-8232-2e77f3e386ef", - "Infiltration": "west", - "Position": { - "x": 70.468, - "y": 23.018, - "z": 266.003967 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "989cfb81-3a2e-4cef-b3c1-a2a914dceaad", - "Infiltration": "west", - "Position": { - "x": 119.189, - "y": 22.834, - "z": -2.685 - }, - "Rotation": 297.1408, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "999c413b-05eb-4c30-a4ef-4e0c95c838ef", - "Infiltration": "west", - "Position": { - "x": 79.97801, - "y": 22.818, - "z": 270.224 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "9c0e31a8-2008-41ef-b42b-b8888cc523ba", - "Infiltration": "west", - "Position": { - "x": 142.85, - "y": 22.74, - "z": -67.64 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "9ca696c4-a631-4272-9e02-e0b7950a8a18", - "Infiltration": "", - "Position": { - "x": 57.236805, - "y": 14.0986509, - "z": -31.15419 - }, - "Rotation": 57.4887657, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "9cc6b2c3-948c-4902-8344-fa12d0c0e700", - "Infiltration": "west", - "Position": { - "x": 135.85, - "y": 14.088, - "z": 68.92 - }, - "Rotation": 281.497131, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "9dd4bcc0-062e-45a4-9346-2b488ed4ad72", - "Infiltration": "east", - "Position": { - "x": 86.31801, - "y": 22.809, - "z": 14.1439972 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "9f6cbe96-7d68-45bf-8f4b-4ccac2550961", - "Infiltration": "west", - "Position": { - "x": 76.378006, - "y": 23.018, - "z": 267.274 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "9fbe814b-9217-4d81-84c2-cc43e67f7bda", - "Infiltration": "east", - "Position": { - "x": 117.413, - "y": 28.963, - "z": 154.495 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "a5654bc0-d8a6-4897-9f9a-768c4af478c1", - "Infiltration": "west", - "Position": { - "x": -8.37, - "y": 23.86, - "z": -0.3899932 - }, - "Rotation": 29.2678757, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "a89d94ec-5205-4f8f-aac1-e6680ffbdebf", - "Infiltration": "", - "Position": { - "x": 29.9268036, - "y": 23.86865, - "z": -25.2141876 - }, - "Rotation": 220.881927, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "a8b2e367-82fd-4e64-a37c-906955df399f", - "Infiltration": "east", - "Position": { - "x": 67.72, - "y": 13.981, - "z": 164.591 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "a9f2fbc7-fa61-4538-9e91-39ca505f86e7", - "Infiltration": "west", - "Position": { - "x": -11.19, - "y": 23.86, - "z": -2.8199935 - }, - "Rotation": 29.2678757, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ace73ef1-b867-4e84-9a40-5a1aefbbbd78", - "Infiltration": "", - "Position": { - "x": 44.2268066, - "y": 23.30565, - "z": -104.874191 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b0126d65-ba76-45ad-b25e-32f4f3509904", - "Infiltration": "east", - "Position": { - "x": 83.84801, - "y": 22.8399982, - "z": 19.673996 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b049945c-de9b-4bea-a102-f7e318c188f4", - "Infiltration": "", - "Position": { - "x": 72.74081, - "y": 14.1386509, - "z": 29.96981 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b049c6f8-afb9-42f9-9591-2f265fef2097", - "Infiltration": "west", - "Position": { - "x": 81.33101, - "y": 22.8000011, - "z": 14.4269867 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b174e1f8-2d16-4762-9e14-ca87057191b3", - "Infiltration": "", - "Position": { - "x": -10.4581985, - "y": 23.982048, - "z": 19.6548119 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b2045b65-d78a-4f76-b35d-6966bf7a1616", - "Infiltration": "", - "Position": { - "x": 72.49081, - "y": 14.2016516, - "z": 113.621811 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b2d85104-d574-4482-8962-9dbeae1221f5", - "Infiltration": "west", - "Position": { - "x": 74.228, - "y": 14.18, - "z": 8.865999 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b4320240-51bf-44b3-857f-7fb70ad39f52", - "Infiltration": "", - "Position": { - "x": 96.2568054, - "y": 22.87865, - "z": -85.19419 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b5e02957-b03d-4295-b05d-9be69f6f2e82", - "Infiltration": "east", - "Position": { - "x": 67.816, - "y": 13.981, - "z": 166.22 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b7183870-a16c-4429-a8e7-2c2710fe3b57", - "Infiltration": "east", - "Position": { - "x": 103.8, - "y": 28.1424046, - "z": 316.122 - }, - "Rotation": 129.322372, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b770592a-8d5d-46f5-95b9-b87b8526e72f", - "Infiltration": "", - "Position": { - "x": 109.396805, - "y": 22.688652, - "z": 239.435822 - }, - "Rotation": 283.99, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b8e7952a-18cd-4553-ad28-952a4697b055", - "Infiltration": "", - "Position": { - "x": 58.3678055, - "y": 23.4366512, - "z": 229.1268 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b96df3dc-23f2-4e1d-8a9a-9fbe05a94f47", - "Infiltration": "east", - "Position": { - "x": 83.998, - "y": 22.828001, - "z": 16.05397 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ba5a0138-2a24-4ceb-bdb2-92d351fec342", - "Infiltration": "west", - "Position": { - "x": 42.021, - "y": 23.276, - "z": -104.487 - }, - "Rotation": 323.255859, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "baab705e-363a-41c4-9419-35c0cae9149b", - "Infiltration": "", - "Position": { - "x": 98.94981, - "y": 22.87865, - "z": -85.03119 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "bac88572-2efd-4af3-ad8e-da356ed452a2", - "Infiltration": "", - "Position": { - "x": 180.1868, - "y": 16.21865, - "z": 128.1658 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "beefbcb9-c0cf-4dcc-860b-e599607fc324", - "Infiltration": "", - "Position": { - "x": 45.6098022, - "y": 23.30565, - "z": -99.78419 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c081b15d-fb2d-4a02-afeb-b0664e2bdb02", - "Infiltration": "east", - "Position": { - "x": 38.7, - "y": 23.48, - "z": 147.19 - }, - "Rotation": 151.165863, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c106dee0-2b28-461f-8d43-1ca961ff1d04", - "Infiltration": "east", - "Position": { - "x": 127.225, - "y": 23.225, - "z": 192.607 - }, - "Rotation": 279.416534, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c2573535-446a-4dbc-ace0-a3c714834771", - "Infiltration": "", - "Position": { - "x": 18.5388031, - "y": 24.20565, - "z": 73.82181 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c2d85c3f-a32f-42de-9a1b-b4ed6f8567e3", - "Infiltration": "", - "Position": { - "x": 180.9668, - "y": 16.21865, - "z": 130.085815 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c36b37b1-e654-45b8-a921-4864d1a325a4", - "Infiltration": "west", - "Position": { - "x": 79.78801, - "y": 22.8000011, - "z": 11.7740021 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c5fca4a0-ec81-4e87-a7ed-a64a3f8bc3f6", - "Infiltration": "", - "Position": { - "x": 22.8788033, - "y": 23.53865, - "z": 253.499817 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c6b7ada3-06e1-4c17-bbfc-805297968e04", - "Infiltration": "east", - "Position": { - "x": 101.579, - "y": 28.1424046, - "z": 314.783 - }, - "Rotation": 129.322372, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c83cfa66-d6c2-4b78-8dfd-23d3fc83413c", - "Infiltration": "east", - "Position": { - "x": 147.55, - "y": 23.3, - "z": 250.06 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c8b04f3f-1f80-49a7-8530-3180b3ff71e9", - "Infiltration": "east", - "Position": { - "x": 84.94798, - "y": 22.809, - "z": 15.1129913 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c91b3833-85b9-4c83-9d02-34550ad84008", - "Infiltration": "", - "Position": { - "x": 72.22681, - "y": 13.9586515, - "z": 159.3858 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c94a8465-be54-4bf3-833b-b83822b582df", - "Infiltration": "west", - "Position": { - "x": 176.79, - "y": 17.01, - "z": -6.32 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "cbf941fc-9b66-4a2c-aa00-b1d9b1ba7f9f", - "Infiltration": "west", - "Position": { - "x": 177.581, - "y": 17.01, - "z": -4.079 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "cc5ed6f2-1e4e-43d4-9ad4-9fc3aaf1e162", - "Infiltration": "west", - "Position": { - "x": -11, - "y": 23.86, - "z": -5.77 - }, - "Rotation": 29.2678757, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "DelayToCanSpawnSec": 1700, - "Id": "ccf7a261-a540-4d17-a3c3-445521a8dd22", - "Infiltration": "", - "Position": { - "x": 104.531586, - "y": 33.44029, - "z": 107.521042 - }, - "Rotation": 247.765274, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "cdabcf05-fa38-4640-89a6-294133b99a5c", - "Infiltration": "east", - "Position": { - "x": 54.733017, - "y": 22.778, - "z": -79.07599 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "cec675dc-0443-44f1-90bb-61b0fc25b2fc", - "Infiltration": "east", - "Position": { - "x": 54.50502, - "y": 22.778, - "z": -73.88199 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ced4b14f-e478-467d-bed1-0314278e555a", - "Infiltration": "east", - "Position": { - "x": 101.809, - "y": 28.1424046, - "z": 317.117 - }, - "Rotation": 129.322372, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "d4f55d16-038b-455e-bc9a-74a49e57ab89", - "Infiltration": "west", - "Position": { - "x": 119.705, - "y": 22.834, - "z": -4.314 - }, - "Rotation": 297.1408, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "d6b11dc2-4817-4421-bec9-c790a4019777", - "Infiltration": "", - "Position": { - "x": 175.106812, - "y": 16.9956512, - "z": 2.17581081 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "d9e3c316-cf61-454b-8fca-aae78f2c0622", - "Infiltration": "west", - "Position": { - "x": 136.6, - "y": 22.74, - "z": -66.89 - }, - "Rotation": 298.9875, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "daaa4a02-1f51-460b-bdf8-29b3bd2c838b", - "Infiltration": "west", - "Position": { - "x": 78.24098, - "y": 22.85, - "z": 16.96199 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "db5b9d0d-3105-4814-b413-03d28d4a87d2", - "Infiltration": "west", - "Position": { - "x": 47.123, - "y": 23.276, - "z": -103.068 - }, - "Rotation": 323.255859, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "dcbe096a-7083-4dc0-a7e2-8149e7c153d4", - "Infiltration": "east", - "Position": { - "x": 130.538, - "y": 23.45, - "z": 271.616 - }, - "Rotation": 235.117432, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "dd034db3-fb3e-4b8a-9255-8fbe67b59f1f", - "Infiltration": "", - "Position": { - "x": 57.486805, - "y": 23.4366512, - "z": 229.5658 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ddca1267-6caa-4986-bd13-0ed29a81e6d2", - "Infiltration": "east", - "Position": { - "x": 86.15001, - "y": 22.809, - "z": 16.2979889 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "de5f4d8c-1411-446e-b67b-269830a40a15", - "Infiltration": "east", - "Position": { - "x": 60.9, - "y": 14.18, - "z": 105.16 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "df92e08a-08a9-4a19-8b90-cc8aa13b3062", - "Infiltration": "west", - "Position": { - "x": 122.356, - "y": 22.834, - "z": -4.153 - }, - "Rotation": 297.1408, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "df949703-1471-4367-a395-3afa78fcf886", - "Infiltration": "east", - "Position": { - "x": 57.9350128, - "y": 22.778, - "z": -72.422 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "e545318d-f757-4a76-90be-079bf41998d2", - "Infiltration": "east", - "Position": { - "x": 180.81, - "y": 16.24, - "z": 119.29 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "e5da63fb-4d33-4ebb-a621-dd414deecab5", - "Infiltration": "west", - "Position": { - "x": 75.82799, - "y": 23.018, - "z": 268.864 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "e6e4e0bc-b533-4b7d-8f3a-479240453896", - "Infiltration": "", - "Position": { - "x": 130.6398, - "y": 14.1126509, - "z": 63.12081 - }, - "Rotation": 249.33786, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "eaa886c4-d771-4f7d-89f8-03b0c6d38365", - "Infiltration": "east", - "Position": { - "x": 110.82, - "y": 23.193, - "z": 176.03 - }, - "Rotation": 25.0808964, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "eb268aaa-dfde-4021-bdfa-44faed92c139", - "Infiltration": "east", - "Position": { - "x": 64.88, - "y": 14.22, - "z": 105.85 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ec099d7a-f15a-488b-8402-4113f56c5822", - "Infiltration": "east", - "Position": { - "x": 180.85, - "y": 16.24, - "z": 121.4 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ec13b292-f7ef-4a17-85ae-84b356502878", - "Infiltration": "west", - "Position": { - "x": 4.36, - "y": 23.89, - "z": -59.74 - }, - "Rotation": 15.3505669, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f0113a3b-12cd-4801-ad39-c5ebc9578d38", - "Infiltration": "east", - "Position": { - "x": 54.6900177, - "y": 22.778, - "z": -77.0209961 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f134efa8-5aae-4729-8546-c15dada03547", - "Infiltration": "", - "Position": { - "x": -13.1111984, - "y": 23.87565, - "z": 98.92881 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f2187ee3-7751-441b-a7ef-b88e072a94c3", - "Infiltration": "west", - "Position": { - "x": -2.8, - "y": 23.89, - "z": -59.58 - }, - "Rotation": 15.3505669, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f2a7bbe4-cd32-4e72-875e-3624083ec8e8", - "Infiltration": "west", - "Position": { - "x": 44.427, - "y": 23.276, - "z": -104.867 - }, - "Rotation": 323.255859, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f5481928-9ee3-47cd-8998-77edfd1626d3", - "Infiltration": "west", - "Position": { - "x": 74.49, - "y": 14.18, - "z": 10.55 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f59ed3fc-83e9-4727-899d-bd7b8d80d4cf", - "Infiltration": "", - "Position": { - "x": -12.6441956, - "y": 23.8186512, - "z": -59.9541855 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f5ba4d5f-08f4-411d-b246-2bac60595f01", - "Infiltration": "east", - "Position": { - "x": 66.95, - "y": 14.18, - "z": 107.25 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f61dc8f4-8ab8-4a1b-9771-8c4d26568769", - "Infiltration": "east", - "Position": { - "x": 85.338, - "y": 22.8000011, - "z": 11.584 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f76c3749-0412-41cb-a61c-0d7bca49e779", - "Infiltration": "east", - "Position": { - "x": 127.474, - "y": 23.225, - "z": 194.108 - }, - "Rotation": 279.416534, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f82812d6-708f-45d4-a63a-96c96fe0b186", - "Infiltration": "", - "Position": { - "x": 71.97681, - "y": 14.1386509, - "z": 20.19581 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f85dce73-81e2-494d-99be-048f4a5c20c1", - "Infiltration": "", - "Position": { - "x": -14.633194, - "y": 23.8186512, - "z": -58.76419 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "faadec9e-bec8-4153-9bf3-840b9fcabe2f", - "Infiltration": "", - "Position": { - "x": 164.696808, - "y": 22.768652, - "z": -85.8841858 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "fc1387ee-e540-4433-9022-d3c53a04b8c2", - "Infiltration": "east", - "Position": { - "x": 39.85, - "y": 23.42, - "z": 150.63 - }, - "Rotation": 154.863632, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "fd6734ed-6ba8-423b-8a7b-2943f31c6527", - "Infiltration": "west", - "Position": { - "x": 79.088, - "y": 22.8000011, - "z": 13.6839752 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "fde2249f-83dd-4e98-a141-46d6280257d5", - "Infiltration": "", - "Position": { - "x": 22.6368027, - "y": 23.53865, - "z": 257.9848 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - } - ], - "UnixDateTime": 1621511450, - "_Id": "653e6760052c01c1c805532f", - "doors": [], - "exit_access_time": 35, - "exit_count": 1, - "exit_time": 2, - "exits": [ - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "east", - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Unity_free_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 5000, - "CountPVE": 5000, - "EntryPoints": "west,east", - "ExfiltrationTime": 60, - "ExfiltrationTimePVE": 60, - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Sandbox_VExit", - "PassageRequirement": "TransferItem", - "PlayersCount": 4, - "PlayersCountPVE": 4, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Item" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "west,east", - "ExfiltrationTime": 6, - "ExfiltrationTimePVE": 6, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Sniper_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "west,east", - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "SharedTimer", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Scav_coop_exit", - "PassageRequirement": "ScavCooperation", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Cooperate" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "west", - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Nakatani_stairs_free_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - } - ], - "filter_ex": [], - "limits": [ - { - "items": [ - "64d4b23dc1b37504b41ac2b6" - ], - "max": 1, - "min": 1 - } - ], - "matching_min_seconds": 60, - "sav_summon_seconds": 60, - "tmp_location_field_remove_me": 0, - "transits": [ - { - "activateAfterSec": 60, - "active": true, - "conditions": "SAN_TRANSIT_1_COND", - "description": "SAN_TRANSIT_1_DESC", - "id": 1, - "location": "TarkovStreets", - "name": "SAN_TRANSIT_1", - "target": "5714dc692459777137212e12", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": false, - "conditions": "SAN_TRANSIT_2_COND", - "description": "SAN_TRANSIT_2_DESC", - "id": 2, - "location": "laboratory", - "name": "SAN_TRANSIT_2", - "target": "5b0fc42d86f7744a585f9105", - "time": 30 - } - ], - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "waves": [] -} diff --git a/project/assets/database/locations/sandbox/looseLoot.json b/project/assets/database/locations/sandbox/looseLoot.json deleted file mode 100644 index d7a185ff..00000000 --- a/project/assets/database/locations/sandbox/looseLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:afd959073967485daa69657a3dc33b483285371de7f72b82c1698b73752af9f0 -size 10128345 diff --git a/project/assets/database/locations/sandbox/staticAmmo.json b/project/assets/database/locations/sandbox/staticAmmo.json deleted file mode 100644 index c038be96..00000000 --- a/project/assets/database/locations/sandbox/staticAmmo.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c113565e65504517d37f253b5790cb769af36e66c3582d2137eafcefb47a5d4d -size 11274 diff --git a/project/assets/database/locations/sandbox/staticContainers.json b/project/assets/database/locations/sandbox/staticContainers.json deleted file mode 100644 index 4532c3a3..00000000 --- a/project/assets/database/locations/sandbox/staticContainers.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6c7c68f060aaa5b18f9686545e1d3ca491c56914ae11d9a581119a909ae07a42 -size 236345 diff --git a/project/assets/database/locations/sandbox/staticLoot.json b/project/assets/database/locations/sandbox/staticLoot.json deleted file mode 100644 index 9d0d977b..00000000 --- a/project/assets/database/locations/sandbox/staticLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4f5172c08c918f7cd7fcd9a39d47fd6d4983e1b940d72b40a8b4908fb7626a1e -size 629788 diff --git a/project/assets/database/locations/sandbox/statics.json b/project/assets/database/locations/sandbox/statics.json deleted file mode 100644 index e4a73f77..00000000 --- a/project/assets/database/locations/sandbox/statics.json +++ /dev/null @@ -1,1787 +0,0 @@ -{ - "containersGroups": { - "sandbox_bag_sport_N15_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N18_6": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N22_6": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_Plastic_suitcase_64_open_P_N34_4": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N3_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N47_2": { - "minContainers": 0, - "maxContainers": 1 - }, - "FromArt_containerGroup": { - "minContainers": 20, - "maxContainers": 30 - }, - "FromArt2ndIteration_containerGroup": { - "minContainers": 25, - "maxContainers": 32 - }, - "sandbox_bag_sport_N4_6": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N42_4": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_scontainer_toolbox_N49_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_Plastic_suitcase_140_open_P_N35_4": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N6_6": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N23_6": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N26_3": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N11_6": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N30_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N1_6": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_scontainer_toolbox_N25_4": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_scontainer_toolbox_N14_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N19_10": { - "minContainers": 0, - "maxContainers": 1 - }, - "lift_parking_N51_4_sandbox": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N17_6": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N2_6": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N21_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N24_3": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_weapon_box_N41_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_container_supplyBox_lootable_medicine_N39_2": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_scontainer_toolbox_N27_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_scontainer_toolbox_N45_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N37_4": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_container_supplyBox_lootable_tools_N33_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_scontainer_medbag_N7_5": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_scontainer_toolbox_N9_4": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N38_4": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_container_supplyBox_lootable_tools_N32_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N29_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N28_7": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N10_6": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_container_supplyBox_lootable_tools_N40_2": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_weapon_box_N36_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N48_4": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N31_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N20_5": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_scontainer_toolbox_N44_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N13_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N12_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_scontainer_toolbox_N16_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N50_4": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_container_supplyBox_lootable_food_N8_2": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_scontainer_toolbox_N46_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N5_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N43_3": { - "minContainers": 0, - "maxContainers": 2 - } - }, - "containers": { - "container_Sandbox_Design_Stuff_00049": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00048": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00050": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00051": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00101": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00100": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00098": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00099": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00024": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00025": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00027": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00026": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00116": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00115": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00117": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00118": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00125": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00126": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00128": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00127": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00054": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00055": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00053": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00052": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00077": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00078": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00080": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00079": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00047": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00046": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00044": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00045": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00092": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00091": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00089": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00090": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00145": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00146": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00148": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00147": { - "groupId": "" - }, - "Lootable_00000": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00159": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00160": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00162": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00161": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00032": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00033": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00087": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00088": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00086": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00085": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00030": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00029": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00028": { - "groupId": "" - }, - "Lootable_00008": { - "groupId": "" - }, - "Lootable_00007": { - "groupId": "" - }, - "Lootable_00005": { - "groupId": "" - }, - "Lootable_00006": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00136": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00137": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00135": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00134": { - "groupId": "" - }, - "Lootable_00002": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00142": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00141": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00143": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00144": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00042": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00043": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00041": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00040": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00084": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00083": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00081": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00082": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00023": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00022": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00020": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00021": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00172": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00073": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00109": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00071": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00063": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00169": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00506": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00011": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00155": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00178": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00067": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00157": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00112": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00012": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00061": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00166": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00075": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00074": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00111": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00182": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00156": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00013": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00153": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00154": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00008": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00173": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00179": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00149": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00070": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00060": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00072": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00005": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00000": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00151": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00114": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00058": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00449": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00301": { - "groupId": "sandbox_bag_sport_N23_6" - }, - "container_Sandbox_Design_Stuff_00289": { - "groupId": "sandbox_bag_sport_N21_5" - }, - "container_Sandbox_Design_Stuff_00333": { - "groupId": "sandbox_bag_sport_N30_5" - }, - "container_Sandbox_Design_Stuff_00296": { - "groupId": "sandbox_bag_sport_N23_6" - }, - "container_Sandbox_Design_Stuff_00327": { - "groupId": "sandbox_bag_sport_N29_5" - }, - "container_Sandbox_Design_Stuff_00232": { - "groupId": "sandbox_bag_sport_N10_6" - }, - "container_Sandbox_Design_Stuff_00505": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00233": { - "groupId": "sandbox_bag_sport_N10_6" - }, - "container_Sandbox_Design_Stuff_00248": { - "groupId": "sandbox_bag_sport_N13_5" - }, - "container_Sandbox_Design_Stuff_00293": { - "groupId": "sandbox_bag_sport_N22_6" - }, - "container_Sandbox_Design_Stuff_00299": { - "groupId": "sandbox_bag_sport_N23_6" - }, - "container_Sandbox_Design_Stuff_00498": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00396": { - "groupId": "sandbox_bag_sport_N50_4" - }, - "container_Sandbox_Design_Stuff_00245": { - "groupId": "sandbox_bag_sport_N13_5" - }, - "container_Sandbox_Design_Stuff_00271": { - "groupId": "sandbox_bag_sport_N18_6" - }, - "container_Sandbox_Design_Stuff_00297": { - "groupId": "sandbox_bag_sport_N23_6" - }, - "container_Sandbox_Design_Stuff_00387": { - "groupId": "sandbox_bag_sport_N47_2" - }, - "container_Sandbox_Design_Stuff_00244": { - "groupId": "sandbox_bag_sport_N12_5" - }, - "container_Sandbox_Design_Stuff_00501": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00360": { - "groupId": "sandbox_bag_sport_N38_4" - }, - "container_Sandbox_Design_Stuff_00214": { - "groupId": "sandbox_bag_sport_N6_6" - }, - "container_Sandbox_Design_Stuff_00241": { - "groupId": "sandbox_bag_sport_N12_5" - }, - "container_Sandbox_Design_Stuff_00371": { - "groupId": "sandbox_bag_sport_N42_4" - }, - "container_Sandbox_Design_Stuff_00331": { - "groupId": "sandbox_bag_sport_N30_5" - }, - "container_Sandbox_Design_Stuff_00253": { - "groupId": "sandbox_bag_sport_N15_5" - }, - "container_Sandbox_Design_Stuff_00392": { - "groupId": "sandbox_bag_sport_N48_4" - }, - "container_Sandbox_Design_Stuff_00317": { - "groupId": "sandbox_bag_sport_N28_7" - }, - "container_Sandbox_Design_Stuff_00362": { - "groupId": "sandbox_bag_sport_N38_4" - }, - "container_Sandbox_Design_Stuff_00357": { - "groupId": "sandbox_bag_sport_N37_4" - }, - "container_Sandbox_Design_Stuff_00231": { - "groupId": "sandbox_bag_sport_N10_6" - }, - "container_Sandbox_Design_Stuff_00303": { - "groupId": "sandbox_bag_sport_N24_3" - }, - "container_Sandbox_Design_Stuff_00203": { - "groupId": "sandbox_bag_sport_N4_6" - }, - "container_Sandbox_Design_Stuff_00192": { - "groupId": "sandbox_bag_sport_N2_6" - }, - "container_Sandbox_Design_Stuff_00230": { - "groupId": "sandbox_bag_sport_N10_6" - }, - "container_Sandbox_Design_Stuff_00499": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00255": { - "groupId": "sandbox_bag_sport_N15_5" - }, - "container_Sandbox_Design_Stuff_00287": { - "groupId": "sandbox_bag_sport_N21_5" - }, - "container_Sandbox_Design_Stuff_00265": { - "groupId": "sandbox_bag_sport_N17_6" - }, - "container_Sandbox_Design_Stuff_00282": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00189": { - "groupId": "sandbox_bag_sport_N2_6" - }, - "container_Sandbox_Design_Stuff_00495": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00269": { - "groupId": "sandbox_bag_sport_N18_6" - }, - "container_Sandbox_Design_Stuff_00193": { - "groupId": "sandbox_bag_sport_N2_6" - }, - "container_Sandbox_Design_Stuff_00322": { - "groupId": "sandbox_bag_sport_N28_7" - }, - "container_Sandbox_Design_Stuff_00502": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00262": { - "groupId": "sandbox_bag_sport_N17_6" - }, - "container_Sandbox_Design_Stuff_00326": { - "groupId": "sandbox_bag_sport_N29_5" - }, - "container_Sandbox_Design_Stuff_00375": { - "groupId": "sandbox_bag_sport_N43_3" - }, - "container_Sandbox_Design_Stuff_00238": { - "groupId": "sandbox_bag_sport_N11_6" - }, - "container_Sandbox_Design_Stuff_00204": { - "groupId": "sandbox_bag_sport_N4_6" - }, - "container_Sandbox_Design_Stuff_00452": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00185": { - "groupId": "sandbox_bag_sport_N1_6" - }, - "container_Sandbox_Design_Stuff_00374": { - "groupId": "sandbox_bag_sport_N42_4" - }, - "container_Sandbox_Design_Stuff_00263": { - "groupId": "sandbox_bag_sport_N17_6" - }, - "container_Sandbox_Design_Stuff_00197": { - "groupId": "sandbox_bag_sport_N3_5" - }, - "container_Sandbox_Design_Stuff_00194": { - "groupId": "sandbox_bag_sport_N2_6" - }, - "container_Sandbox_Design_Stuff_00239": { - "groupId": "sandbox_bag_sport_N11_6" - }, - "container_Sandbox_Design_Stuff_00281": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00184": { - "groupId": "sandbox_bag_sport_N1_6" - }, - "container_Sandbox_Design_Stuff_00388": { - "groupId": "sandbox_bag_sport_N47_2" - }, - "container_Sandbox_Design_Stuff_00356": { - "groupId": "sandbox_bag_sport_N37_4" - }, - "container_Sandbox_Design_Stuff_00358": { - "groupId": "sandbox_bag_sport_N37_4" - }, - "container_Sandbox_Design_Stuff_00309": { - "groupId": "sandbox_bag_sport_N26_3" - }, - "container_Sandbox_Design_Stuff_00202": { - "groupId": "sandbox_bag_sport_N4_6" - }, - "container_Sandbox_Design_Stuff_00450": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00205": { - "groupId": "sandbox_bag_sport_N4_6" - }, - "container_Sandbox_Design_Stuff_00183": { - "groupId": "sandbox_bag_sport_N1_6" - }, - "container_Sandbox_Design_Stuff_00361": { - "groupId": "sandbox_bag_sport_N38_4" - }, - "container_Sandbox_Design_Stuff_00206": { - "groupId": "sandbox_bag_sport_N5_5" - }, - "container_Sandbox_Design_Stuff_00266": { - "groupId": "sandbox_bag_sport_N17_6" - }, - "container_Sandbox_Design_Stuff_00208": { - "groupId": "sandbox_bag_sport_N5_5" - }, - "container_Sandbox_Design_Stuff_00324": { - "groupId": "sandbox_bag_sport_N29_5" - }, - "container_Sandbox_Design_Stuff_00294": { - "groupId": "sandbox_bag_sport_N22_6" - }, - "container_Sandbox_Design_Stuff_00448": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00504": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00249": { - "groupId": "sandbox_bag_sport_N13_5" - }, - "container_Sandbox_Design_Stuff_00254": { - "groupId": "sandbox_bag_sport_N15_5" - }, - "container_Sandbox_Design_Stuff_00304": { - "groupId": "sandbox_bag_sport_N24_3" - }, - "container_Sandbox_Design_Stuff_00210": { - "groupId": "sandbox_bag_sport_N5_5" - }, - "container_Sandbox_Design_Stuff_00274": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00198": { - "groupId": "sandbox_bag_sport_N3_5" - }, - "container_Sandbox_Design_Stuff_00243": { - "groupId": "sandbox_bag_sport_N12_5" - }, - "container_Sandbox_Design_Stuff_00295": { - "groupId": "sandbox_bag_sport_N22_6" - }, - "container_Sandbox_Design_Stuff_00398": { - "groupId": "sandbox_bag_sport_N50_4" - }, - "container_Sandbox_Design_Stuff_00240": { - "groupId": "sandbox_bag_sport_N12_5" - }, - "container_Sandbox_Design_Stuff_00363": { - "groupId": "sandbox_bag_sport_N38_4" - }, - "container_Sandbox_Design_Stuff_00292": { - "groupId": "sandbox_bag_sport_N22_6" - }, - "container_Sandbox_Design_Stuff_00300": { - "groupId": "sandbox_bag_sport_N23_6" - }, - "container_Sandbox_Design_Stuff_00288": { - "groupId": "sandbox_bag_sport_N21_5" - }, - "container_Sandbox_Design_Stuff_00335": { - "groupId": "sandbox_bag_sport_N31_5" - }, - "container_Sandbox_Design_Stuff_00247": { - "groupId": "sandbox_bag_sport_N13_5" - }, - "container_Sandbox_Design_Stuff_00372": { - "groupId": "sandbox_bag_sport_N42_4" - }, - "container_Sandbox_Design_Stuff_00276": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00235": { - "groupId": "sandbox_bag_sport_N11_6" - }, - "container_Sandbox_Design_Stuff_00279": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00454": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00329": { - "groupId": "sandbox_bag_sport_N30_5" - }, - "container_Sandbox_Design_Stuff_00186": { - "groupId": "sandbox_bag_sport_N1_6" - }, - "container_Sandbox_Design_Stuff_00336": { - "groupId": "sandbox_bag_sport_N31_5" - }, - "container_Sandbox_Design_Stuff_00195": { - "groupId": "sandbox_bag_sport_N3_5" - }, - "container_Sandbox_Design_Stuff_00264": { - "groupId": "sandbox_bag_sport_N17_6" - }, - "container_Sandbox_Design_Stuff_00272": { - "groupId": "sandbox_bag_sport_N18_6" - }, - "container_Sandbox_Design_Stuff_00216": { - "groupId": "sandbox_bag_sport_N6_6" - }, - "container_Sandbox_Design_Stuff_00196": { - "groupId": "sandbox_bag_sport_N3_5" - }, - "container_Sandbox_Design_Stuff_00389": { - "groupId": "sandbox_bag_sport_N48_4" - }, - "container_Sandbox_Design_Stuff_00323": { - "groupId": "sandbox_bag_sport_N28_7" - }, - "container_Sandbox_Design_Stuff_00373": { - "groupId": "sandbox_bag_sport_N42_4" - }, - "container_Sandbox_Design_Stuff_00191": { - "groupId": "sandbox_bag_sport_N2_6" - }, - "container_Sandbox_Design_Stuff_00377": { - "groupId": "sandbox_bag_sport_N43_3" - }, - "container_Sandbox_Design_Stuff_00199": { - "groupId": "sandbox_bag_sport_N3_5" - }, - "container_Sandbox_Design_Stuff_00328": { - "groupId": "sandbox_bag_sport_N29_5" - }, - "container_Sandbox_Design_Stuff_00290": { - "groupId": "sandbox_bag_sport_N21_5" - }, - "container_Sandbox_Design_Stuff_00399": { - "groupId": "sandbox_bag_sport_N50_4" - }, - "container_Sandbox_Design_Stuff_00277": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00275": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00268": { - "groupId": "sandbox_bag_sport_N18_6" - }, - "container_Sandbox_Design_Stuff_00187": { - "groupId": "sandbox_bag_sport_N1_6" - }, - "container_Sandbox_Design_Stuff_00201": { - "groupId": "sandbox_bag_sport_N4_6" - }, - "container_Sandbox_Design_Stuff_00256": { - "groupId": "sandbox_bag_sport_N15_5" - }, - "container_Sandbox_Design_Stuff_00229": { - "groupId": "sandbox_bag_sport_N10_6" - }, - "container_Sandbox_Design_Stuff_00236": { - "groupId": "sandbox_bag_sport_N11_6" - }, - "container_Sandbox_Design_Stuff_00337": { - "groupId": "sandbox_bag_sport_N31_5" - }, - "container_Sandbox_Design_Stuff_00215": { - "groupId": "sandbox_bag_sport_N6_6" - }, - "container_Sandbox_Design_Stuff_00503": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00320": { - "groupId": "sandbox_bag_sport_N28_7" - }, - "container_Sandbox_Design_Stuff_00298": { - "groupId": "sandbox_bag_sport_N23_6" - }, - "container_Sandbox_Design_Stuff_00207": { - "groupId": "sandbox_bag_sport_N5_5" - }, - "container_Sandbox_Design_Stuff_00494": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00332": { - "groupId": "sandbox_bag_sport_N30_5" - }, - "container_Sandbox_Design_Stuff_00270": { - "groupId": "sandbox_bag_sport_N18_6" - }, - "container_Sandbox_Design_Stuff_00278": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00200": { - "groupId": "sandbox_bag_sport_N4_6" - }, - "container_Sandbox_Design_Stuff_00391": { - "groupId": "sandbox_bag_sport_N48_4" - }, - "container_Sandbox_Design_Stuff_00284": { - "groupId": "sandbox_bag_sport_N20_5" - }, - "container_Sandbox_Design_Stuff_00330": { - "groupId": "sandbox_bag_sport_N30_5" - }, - "container_Sandbox_Design_Stuff_00188": { - "groupId": "sandbox_bag_sport_N1_6" - }, - "container_Sandbox_Design_Stuff_00291": { - "groupId": "sandbox_bag_sport_N22_6" - }, - "container_Sandbox_Design_Stuff_00209": { - "groupId": "sandbox_bag_sport_N5_5" - }, - "container_Sandbox_Design_Stuff_00500": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00321": { - "groupId": "sandbox_bag_sport_N28_7" - }, - "container_Sandbox_Design_Stuff_00257": { - "groupId": "sandbox_bag_sport_N15_5" - }, - "container_Sandbox_Design_Stuff_00311": { - "groupId": "sandbox_bag_sport_N26_3" - }, - "container_Sandbox_Design_Stuff_00496": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00285": { - "groupId": "sandbox_bag_sport_N20_5" - }, - "container_Sandbox_Design_Stuff_00376": { - "groupId": "sandbox_bag_sport_N43_3" - }, - "container_Sandbox_Design_Stuff_00242": { - "groupId": "sandbox_bag_sport_N12_5" - }, - "container_Sandbox_Design_Stuff_00212": { - "groupId": "sandbox_bag_sport_N6_6" - }, - "container_Test_for_export_00000": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00319": { - "groupId": "sandbox_bag_sport_N28_7" - }, - "container_Sandbox_Design_Stuff_00237": { - "groupId": "sandbox_bag_sport_N11_6" - }, - "container_Sandbox_Design_Stuff_00338": { - "groupId": "sandbox_bag_sport_N31_5" - }, - "container_Sandbox_Design_Stuff_00390": { - "groupId": "sandbox_bag_sport_N48_4" - }, - "container_Sandbox_Design_Stuff_00280": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00359": { - "groupId": "sandbox_bag_sport_N37_4" - }, - "container_Sandbox_Design_Stuff_00310": { - "groupId": "sandbox_bag_sport_N26_3" - }, - "container_Sandbox_Design_Stuff_00286": { - "groupId": "sandbox_bag_sport_N21_5" - }, - "container_Sandbox_Design_Stuff_00213": { - "groupId": "sandbox_bag_sport_N6_6" - }, - "container_Sandbox_Design_Stuff_00228": { - "groupId": "sandbox_bag_sport_N10_6" - }, - "container_Sandbox_Design_Stuff_00283": { - "groupId": "sandbox_bag_sport_N20_5" - }, - "container_Sandbox_Design_Stuff_00334": { - "groupId": "sandbox_bag_sport_N31_5" - }, - "container_Sandbox_Design_Stuff_00302": { - "groupId": "sandbox_bag_sport_N24_3" - }, - "container_Sandbox_Design_Stuff_00397": { - "groupId": "sandbox_bag_sport_N50_4" - }, - "container_Sandbox_Design_Stuff_00261": { - "groupId": "sandbox_bag_sport_N17_6" - }, - "container_Sandbox_Design_Stuff_00273": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00267": { - "groupId": "sandbox_bag_sport_N18_6" - }, - "container_Sandbox_Design_Stuff_00451": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00453": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00497": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00211": { - "groupId": "sandbox_bag_sport_N6_6" - }, - "container_Sandbox_Design_Stuff_00318": { - "groupId": "sandbox_bag_sport_N28_7" - }, - "container_Sandbox_Design_Stuff_00246": { - "groupId": "sandbox_bag_sport_N13_5" - }, - "container_Sandbox_Design_Stuff_00325": { - "groupId": "sandbox_bag_sport_N29_5" - }, - "container_Sandbox_Design_Stuff_00190": { - "groupId": "sandbox_bag_sport_N2_6" - }, - "container_Sandbox_Design_Stuff_00007": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00095": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00014": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00001": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00096": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00064": { - "groupId": "" - }, - "container_ProfileEditor_00003": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00068": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00065": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00412": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00435": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00016": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00093": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00059": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00102": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00176": { - "groupId": "" - }, - "container_ProfileEditor_00005": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00010": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00103": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00015": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00382": { - "groupId": "sandbox_scontainer_toolbox_N45_3" - }, - "container_Sandbox_Design_Stuff_00225": { - "groupId": "sandbox_scontainer_toolbox_N9_4" - }, - "container_Sandbox_Design_Stuff_00403": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00305": { - "groupId": "sandbox_scontainer_toolbox_N25_4" - }, - "container_Sandbox_Design_Stuff_00406": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00379": { - "groupId": "sandbox_scontainer_toolbox_N44_3" - }, - "container_Sandbox_Design_Stuff_00410": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00487": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00445": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00250": { - "groupId": "sandbox_scontainer_toolbox_N14_3" - }, - "container_Sandbox_Design_Stuff_00308": { - "groupId": "sandbox_scontainer_toolbox_N25_4" - }, - "container_Sandbox_Design_Stuff_00380": { - "groupId": "sandbox_scontainer_toolbox_N44_3" - }, - "container_Sandbox_Design_Stuff_00252": { - "groupId": "sandbox_scontainer_toolbox_N14_3" - }, - "container_Sandbox_Design_Stuff_00130": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00313": { - "groupId": "sandbox_scontainer_toolbox_N27_5" - }, - "container_Sandbox_Design_Stuff_00419": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00395": { - "groupId": "sandbox_scontainer_toolbox_N49_3" - }, - "container_Sandbox_Design_Stuff_00486": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00312": { - "groupId": "sandbox_scontainer_toolbox_N27_5" - }, - "container_Sandbox_Design_Stuff_00485": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00378": { - "groupId": "sandbox_scontainer_toolbox_N44_3" - }, - "container_Sandbox_Design_Stuff_00385": { - "groupId": "sandbox_scontainer_toolbox_N46_3" - }, - "container_Sandbox_Design_Stuff_00421": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00459": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00393": { - "groupId": "sandbox_scontainer_toolbox_N49_3" - }, - "container_Sandbox_Design_Stuff_00430": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00306": { - "groupId": "sandbox_scontainer_toolbox_N25_4" - }, - "container_Sandbox_Design_Stuff_00434": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00394": { - "groupId": "sandbox_scontainer_toolbox_N49_3" - }, - "container_Sandbox_Design_Stuff_00260": { - "groupId": "sandbox_scontainer_toolbox_N16_3" - }, - "container_Sandbox_Design_Stuff_00443": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00251": { - "groupId": "sandbox_scontainer_toolbox_N14_3" - }, - "container_Sandbox_Design_Stuff_00259": { - "groupId": "sandbox_scontainer_toolbox_N16_3" - }, - "container_Sandbox_Design_Stuff_00258": { - "groupId": "sandbox_scontainer_toolbox_N16_3" - }, - "container_Sandbox_Design_Stuff_00224": { - "groupId": "sandbox_scontainer_toolbox_N9_4" - }, - "container_Sandbox_Design_Stuff_00307": { - "groupId": "sandbox_scontainer_toolbox_N25_4" - }, - "container_Sandbox_Design_Stuff_00460": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00386": { - "groupId": "sandbox_scontainer_toolbox_N46_3" - }, - "container_Sandbox_Design_Stuff_00314": { - "groupId": "sandbox_scontainer_toolbox_N27_5" - }, - "container_Sandbox_Design_Stuff_00442": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00423": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00381": { - "groupId": "sandbox_scontainer_toolbox_N45_3" - }, - "container_Sandbox_Design_Stuff_00315": { - "groupId": "sandbox_scontainer_toolbox_N27_5" - }, - "container_Sandbox_Design_Stuff_00427": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00383": { - "groupId": "sandbox_scontainer_toolbox_N45_3" - }, - "container_Sandbox_Design_Stuff_00441": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00316": { - "groupId": "sandbox_scontainer_toolbox_N27_5" - }, - "container_Sandbox_Design_Stuff_00461": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00420": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00227": { - "groupId": "sandbox_scontainer_toolbox_N9_4" - }, - "container_Sandbox_Design_Stuff_00384": { - "groupId": "sandbox_scontainer_toolbox_N46_3" - }, - "container_Sandbox_Design_Stuff_00226": { - "groupId": "sandbox_scontainer_toolbox_N9_4" - }, - "container_Sandbox_Design_Stuff_00019": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00003": { - "groupId": "" - }, - "container_ProfileEditor_00002": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00455": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "Lootable_00004": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00174": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00017": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00006": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00018": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00057": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00009": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00056": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00069": { - "groupId": "" - }, - "Lootable_00010": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00343": { - "groupId": "sandbox_container_supplyBox_lootable_tools_N33_3" - }, - "container_Sandbox_Design_Stuff_00170": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00340": { - "groupId": "sandbox_container_supplyBox_lootable_tools_N32_3" - }, - "container_Sandbox_Design_Stuff_00339": { - "groupId": "sandbox_container_supplyBox_lootable_tools_N32_3" - }, - "container_Sandbox_Design_Stuff_00458": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00341": { - "groupId": "sandbox_container_supplyBox_lootable_tools_N32_3" - }, - "container_Sandbox_Design_Stuff_00222": { - "groupId": "sandbox_container_supplyBox_lootable_food_N8_2" - }, - "container_Sandbox_Design_Stuff_00364": { - "groupId": "sandbox_container_supplyBox_lootable_medicine_N39_2" - }, - "container_Sandbox_Design_Stuff_00478": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00344": { - "groupId": "sandbox_container_supplyBox_lootable_tools_N33_3" - }, - "container_Sandbox_Design_Stuff_00367": { - "groupId": "sandbox_container_supplyBox_lootable_tools_N40_2" - }, - "container_Sandbox_Design_Stuff_00413": { - "groupId": "FromArt_containerGroup" - }, - "00012": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00223": { - "groupId": "sandbox_container_supplyBox_lootable_food_N8_2" - }, - "container_Sandbox_Design_Stuff_00462": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00342": { - "groupId": "sandbox_container_supplyBox_lootable_tools_N33_3" - }, - "container_Sandbox_Design_Stuff_00366": { - "groupId": "sandbox_container_supplyBox_lootable_tools_N40_2" - }, - "container_Sandbox_Design_Stuff_00365": { - "groupId": "sandbox_container_supplyBox_lootable_medicine_N39_2" - }, - "container_Sandbox_Design_Stuff_00152": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00062": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00113": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00150": { - "groupId": "" - }, - "container_ProfileEditor_00001": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00177": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00221": { - "groupId": "sandbox_scontainer_medbag_N7_5" - }, - "container_Sandbox_Design_Stuff_00217": { - "groupId": "sandbox_scontainer_medbag_N7_5" - }, - "container_Sandbox_Design_Stuff_00491": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00437": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00476": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00415": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00219": { - "groupId": "sandbox_scontainer_medbag_N7_5" - }, - "container_Sandbox_Design_Stuff_00220": { - "groupId": "sandbox_scontainer_medbag_N7_5" - }, - "container_Sandbox_Design_Stuff_00218": { - "groupId": "sandbox_scontainer_medbag_N7_5" - }, - "n1": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00467": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00468": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00481": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00479": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00492": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00350": { - "groupId": "sandbox_Plastic_suitcase_140_open_P_N35_4" - }, - "container_Sandbox_Design_Stuff_00402": { - "groupId": "lift_parking_N51_4_sandbox" - }, - "container_Sandbox_Design_Stuff_00349": { - "groupId": "sandbox_Plastic_suitcase_140_open_P_N35_4" - }, - "container_Sandbox_Design_Stuff_00352": { - "groupId": "sandbox_Plastic_suitcase_140_open_P_N35_4" - }, - "container_Sandbox_Design_Stuff_00470": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00351": { - "groupId": "sandbox_Plastic_suitcase_140_open_P_N35_4" - }, - "container_Sandbox_Design_Stuff_00411": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00110": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00171": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00122": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00131": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00139": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00129": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00165": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00106": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00175": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00132": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00119": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00168": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00133": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00163": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00105": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00180": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00036": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00158": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00123": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00038": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00164": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00138": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00140": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00039": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00108": { - "groupId": "" - }, - "container_Test_for_export_00001": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00107": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00037": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00121": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00167": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00124": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00120": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00472": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00474": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00405": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00490": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00471": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00473": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00414": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00429": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00489": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00436": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00475": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00353": { - "groupId": "sandbox_weapon_box_N36_3" - }, - "Lootable_00003": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00431": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00456": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00370": { - "groupId": "sandbox_weapon_box_N41_3" - }, - "container_Sandbox_Design_Stuff_00425": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00477": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00482": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00426": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00354": { - "groupId": "sandbox_weapon_box_N36_3" - }, - "container_Sandbox_Design_Stuff_00447": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00469": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00368": { - "groupId": "sandbox_weapon_box_N41_3" - }, - "container_Sandbox_Design_Stuff_00369": { - "groupId": "sandbox_weapon_box_N41_3" - }, - "container_Sandbox_Design_Stuff_00483": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00417": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00439": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00407": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00355": { - "groupId": "sandbox_weapon_box_N36_3" - }, - "container_Sandbox_Design_Stuff_00465": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00488": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00493": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00424": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00446": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00416": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00466": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00438": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00404": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00428": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00480": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00457": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00484": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00422": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00444": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00347": { - "groupId": "sandbox_Plastic_suitcase_64_open_P_N34_4" - }, - "container_Sandbox_Design_Stuff_00409": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00348": { - "groupId": "sandbox_Plastic_suitcase_64_open_P_N34_4" - }, - "container_Sandbox_Design_Stuff_00346": { - "groupId": "sandbox_Plastic_suitcase_64_open_P_N34_4" - }, - "container_Sandbox_Design_Stuff_00433": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00440": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00401": { - "groupId": "lift_parking_N51_4_sandbox" - }, - "container_Sandbox_Design_Stuff_00418": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00463": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00345": { - "groupId": "sandbox_Plastic_suitcase_64_open_P_N34_4" - }, - "container_Test_for_export_00002": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00004": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00076": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00181": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00002": { - "groupId": "" - }, - "container_ProfileEditor_00004": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00066": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00104": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00094": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00464": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00408": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00234": { - "groupId": "sandbox_bag_sport_N11_6" - }, - "container_Sandbox_Design_Stuff_00400": { - "groupId": "lift_parking_N51_4_sandbox" - }, - "container_Sandbox_Design_Stuff_00432": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00097": { - "groupId": "" - } - } -} \ No newline at end of file diff --git a/project/assets/database/locations/sandbox_high/allExtracts.json b/project/assets/database/locations/sandbox_high/allExtracts.json deleted file mode 100644 index a797a20e..00000000 --- a/project/assets/database/locations/sandbox_high/allExtracts.json +++ /dev/null @@ -1,163 +0,0 @@ -[ - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 5000, - "CountPve": 0, - "EntryPoints": "west,east", - "EventAvailable": false, - "ExfiltrationTime": 60.0, - "ExfiltrationTimePVE": 60.0, - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Sandbox_VExit", - "PassageRequirement": "TransferItem", - "PlayersCount": 4, - "PlayersCountPVE": 4, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Item", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "east", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Unity_free_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "west,east", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "SharedTimer", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Scav_coop_exit", - "PassageRequirement": "ScavCooperation", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Cooperate", - "Side": "Coop" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "west", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Nakatani_stairs_free_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "west,east", - "EventAvailable": false, - "ExfiltrationTime": 6.0, - "ExfiltrationTimePVE": 6.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Sniper_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "east", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Unity_free_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "west", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Nakatani_stairs_free_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - } -] \ No newline at end of file diff --git a/project/assets/database/locations/sandbox_high/base.json b/project/assets/database/locations/sandbox_high/base.json deleted file mode 100644 index 69a25897..00000000 --- a/project/assets/database/locations/sandbox_high/base.json +++ /dev/null @@ -1,6406 +0,0 @@ -{ - "AccessKeys": [], - "AccessKeysPvE": [], - "AirdropParameters": [ - { - "AirdropPointDeactivateDistance": 50, - "MinPlayersCountToSpawnAirdrop": 6, - "PlaneAirdropChance": 0.1, - "PlaneAirdropCooldownMax": 800, - "PlaneAirdropCooldownMin": 700, - "PlaneAirdropEnd": 1500, - "PlaneAirdropMax": 1, - "PlaneAirdropStartMax": 900, - "PlaneAirdropStartMin": 300, - "UnsuccessfulTryPenalty": 600 - } - ], - "Area": 0, - "AveragePlayTime": 35, - "AveragePlayerLevel": 40, - "Banners": [], - "BossLocationSpawn": [ - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "2", - "BossEscortDifficult": "normal", - "BossEscortType": "followerKolontaySecurity", - "BossName": "bossKolontay", - "BossPlayer": false, - "BossZone": "ZoneSandbox", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve", - "regular" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 44, - "BossDifficult": "normal", - "BossEscortAmount": "3,4", - "BossEscortDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossName": "sectantPriest", - "BossPlayer": false, - "BossZone": "ZoneSandbox", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve", - "regular" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - } - ], - "BotAssault": 100, - "BotEasy": 0, - "BotHard": 50, - "BotImpossible": 0, - "BotLocationModifier": { - "AccuracySpeed": 1, - "AdditionalHostilitySettings": [ - { - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 75, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcBEAR", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - }, - { - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 90, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcUSEC", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - } - ], - "DistToActivate": 260, - "DistToActivatePvE": 260, - "DistToSleep": 300, - "DistToSleepPvE": 300, - "GainSight": 1, - "MarksmanAccuratyCoef": 1, - "MaxExfiltrationTime": 1500, - "MinExfiltrationTime": 1200, - "Scattering": 1, - "VisibleDistance": 1 - }, - "BotMarksman": 0, - "BotMax": 13, - "BotMaxPlayer": 10, - "BotMaxPvE": 24, - "BotMaxTimePlayer": 1000, - "BotNormal": 50, - "BotSpawnCountStep": 3, - "BotSpawnPeriodCheck": 14, - "BotSpawnTimeOffMax": 25, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOnMax": 380, - "BotSpawnTimeOnMin": 290, - "BotStart": 120, - "BotStartPlayer": 1, - "BotStop": 1800, - "Description": "The downtown Tarkov with banks, malls, hotels and all the other things a striving modern city could have needed.", - "DisabledForScav": false, - "DisabledScavExits": "", - "EnableCoop": true, - "Enabled": true, - "EscapeTimeLimit": 35, - "EscapeTimeLimitCoop": 30, - "EscapeTimeLimitPVE": 35, - "Events": { - "Halloween2024": { - "CrowdAttackBlockRadius": 100, - "CrowdAttackSpawnParams": [ - { - "Difficulty": "easy", - "Role": "infectedAssault", - "Weight": 20 - }, - { - "Difficulty": "normal", - "Role": "infectedAssault", - "Weight": 80 - }, - { - "Difficulty": "hard", - "Role": "infectedAssault", - "Weight": 40 - }, - { - "Difficulty": "easy", - "Role": "infectedPmc", - "Weight": 5 - }, - { - "Difficulty": "normal", - "Role": "infectedPmc", - "Weight": 35 - }, - { - "Difficulty": "hard", - "Role": "infectedPmc", - "Weight": 20 - }, - { - "Difficulty": "easy", - "Role": "infectedCivil", - "Weight": 15 - }, - { - "Difficulty": "normal", - "Role": "infectedCivil", - "Weight": 60 - }, - { - "Difficulty": "hard", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "easy", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedLaborant", - "Weight": 0 - } - ], - "CrowdCooldownPerPlayerSec": 300, - "CrowdsLimit": 2, - "InfectedLookCoeff": 2, - "InfectionPercentage": 0, - "MaxCrowdAttackSpawnLimit": 18, - "MinInfectionPercentage": 0, - "MinSpawnDistToPlayer": 50, - "TargetPointSearchRadiusLimit": 150, - "ZombieCallDeltaRadius": 20, - "ZombieCallPeriodSec": 1, - "ZombieCallRadiusLimit": 100, - "ZombieMultiplier": 5 - } - }, - "ExitZones": "5c82534488a45046451a2386", - "ForceOnlineRaidInPVE": false, - "GenerateLocalLootCache": true, - "GlobalContainerChanceModifier": 1, - "GlobalLootChanceModifier": 0.65, - "GlobalLootChanceModifierPvE": 0.95, - "IconX": 760, - "IconY": 735, - "Id": "Sandbox_high", - "Insurance": true, - "IsSecret": false, - "Locked": false, - "Loot": [], - "MatchMakerMinPlayersByWaitTime": [ - { - "minPlayers": 7, - "time": 60 - }, - { - "minPlayers": 6, - "time": 70 - }, - { - "minPlayers": 5, - "time": 120 - }, - { - "minPlayers": 4, - "time": 180 - }, - { - "minPlayers": 3, - "time": 250 - }, - { - "minPlayers": 2, - "time": 330 - }, - { - "minPlayers": 1, - "time": 420 - } - ], - "MaxBotPerZone": 5, - "MaxCoopGroup": 20, - "MaxDistToFreePoint": 220, - "MaxPlayers": 12, - "MinDistToExitPoint": 10, - "MinDistToFreePoint": 60, - "MinMaxBots": [], - "MinPlayerLvlAccessKeys": 0, - "MinPlayers": 9, - "Name": "Sandbox", - "NewSpawn": true, - "NewSpawnForPlayers": true, - "NonWaveGroupScenario": { - "Chance": 50, - "Enabled": true, - "MaxToBeGroup": 3, - "MinToBeGroup": 2 - }, - "OcculsionCullingEnabled": false, - "OfflineNewSpawn": true, - "OfflineOldSpawn": true, - "OldSpawn": true, - "OpenZones": "", - "PlayersRequestCount": -1, - "PmcMaxPlayersInGroup": 5, - "Preview": { - "path": "", - "rcid": "" - }, - "RequiredPlayerLevelMax": 100, - "RequiredPlayerLevelMin": 0, - "Rules": "Normal", - "SafeLocation": false, - "ScavMaxPlayersInGroup": 4, - "Scene": { - "path": "maps/sandbox_high_preset.bundle", - "rcid": "sandbox_high.scenespreset.asset" - }, - "SpawnPointParams": [ - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0344832c-a6f2-4c58-8d89-85e9d451a7ed", - "Infiltration": "west", - "Position": { - "x": 72.81, - "y": 14.18, - "z": 5.44599962 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0524be03-bcd4-4e28-98d4-f477dd0e550d", - "Infiltration": "east", - "Position": { - "x": 65.03, - "y": 14.722, - "z": 161.741 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0b110691-b8a9-4020-9ea1-910386dde586", - "Infiltration": "east", - "Position": { - "x": 127.158, - "y": 23.21, - "z": 187.909 - }, - "Rotation": 279.416534, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0d02402a-e8d7-452b-b97b-12decb732c58", - "Infiltration": "", - "Position": { - "x": 45.6098022, - "y": 23.30565, - "z": -99.78419 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0dadcf0c-b3b8-4837-a16e-12ef201c21e1", - "Infiltration": "east", - "Position": { - "x": 67.59, - "y": 14.18, - "z": 104.54 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0e49e1f6-fc41-4146-b97b-37558e88784b", - "Infiltration": "", - "Position": { - "x": 73.69881, - "y": 14.1636515, - "z": 117.034813 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0eebe151-c53b-417e-a349-18c070ce5dac", - "Infiltration": "west", - "Position": { - "x": 137.37, - "y": 22.74, - "z": -70.18 - }, - "Rotation": 298.9875, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "0fa33361-e813-47b1-ab0a-bf9d1e3e64e6", - "Infiltration": "", - "Position": { - "x": 26.6068039, - "y": 23.86865, - "z": -26.9641876 - }, - "Rotation": 220.881927, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "10a75815-d786-43e2-9639-6b94071433f8", - "Infiltration": "east", - "Position": { - "x": 83.44798, - "y": 22.8000011, - "z": 11.6839752 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "119b220b-ec7f-41a8-bdb2-eeb831e2c17b", - "Infiltration": "west", - "Position": { - "x": 74.04802, - "y": 22.987999, - "z": 269.953979 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "12aac819-1498-4da3-a065-ea4b0fd1c730", - "Infiltration": "", - "Position": { - "x": -12.6441956, - "y": 23.8186512, - "z": -59.9541855 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "14e76203-f6d3-49d3-bb5e-300ff6bd3773", - "Infiltration": "west", - "Position": { - "x": 121.832, - "y": 22.796, - "z": -1.133 - }, - "Rotation": 297.1408, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "16b9cd7d-ebea-41eb-8c9f-fe01aa2c9245", - "Infiltration": "east", - "Position": { - "x": 111.243, - "y": 23.193, - "z": 174.479 - }, - "Rotation": 25.0808964, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "181f7000-df70-4bc7-bff3-a709291c907f", - "Infiltration": "east", - "Position": { - "x": 81.838, - "y": 22.8000011, - "z": 11.7840118 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1ae5dc66-b54c-4584-bc24-174f5b3194ec", - "Infiltration": "west", - "Position": { - "x": 77.06801, - "y": 22.987999, - "z": 269.114 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1b65286c-52e8-48ef-a369-e89bfd0ab95e", - "Infiltration": "east", - "Position": { - "x": 49.8150177, - "y": 22.777998, - "z": -78.392 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1c2fe835-f486-4f7e-847d-9ff1dfadc5c5", - "Infiltration": "east", - "Position": { - "x": 180.9, - "y": 16.27, - "z": 114.89 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1d60dfbb-d470-4557-8309-deb68d3cd7a4", - "Infiltration": "west", - "Position": { - "x": 184.961, - "y": 17.209, - "z": -8.589 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "1de8f1e8-4959-4fcc-815e-92198ecbda38", - "Infiltration": "", - "Position": { - "x": 44.2268066, - "y": 23.30565, - "z": -104.874191 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2070aa0d-86a7-4959-b14f-5013c291382b", - "Infiltration": "", - "Position": { - "x": -15.6471939, - "y": 23.87565, - "z": 101.716812 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2131e5a0-3321-4b18-95ee-8d5430d4f027", - "Infiltration": "", - "Position": { - "x": 13.4328041, - "y": 23.48965, - "z": 157.559814 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "222800ad-50c8-4c75-b94b-ff1ec3d807d0", - "Infiltration": "west", - "Position": { - "x": 73.647995, - "y": 22.987999, - "z": 262.904 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2251a0dd-f096-483c-88c6-d8abe1f0a8d8", - "Infiltration": "east", - "Position": { - "x": 117.106, - "y": 28.963, - "z": 150.689 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "22c535e6-6d49-46bd-9009-e688aace63d1", - "Infiltration": "east", - "Position": { - "x": 38.43, - "y": 23.44, - "z": 149.07 - }, - "Rotation": 150.727722, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "22e0ac83-e96b-4485-8be7-75dac31afa4a", - "Infiltration": "", - "Position": { - "x": 180.1868, - "y": 16.21865, - "z": 128.1658 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2309df18-7c49-42e5-b768-32f3b0a61134", - "Infiltration": "", - "Position": { - "x": 17.0218048, - "y": 24.20565, - "z": 66.79081 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "23ed41a9-6210-4cd3-8997-0cfc770c0eb3", - "Infiltration": "", - "Position": { - "x": 96.2568054, - "y": 22.87865, - "z": -85.19419 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2790d68f-c087-45d2-8b63-660e26858b34", - "Infiltration": "east", - "Position": { - "x": 143.1, - "y": 23.3, - "z": 248.83 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "287bf35f-5cdc-44dc-97b6-c035d5054bfa", - "Infiltration": "west", - "Position": { - "x": 82.34401, - "y": 22.8000011, - "z": 16.0929718 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2cb8b960-b107-4eea-8ddc-0d61165af3b7", - "Infiltration": "", - "Position": { - "x": -49.8631973, - "y": 24.19465, - "z": 42.17581 - }, - "Rotation": 101.35038, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "2e02fd39-ee4a-4c26-bb44-12324b433a02", - "Infiltration": "east", - "Position": { - "x": 49.6950226, - "y": 22.778, - "z": -81.59199 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "30b78436-c8cc-4449-9339-7b552418769d", - "Infiltration": "", - "Position": { - "x": 98.94981, - "y": 22.87865, - "z": -85.03119 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "31fca074-b125-48d7-9beb-4cc6f67c82d2", - "Infiltration": "east", - "Position": { - "x": 110.661, - "y": 23.193, - "z": 171.344 - }, - "Rotation": 37.9340668, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "36a3716c-e3f2-43c7-8b98-ea68c59f8238", - "Infiltration": "west", - "Position": { - "x": -8.020001, - "y": 23.86, - "z": -4.959993 - }, - "Rotation": 29.2678757, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "39383593-1724-4297-aee0-d941b277d3a7", - "Infiltration": "", - "Position": { - "x": 58.3678055, - "y": 23.4366512, - "z": 229.1268 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "3b54601a-2e4b-4991-988e-962f1ee45668", - "Infiltration": "west", - "Position": { - "x": 77.81801, - "y": 22.8000011, - "z": 13.173996 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "3c5c66f2-5ce2-443f-b962-8938f67bf2b4", - "Infiltration": "west", - "Position": { - "x": 1.43, - "y": 23.89, - "z": -60.42 - }, - "Rotation": 15.3505669, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "3d869992-11e2-4ebf-9d24-f160b612ed17", - "Infiltration": "east", - "Position": { - "x": 112.67, - "y": 23.193, - "z": 175.8 - }, - "Rotation": 25.0808964, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "3da0e675-4272-4ae1-8b71-12ad2b887a66", - "Infiltration": "", - "Position": { - "x": 164.696808, - "y": 22.768652, - "z": -85.8841858 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "3ea3dfd6-f940-4036-b093-3cfc66db97e0", - "Infiltration": "", - "Position": { - "x": 29.9268036, - "y": 23.86865, - "z": -25.2141876 - }, - "Rotation": 220.881927, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "412cc11b-b2ec-4d7b-bfbe-9691162949b7", - "Infiltration": "east", - "Position": { - "x": 67.764, - "y": 13.981, - "z": 163.128 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "419a0f20-e32e-4f17-a526-675314485814", - "Infiltration": "west", - "Position": { - "x": -0.66, - "y": 23.89, - "z": -60.43 - }, - "Rotation": 15.3505669, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4274c09b-9544-45e0-aa8a-011b6e929b70", - "Infiltration": "west", - "Position": { - "x": 73.06999, - "y": 14.18, - "z": 2.27599764 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "442298dc-403c-4550-9c2f-60398a638c07", - "Infiltration": "west", - "Position": { - "x": 73.09, - "y": 14.147, - "z": -56.52 - }, - "Rotation": 94.1142349, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4502c5d8-63c5-4813-be5f-f0c7e39276b0", - "Infiltration": "", - "Position": { - "x": 71.7568054, - "y": 14.1386509, - "z": 0.6758108 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "456c0186-9e97-4de1-a8a0-8def7fb2e8b5", - "Infiltration": "", - "Position": { - "x": 36.1368027, - "y": 22.6686516, - "z": 334.6858 - }, - "Rotation": 158.465, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "45bf1ce6-cab7-4b6b-a420-aefc135a942a", - "Infiltration": "east", - "Position": { - "x": 64.94, - "y": 14.14, - "z": 103.31 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "469bf936-cee9-4b9c-9fa9-54ccdc5467f2", - "Infiltration": "west", - "Position": { - "x": 139.255, - "y": 14.088, - "z": 65.609 - }, - "Rotation": 281.497131, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "46cb5fbc-3d56-45a1-a6ab-18b22b51cf15", - "Infiltration": "east", - "Position": { - "x": 36.95, - "y": 23.47, - "z": 146.98 - }, - "Rotation": 142.971115, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4a3e3ae1-e6fb-442f-99c6-f74b25b06a28", - "Infiltration": "east", - "Position": { - "x": 127.454, - "y": 23.204, - "z": 196.106 - }, - "Rotation": 279.416534, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4ad4b25c-70f0-47a0-84fd-f8dc685cf399", - "Infiltration": "west", - "Position": { - "x": -6.32000065, - "y": 23.86, - "z": -2.03999472 - }, - "Rotation": 29.2678757, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4e5dd2d4-cbee-4f97-8f88-18b9a7897e72", - "Infiltration": "east", - "Position": { - "x": 127.266, - "y": 23.199, - "z": 186.033 - }, - "Rotation": 279.416534, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4e876370-2396-4517-81c1-c535811d18e0", - "Infiltration": "east", - "Position": { - "x": 54.8150177, - "y": 22.778, - "z": -81.1619949 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4f865c11-d533-4fce-9833-fe41a6cb52af", - "Infiltration": "east", - "Position": { - "x": 83.088, - "y": 22.828, - "z": 17.4640045 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "4fb0d413-cf19-4580-8217-b2d6ca431e91", - "Infiltration": "west", - "Position": { - "x": 83.27998, - "y": 22.8000011, - "z": 18.81697 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5051d4e9-291a-4384-9557-e10d149f3282", - "Infiltration": "west", - "Position": { - "x": 44.67, - "y": 23.276, - "z": -102.55 - }, - "Rotation": 323.255859, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "52521917-58bb-412f-b509-ed69191bf6a3", - "Infiltration": "east", - "Position": { - "x": 113.965996, - "y": 23.448, - "z": 269.982 - }, - "Rotation": 197.8527, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "551f5ea8-4bea-474d-a3d1-0af1e507aa73", - "Infiltration": "west", - "Position": { - "x": 75.1199951, - "y": 14.18, - "z": 6.036 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "564c09fb-f464-4c30-b61b-4cc1943808be", - "Infiltration": "east", - "Position": { - "x": 102.15, - "y": 28.1424046, - "z": 311.83 - }, - "Rotation": 129.322372, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "57ee16fe-ea8b-42ff-b943-0e57f8319f94", - "Infiltration": "", - "Position": { - "x": 71.866806, - "y": 14.1386509, - "z": -13.0741882 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5a4e21b9-8234-45a5-b24a-1cd71ffc9d4a", - "Infiltration": "east", - "Position": { - "x": 117.61, - "y": 28.963, - "z": 146.43 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5b613644-fa73-4c37-a691-6ec62df67349", - "Infiltration": "", - "Position": { - "x": -60.6341934, - "y": 24.19465, - "z": 43.00981 - }, - "Rotation": 101.35038, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "DelayToCanSpawnSec": 1700, - "Id": "5b9a06d1-1c5c-42e1-974a-bb8c6864ab16", - "Infiltration": "", - "Position": { - "x": 104.531586, - "y": 33.44029, - "z": 107.521042 - }, - "Rotation": 247.765274, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5caf5e1b-0113-41fc-9867-007e37ffe906", - "Infiltration": "west", - "Position": { - "x": 77.647995, - "y": 22.8000011, - "z": 11.443985 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5cb1309d-05b9-4043-ba3a-1ef53d52c012", - "Infiltration": "east", - "Position": { - "x": 40.19, - "y": 23.45, - "z": 148.61 - }, - "Rotation": 171.041977, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5d711f09-edc9-4ec1-94f8-2e1765929dbd", - "Infiltration": "west", - "Position": { - "x": 73.815, - "y": 14.147, - "z": -54.394 - }, - "Rotation": 94.1142349, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "5fa59046-4e17-408e-8531-14766ae4a7c4", - "Infiltration": "east", - "Position": { - "x": 117.49, - "y": 28.963, - "z": 148.6 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "612fd960-fdd6-422b-9b5b-8161d4e5ec12", - "Infiltration": "west", - "Position": { - "x": 72.331, - "y": 14.147, - "z": -51.719 - }, - "Rotation": 94.1142349, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "615cd971-8d0a-4204-ad0b-5db691d1bf90", - "Infiltration": "", - "Position": { - "x": 22.2868042, - "y": 23.53865, - "z": 255.1308 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "61aba24c-79d9-445f-8a1c-f887b36a8417", - "Infiltration": "west", - "Position": { - "x": 70.188, - "y": 22.818, - "z": 269.214 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "61bc3b0f-bbb7-41a6-a3cb-fc647cb4d57d", - "Infiltration": "west", - "Position": { - "x": 137.174, - "y": 14.088, - "z": 67.36 - }, - "Rotation": 281.497131, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "62f5b14d-cb51-4529-b572-f5a8f5815bb5", - "Infiltration": "east", - "Position": { - "x": 85.92601, - "y": 22.828001, - "z": 18.5319977 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "65f10e3a-3f0c-415a-82c9-65c494071117", - "Infiltration": "east", - "Position": { - "x": 131.006, - "y": 23.45, - "z": 268.826 - }, - "Rotation": 235.117432, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "677581fc-5c9f-4e13-913d-e32798dfd61c", - "Infiltration": "west", - "Position": { - "x": 73.48802, - "y": 22.987999, - "z": 263.994019 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6a0d3b1c-7556-467f-b399-77019435bc49", - "Infiltration": "", - "Position": { - "x": 180.9668, - "y": 16.21865, - "z": 130.085815 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6a18e621-14cc-4de5-83e9-4dbb5d57db3d", - "Infiltration": "east", - "Position": { - "x": 180.8, - "y": 16.21, - "z": 117.5 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6a2f97cf-0773-4623-9ff4-cf2d122fd162", - "Infiltration": "", - "Position": { - "x": 137.5668, - "y": 14.1126509, - "z": 61.81581 - }, - "Rotation": 249.33786, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6a4b6afe-e215-4d9b-8d1e-4c2f7187baef", - "Infiltration": "west", - "Position": { - "x": 46.38, - "y": 23.276, - "z": -101.48 - }, - "Rotation": 323.255859, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6acdf3c0-2c89-4824-97b9-7d5d10969670", - "Infiltration": "east", - "Position": { - "x": 64.41, - "y": 14.702, - "z": 164.414 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6b277e4b-28e0-4259-8d2d-73979f7b0c3d", - "Infiltration": "", - "Position": { - "x": 175.106812, - "y": 16.9956512, - "z": 2.17581081 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6b4a840c-fc42-4b8c-bc68-04d7f6c2113a", - "Infiltration": "east", - "Position": { - "x": 151.47, - "y": 22.85, - "z": 243.36 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6bb1d97d-c152-4467-b67b-bcd052438a96", - "Infiltration": "east", - "Position": { - "x": 180.58, - "y": 16.2, - "z": 123.16 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6e3ad315-21c1-4816-84f5-e6d5ad0568af", - "Infiltration": "west", - "Position": { - "x": 71.76799, - "y": 22.987999, - "z": 270.554016 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6e7a6c9c-ce97-4a25-80c1-e99a6475b95b", - "Infiltration": "", - "Position": { - "x": 130.6398, - "y": 14.1126509, - "z": 63.12081 - }, - "Rotation": 249.33786, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "6f70381f-dcd2-4b4b-8f7e-27a787298af6", - "Infiltration": "west", - "Position": { - "x": -4.45, - "y": 23.89, - "z": -58.9 - }, - "Rotation": 15.3505669, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "70e7378e-9430-4520-8b5d-26b6635a3991", - "Infiltration": "", - "Position": { - "x": 22.8788033, - "y": 23.53865, - "z": 253.499817 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7125b623-b024-4673-8568-358d694cba43", - "Infiltration": "", - "Position": { - "x": 182.9868, - "y": 16.21865, - "z": 127.555809 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "71e27ce2-54ef-4070-942c-c8a136e81fcf", - "Infiltration": "east", - "Position": { - "x": 113.345993, - "y": 23.448, - "z": 273.162 - }, - "Rotation": 197.8527, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "734798e9-93cc-4239-93eb-8f23476b1f3d", - "Infiltration": "west", - "Position": { - "x": 137.609, - "y": 14.088, - "z": 63.101 - }, - "Rotation": 281.497131, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "74ce5970-afa4-4bfa-9a57-5f1725adb6f6", - "Infiltration": "west", - "Position": { - "x": 73.57, - "y": 14.147, - "z": -48.848 - }, - "Rotation": 94.1142349, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "74da28f8-d773-4ede-9c03-83811cf9563f", - "Infiltration": "west", - "Position": { - "x": 74.271, - "y": 14.147, - "z": -51.551 - }, - "Rotation": 94.1142349, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "74e5a956-fc73-4c7a-99db-0b1795d14b61", - "Infiltration": "", - "Position": { - "x": 109.116806, - "y": 22.70865, - "z": 234.205811 - }, - "Rotation": 283.99, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "75106d88-833e-4357-bd4c-6bbf41d6e828", - "Infiltration": "", - "Position": { - "x": 26.1368027, - "y": 23.86865, - "z": -24.01419 - }, - "Rotation": 220.881927, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "751ed8cb-d9c5-4c3a-ad31-7ae979f66316", - "Infiltration": "east", - "Position": { - "x": 52.9480133, - "y": 22.918, - "z": -79.646 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "75f2a001-06c8-40a2-99f0-715c75b38138", - "Infiltration": "west", - "Position": { - "x": 135.18, - "y": 14.088, - "z": 66.07 - }, - "Rotation": 281.497131, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "76076875-b690-43f3-8917-68f7b077742f", - "Infiltration": "east", - "Position": { - "x": 117.819, - "y": 28.963, - "z": 152.665 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7650aa3e-7ab6-4e76-9b71-af60211b4ad1", - "Infiltration": "west", - "Position": { - "x": 143.83, - "y": 22.74, - "z": -71.39 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7689966a-e33d-45af-bec8-7f4161438b74", - "Infiltration": "east", - "Position": { - "x": 133.66, - "y": 23.45, - "z": 268.62 - }, - "Rotation": 235.117432, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "770f13e8-a6c0-4388-b602-20820a469533", - "Infiltration": "", - "Position": { - "x": -13.1111984, - "y": 23.87565, - "z": 98.92881 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "780ef2dd-75fc-4486-abd1-42d9aaaae097", - "Infiltration": "", - "Position": { - "x": 18.5388031, - "y": 24.20565, - "z": 73.82181 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "799506e4-9eb5-4d09-ada1-84114926820f", - "Infiltration": "", - "Position": { - "x": 22.6368027, - "y": 23.53865, - "z": 257.9848 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7abcf691-7aa8-4dff-a592-5cd860701676", - "Infiltration": "west", - "Position": { - "x": 121.494, - "y": 22.834, - "z": -2.778 - }, - "Rotation": 297.1408, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7b409c4d-7183-47b6-9782-73e584e1b773", - "Infiltration": "", - "Position": { - "x": -10.7931976, - "y": 23.982048, - "z": 16.7358112 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7b81d205-9028-4a06-81ce-b1d73922fce0", - "Infiltration": "east", - "Position": { - "x": 115.777, - "y": 23.426, - "z": 274.272 - }, - "Rotation": 197.8527, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "7f0d4fce-32a8-4d9a-ac19-d27ab617a45a", - "Infiltration": "east", - "Position": { - "x": 132.107, - "y": 23.45, - "z": 270.349 - }, - "Rotation": 235.117432, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "811063e9-7b4c-4e88-b571-dda14fc5c422", - "Infiltration": "east", - "Position": { - "x": 111.826, - "y": 23.448, - "z": 269.082 - }, - "Rotation": 197.8527, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "818d8bb3-2bb9-4323-be8a-f03b1cfc2137", - "Infiltration": "west", - "Position": { - "x": 143.33, - "y": 22.74, - "z": -69.41 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8464e389-d91c-45d4-9e99-5b61d5bcdc69", - "Infiltration": "east", - "Position": { - "x": 52.795, - "y": 22.778, - "z": -76.65201 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "894397aa-eb45-4371-a2da-dcaa55bbc2df", - "Infiltration": "east", - "Position": { - "x": 111.535995, - "y": 23.448, - "z": 271.632 - }, - "Rotation": 197.8527, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8991994e-2dd2-4335-8fb9-5f906a80c0f8", - "Infiltration": "west", - "Position": { - "x": 179.893, - "y": 17.01, - "z": -6.997 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8a478f38-07d3-4e3d-8322-d2f1f6137aff", - "Infiltration": "east", - "Position": { - "x": 99.644, - "y": 28.1424046, - "z": 314.177 - }, - "Rotation": 129.322372, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8aa4f53e-1ecd-4bda-900a-3c650e197c8e", - "Infiltration": "east", - "Position": { - "x": 134.04, - "y": 23.45, - "z": 271.91 - }, - "Rotation": 235.117432, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8b301a0d-e694-4f24-b938-32329a5084f5", - "Infiltration": "east", - "Position": { - "x": 87.17799, - "y": 22.809, - "z": 17.154007 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8b9de2d8-449e-4b90-949b-2516d13b76c2", - "Infiltration": "", - "Position": { - "x": 32.7768021, - "y": 22.6686516, - "z": 335.6558 - }, - "Rotation": 158.465, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8e2cf7d7-6b81-4686-be31-1f169492165f", - "Infiltration": "east", - "Position": { - "x": 144.95, - "y": 22.949, - "z": 253.29 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8e58dc42-2aa4-4e7f-9710-6bf6de6503c6", - "Infiltration": "", - "Position": { - "x": 46.5608063, - "y": 23.30565, - "z": -102.121193 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8e70071b-0949-4f6a-b106-dcc689714e07", - "Infiltration": "east", - "Position": { - "x": 109.208, - "y": 23.193, - "z": 174.245 - }, - "Rotation": 24.08007, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "8f3bef35-3e52-47ec-a072-02b3ad071433", - "Infiltration": "west", - "Position": { - "x": 183.821, - "y": 17.209, - "z": -6.948 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "93427305-4f03-44d6-8690-7c24dbbb4128", - "Infiltration": "east", - "Position": { - "x": 52.8650055, - "y": 22.778, - "z": -75.272 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "95a6171d-e923-4455-b040-18e2a1279197", - "Infiltration": "", - "Position": { - "x": 72.74081, - "y": 14.1386509, - "z": 29.96981 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "96c84440-4cc8-410e-afd2-15dc920dca8b", - "Infiltration": "east", - "Position": { - "x": 147.74, - "y": 23.3, - "z": 253.63 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "96c8f67a-d082-46d9-b790-51ab1548fbb9", - "Infiltration": "", - "Position": { - "x": 96.9698, - "y": 22.87865, - "z": -86.9261856 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "97185451-3b24-4e74-baa1-6a706f09c520", - "Infiltration": "west", - "Position": { - "x": 80.90199, - "y": 22.8000011, - "z": 18.7039948 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "97513a7b-d467-454a-8232-2e77f3e386ef", - "Infiltration": "west", - "Position": { - "x": 70.468, - "y": 23.018, - "z": 266.003967 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "97a6313d-43e4-4f37-bfdd-faa77bb35cd2", - "Infiltration": "", - "Position": { - "x": 57.486805, - "y": 14.0686512, - "z": -33.82419 - }, - "Rotation": 57.4887657, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "989cfb81-3a2e-4cef-b3c1-a2a914dceaad", - "Infiltration": "west", - "Position": { - "x": 119.189, - "y": 22.834, - "z": -2.685 - }, - "Rotation": 297.1408, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "999c413b-05eb-4c30-a4ef-4e0c95c838ef", - "Infiltration": "west", - "Position": { - "x": 79.97801, - "y": 22.818, - "z": 270.224 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "999e5dd0-ace8-4689-87aa-fbcd9295a940", - "Infiltration": "", - "Position": { - "x": 57.486805, - "y": 23.4366512, - "z": 229.5658 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "9c0e31a8-2008-41ef-b42b-b8888cc523ba", - "Infiltration": "west", - "Position": { - "x": 142.85, - "y": 22.74, - "z": -67.64 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "9cc6b2c3-948c-4902-8344-fa12d0c0e700", - "Infiltration": "west", - "Position": { - "x": 135.85, - "y": 14.088, - "z": 68.92 - }, - "Rotation": 281.497131, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "9dd4bcc0-062e-45a4-9346-2b488ed4ad72", - "Infiltration": "east", - "Position": { - "x": 86.31801, - "y": 22.809, - "z": 14.1439972 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "9f6cbe96-7d68-45bf-8f4b-4ccac2550961", - "Infiltration": "west", - "Position": { - "x": 76.378006, - "y": 23.018, - "z": 267.274 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "9fbe814b-9217-4d81-84c2-cc43e67f7bda", - "Infiltration": "east", - "Position": { - "x": 117.413, - "y": 28.963, - "z": 154.495 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "a05719d7-1729-4d60-8faa-34b70da90a6a", - "Infiltration": "", - "Position": { - "x": 133.4458, - "y": 14.1126509, - "z": 66.43681 - }, - "Rotation": 249.33786, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "a5654bc0-d8a6-4897-9f9a-768c4af478c1", - "Infiltration": "west", - "Position": { - "x": -8.37, - "y": 23.86, - "z": -0.3899932 - }, - "Rotation": 29.2678757, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "a6b53f7f-62d9-49b1-b597-789714070192", - "Infiltration": "", - "Position": { - "x": 72.76581, - "y": 14.2016516, - "z": 113.208809 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "a8b2e367-82fd-4e64-a37c-906955df399f", - "Infiltration": "east", - "Position": { - "x": 67.72, - "y": 13.981, - "z": 164.591 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "a9f2fbc7-fa61-4538-9e91-39ca505f86e7", - "Infiltration": "west", - "Position": { - "x": -11.19, - "y": 23.86, - "z": -2.8199935 - }, - "Rotation": 29.2678757, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b0126d65-ba76-45ad-b25e-32f4f3509904", - "Infiltration": "east", - "Position": { - "x": 83.84801, - "y": 22.8399982, - "z": 19.673996 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b049c6f8-afb9-42f9-9591-2f265fef2097", - "Infiltration": "west", - "Position": { - "x": 81.33101, - "y": 22.8000011, - "z": 14.4269867 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b0683b56-8eaa-4f9a-86aa-3165b54b4ce8", - "Infiltration": "", - "Position": { - "x": -15.4731979, - "y": 23.8186512, - "z": -56.62419 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b2d85104-d574-4482-8962-9dbeae1221f5", - "Infiltration": "west", - "Position": { - "x": 74.228, - "y": 14.18, - "z": 8.865999 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b5e02957-b03d-4295-b05d-9be69f6f2e82", - "Infiltration": "east", - "Position": { - "x": 67.816, - "y": 13.981, - "z": 166.22 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b7183870-a16c-4429-a8e7-2c2710fe3b57", - "Infiltration": "east", - "Position": { - "x": 103.8, - "y": 28.1424046, - "z": 316.122 - }, - "Rotation": 129.322372, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "b96df3dc-23f2-4e1d-8a9a-9fbe05a94f47", - "Infiltration": "east", - "Position": { - "x": 83.998, - "y": 22.828001, - "z": 16.05397 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ba5a0138-2a24-4ceb-bdb2-92d351fec342", - "Infiltration": "west", - "Position": { - "x": 42.021, - "y": 23.276, - "z": -104.487 - }, - "Rotation": 323.255859, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "DelayToCanSpawnSec": 1700, - "Id": "ba9f6749-8b4d-4503-8b80-7f2531422ad2", - "Infiltration": "", - "Position": { - "x": 61.6479034, - "y": 35.4903679, - "z": 133.8455 - }, - "Rotation": 247.765274, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c081b15d-fb2d-4a02-afeb-b0664e2bdb02", - "Infiltration": "east", - "Position": { - "x": 38.7, - "y": 23.48, - "z": 147.19 - }, - "Rotation": 151.165863, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c106dee0-2b28-461f-8d43-1ca961ff1d04", - "Infiltration": "east", - "Position": { - "x": 127.225, - "y": 23.225, - "z": 192.607 - }, - "Rotation": 279.416534, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c1e9c3ad-15c5-418f-a400-b61028956f4a", - "Infiltration": "", - "Position": { - "x": -60.1112, - "y": 24.19465, - "z": 37.58181 - }, - "Rotation": 4.24832535, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c30c87ca-d789-4b93-9703-07e4a2c6f15a", - "Infiltration": "", - "Position": { - "x": 162.2768, - "y": 22.768652, - "z": -86.23419 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c36b37b1-e654-45b8-a921-4864d1a325a4", - "Infiltration": "west", - "Position": { - "x": 79.78801, - "y": 22.8000011, - "z": 11.7740021 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c3f027bf-4fbc-4b01-8ed8-5f98b7689863", - "Infiltration": "", - "Position": { - "x": 74.6868057, - "y": 13.9586515, - "z": 160.9158 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c57138e2-3964-473d-b8c8-cfca4c12c6b7", - "Infiltration": "", - "Position": { - "x": 72.22681, - "y": 13.9586515, - "z": 159.3858 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c6b7ada3-06e1-4c17-bbfc-805297968e04", - "Infiltration": "east", - "Position": { - "x": 101.579, - "y": 28.1424046, - "z": 314.783 - }, - "Rotation": 129.322372, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c782f38f-3964-47a0-b8cd-caef700a1d2f", - "Infiltration": "", - "Position": { - "x": 73.880806, - "y": 14.1386509, - "z": 37.23281 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c83cfa66-d6c2-4b78-8dfd-23d3fc83413c", - "Infiltration": "east", - "Position": { - "x": 147.55, - "y": 23.3, - "z": 250.06 - }, - "Rotation": 244.743225, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c8b04f3f-1f80-49a7-8530-3180b3ff71e9", - "Infiltration": "east", - "Position": { - "x": 84.94798, - "y": 22.809, - "z": 15.1129913 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "c94a8465-be54-4bf3-833b-b83822b582df", - "Infiltration": "west", - "Position": { - "x": 176.79, - "y": 17.01, - "z": -6.32 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "cbf941fc-9b66-4a2c-aa00-b1d9b1ba7f9f", - "Infiltration": "west", - "Position": { - "x": 177.581, - "y": 17.01, - "z": -4.079 - }, - "Rotation": 53.49001, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "cc5ed6f2-1e4e-43d4-9ad4-9fc3aaf1e162", - "Infiltration": "west", - "Position": { - "x": -11, - "y": 23.86, - "z": -5.77 - }, - "Rotation": 29.2678757, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "cdabcf05-fa38-4640-89a6-294133b99a5c", - "Infiltration": "east", - "Position": { - "x": 54.733017, - "y": 22.778, - "z": -79.07599 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ce3e73b8-fa29-4d68-bd53-a62d81f32e03", - "Infiltration": "", - "Position": { - "x": 57.236805, - "y": 14.0986509, - "z": -31.15419 - }, - "Rotation": 57.4887657, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "cec675dc-0443-44f1-90bb-61b0fc25b2fc", - "Infiltration": "east", - "Position": { - "x": 54.50502, - "y": 22.778, - "z": -73.88199 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ced4b14f-e478-467d-bed1-0314278e555a", - "Infiltration": "east", - "Position": { - "x": 101.809, - "y": 28.1424046, - "z": 317.117 - }, - "Rotation": 129.322372, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "cef29c63-52b4-4b56-9e93-8b7f787926ae", - "Infiltration": "", - "Position": { - "x": -10.5931931, - "y": 23.982048, - "z": 22.86581 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "d4f55d16-038b-455e-bc9a-74a49e57ab89", - "Infiltration": "west", - "Position": { - "x": 119.705, - "y": 22.834, - "z": -4.314 - }, - "Rotation": 297.1408, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "d522a711-32c1-4059-a900-0c581083907e", - "Infiltration": "", - "Position": { - "x": 163.6168, - "y": 22.768652, - "z": -88.24419 - }, - "Rotation": 294.737854, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "d9e3c316-cf61-454b-8fca-aae78f2c0622", - "Infiltration": "west", - "Position": { - "x": 136.6, - "y": 22.74, - "z": -66.89 - }, - "Rotation": 298.9875, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "da49f6be-0819-4d01-a574-e03c6505f5a8", - "Infiltration": "", - "Position": { - "x": 11.1888046, - "y": 23.48965, - "z": 159.016815 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "daaa4a02-1f51-460b-bdf8-29b3bd2c838b", - "Infiltration": "west", - "Position": { - "x": 78.24098, - "y": 22.85, - "z": 16.96199 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "db5b9d0d-3105-4814-b413-03d28d4a87d2", - "Infiltration": "west", - "Position": { - "x": 47.123, - "y": 23.276, - "z": -103.068 - }, - "Rotation": 323.255859, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "dcbe096a-7083-4dc0-a7e2-8149e7c153d4", - "Infiltration": "east", - "Position": { - "x": 130.538, - "y": 23.45, - "z": 271.616 - }, - "Rotation": 235.117432, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ddca1267-6caa-4986-bd13-0ed29a81e6d2", - "Infiltration": "east", - "Position": { - "x": 86.15001, - "y": 22.809, - "z": 16.2979889 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "dddd4a25-56ed-4a30-8584-2feebb2a7c26", - "Infiltration": "", - "Position": { - "x": 57.717804, - "y": 23.4366512, - "z": 226.737823 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "de5f4d8c-1411-446e-b67b-269830a40a15", - "Infiltration": "east", - "Position": { - "x": 60.9, - "y": 14.18, - "z": 105.16 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "df92e08a-08a9-4a19-8b90-cc8aa13b3062", - "Infiltration": "west", - "Position": { - "x": 122.356, - "y": 22.834, - "z": -4.153 - }, - "Rotation": 297.1408, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "df949703-1471-4367-a395-3afa78fcf886", - "Infiltration": "east", - "Position": { - "x": 57.9350128, - "y": 22.778, - "z": -72.422 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "e10f4f9d-10ee-4e2b-823e-7abc3fc57579", - "Infiltration": "", - "Position": { - "x": -10.4581985, - "y": 23.982048, - "z": 19.6548119 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "e4c05b16-8dfa-4133-8291-3b998a7cd8d2", - "Infiltration": "", - "Position": { - "x": 8.986805, - "y": 23.48965, - "z": 158.425812 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "e545318d-f757-4a76-90be-079bf41998d2", - "Infiltration": "east", - "Position": { - "x": 180.81, - "y": 16.24, - "z": 119.29 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "e5da63fb-4d33-4ebb-a621-dd414deecab5", - "Infiltration": "west", - "Position": { - "x": 75.82799, - "y": 23.018, - "z": 268.864 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "e80f4716-5841-4414-bb54-1d80ba3fdf53", - "Infiltration": "", - "Position": { - "x": 55.2668037, - "y": 14.0686512, - "z": -32.35419 - }, - "Rotation": 57.4887657, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "e82b70c6-673b-4f35-8362-f011b4ce1ba1", - "Infiltration": "", - "Position": { - "x": -14.633194, - "y": 23.8186512, - "z": -58.76419 - }, - "Rotation": 44.63094, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "e885b0ac-24fc-4a38-8962-ff761cbdfd43", - "Infiltration": "", - "Position": { - "x": 11.5208054, - "y": 23.48965, - "z": 156.3288 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "eaa886c4-d771-4f7d-89f8-03b0c6d38365", - "Infiltration": "east", - "Position": { - "x": 110.82, - "y": 23.193, - "z": 176.03 - }, - "Rotation": 25.0808964, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "eb268aaa-dfde-4021-bdfa-44faed92c139", - "Infiltration": "east", - "Position": { - "x": 64.88, - "y": 14.22, - "z": 105.85 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ec099d7a-f15a-488b-8402-4113f56c5822", - "Infiltration": "east", - "Position": { - "x": 180.85, - "y": 16.24, - "z": 121.4 - }, - "Rotation": 95.4804, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ec13b292-f7ef-4a17-85ae-84b356502878", - "Infiltration": "west", - "Position": { - "x": 4.36, - "y": 23.89, - "z": -59.74 - }, - "Rotation": 15.3505669, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ecb6d722-fc49-469d-8439-d8ad4dd9da11", - "Infiltration": "", - "Position": { - "x": 17.0988045, - "y": 24.20565, - "z": 73.366806 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f0113a3b-12cd-4801-ad39-c5ebc9578d38", - "Infiltration": "east", - "Position": { - "x": 54.6900177, - "y": 22.778, - "z": -77.0209961 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f1a1311b-f0fb-4be0-9cb4-d05a0e5dd608", - "Infiltration": "", - "Position": { - "x": 172.2468, - "y": 16.9886513, - "z": 9.425811 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f2187ee3-7751-441b-a7ef-b88e072a94c3", - "Infiltration": "west", - "Position": { - "x": -2.8, - "y": 23.89, - "z": -59.58 - }, - "Rotation": 15.3505669, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f25c8ce2-325a-46fb-b872-d462ea7e4d88", - "Infiltration": "", - "Position": { - "x": 109.396805, - "y": 22.688652, - "z": 239.435822 - }, - "Rotation": 283.99, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f2a7bbe4-cd32-4e72-875e-3624083ec8e8", - "Infiltration": "west", - "Position": { - "x": 44.427, - "y": 23.276, - "z": -104.867 - }, - "Rotation": 323.255859, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f5481928-9ee3-47cd-8998-77edfd1626d3", - "Infiltration": "west", - "Position": { - "x": 74.49, - "y": 14.18, - "z": 10.55 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f5ba4d5f-08f4-411d-b246-2bac60595f01", - "Infiltration": "east", - "Position": { - "x": 66.95, - "y": 14.18, - "z": 107.25 - }, - "Rotation": 96.67873, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f61dc8f4-8ab8-4a1b-9771-8c4d26568769", - "Infiltration": "east", - "Position": { - "x": 85.338, - "y": 22.8000011, - "z": 11.584 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f6657f6f-e0a1-4b4d-8653-79c4c693032f", - "Infiltration": "", - "Position": { - "x": 176.3018, - "y": 16.9956512, - "z": 10.2488108 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "f76c3749-0412-41cb-a61c-0d7bca49e779", - "Infiltration": "east", - "Position": { - "x": 127.474, - "y": 23.225, - "z": 194.108 - }, - "Rotation": 279.416534, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "fc1387ee-e540-4433-9022-d3c53a04b8c2", - "Infiltration": "east", - "Position": { - "x": 39.85, - "y": 23.42, - "z": 150.63 - }, - "Rotation": 154.863632, - "Sides": [ - "All" - ] - }, - { - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "fd6734ed-6ba8-423b-8a7b-2943f31c6527", - "Infiltration": "west", - "Position": { - "x": 79.088, - "y": 22.8000011, - "z": 13.6839752 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "fd7031bc-29d0-496c-9b56-a1ab462b2fec", - "Infiltration": "", - "Position": { - "x": 112.2068, - "y": 22.688652, - "z": 220.925812 - }, - "Rotation": 283.99, - "Sides": [ - "Savage" - ] - }, - { - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "DelayToCanSpawnSec": 4, - "Id": "ff4ba848-e191-4134-b370-d8d9604f1b72", - "Infiltration": "", - "Position": { - "x": 71.97681, - "y": 14.1386509, - "z": 20.19581 - }, - "Rotation": 111.07354, - "Sides": [ - "Savage" - ] - } - ], - "UnixDateTime": 1621511450, - "_Id": "65b8d6f5cdde2479cb2a3125", - "doors": [], - "exit_access_time": 35, - "exit_count": 1, - "exit_time": 2, - "exits": [ - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "east", - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Unity_free_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 5000, - "CountPVE": 5000, - "EntryPoints": "west,east", - "ExfiltrationTime": 60, - "ExfiltrationTimePVE": 60, - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Sandbox_VExit", - "PassageRequirement": "TransferItem", - "PlayersCount": 4, - "PlayersCountPVE": 4, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Item" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "west,east", - "ExfiltrationTime": 6, - "ExfiltrationTimePVE": 6, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Sniper_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "west,east", - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "SharedTimer", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Scav_coop_exit", - "PassageRequirement": "ScavCooperation", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Cooperate" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "west", - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Nakatani_stairs_free_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - } - ], - "filter_ex": [], - "limits": [ - { - "items": [ - "6389c8c5dbfd5e4b95197e6b", - "64d4b23dc1b37504b41ac2b6" - ], - "max": 1, - "min": 0 - } - ], - "matching_min_seconds": 60, - "sav_summon_seconds": 60, - "tmp_location_field_remove_me": 0, - "transits": [ - { - "activateAfterSec": 60, - "active": true, - "conditions": "SAN_TRANSIT_1_COND", - "description": "SAN_TRANSIT_1_DESC", - "id": 1, - "location": "TarkovStreets", - "name": "SAN_TRANSIT_1", - "target": "5714dc692459777137212e12", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": false, - "conditions": "SAN_TRANSIT_2_COND", - "description": "SAN_TRANSIT_2_DESC", - "id": 2, - "location": "laboratory", - "name": "SAN_TRANSIT_2", - "target": "5b0fc42d86f7744a585f9105", - "time": 30 - } - ], - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "waves": [] -} diff --git a/project/assets/database/locations/sandbox_high/looseLoot.json b/project/assets/database/locations/sandbox_high/looseLoot.json deleted file mode 100644 index 57356b1e..00000000 --- a/project/assets/database/locations/sandbox_high/looseLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1b1f98087a380ad4346bfca9f326afb19e69ce757602e78b40bcfeffdf98906f -size 13961304 diff --git a/project/assets/database/locations/sandbox_high/staticAmmo.json b/project/assets/database/locations/sandbox_high/staticAmmo.json deleted file mode 100644 index 62dd2acc..00000000 --- a/project/assets/database/locations/sandbox_high/staticAmmo.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:44da9ab457a3911d6b4ce78e8f15a55869e48b46e0dcce5574454ca1975a290f -size 11275 diff --git a/project/assets/database/locations/sandbox_high/staticContainers.json b/project/assets/database/locations/sandbox_high/staticContainers.json deleted file mode 100644 index c76f3cdb..00000000 --- a/project/assets/database/locations/sandbox_high/staticContainers.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e547670e4d694d8fd43fe0e3e7bcc21ae610859dfedc04ca67fd0a5b487b630b -size 236355 diff --git a/project/assets/database/locations/sandbox_high/staticLoot.json b/project/assets/database/locations/sandbox_high/staticLoot.json deleted file mode 100644 index 21587b34..00000000 --- a/project/assets/database/locations/sandbox_high/staticLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:64afc4e0d25d77a8193ebb49bf139f8b97441bf4133333e3980da18e69ea74a7 -size 630605 diff --git a/project/assets/database/locations/sandbox_high/statics.json b/project/assets/database/locations/sandbox_high/statics.json deleted file mode 100644 index e4a73f77..00000000 --- a/project/assets/database/locations/sandbox_high/statics.json +++ /dev/null @@ -1,1787 +0,0 @@ -{ - "containersGroups": { - "sandbox_bag_sport_N15_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N18_6": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N22_6": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_Plastic_suitcase_64_open_P_N34_4": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N3_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N47_2": { - "minContainers": 0, - "maxContainers": 1 - }, - "FromArt_containerGroup": { - "minContainers": 20, - "maxContainers": 30 - }, - "FromArt2ndIteration_containerGroup": { - "minContainers": 25, - "maxContainers": 32 - }, - "sandbox_bag_sport_N4_6": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N42_4": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_scontainer_toolbox_N49_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_Plastic_suitcase_140_open_P_N35_4": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N6_6": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N23_6": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N26_3": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N11_6": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N30_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N1_6": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_scontainer_toolbox_N25_4": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_scontainer_toolbox_N14_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N19_10": { - "minContainers": 0, - "maxContainers": 1 - }, - "lift_parking_N51_4_sandbox": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N17_6": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N2_6": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N21_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N24_3": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_weapon_box_N41_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_container_supplyBox_lootable_medicine_N39_2": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_scontainer_toolbox_N27_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_scontainer_toolbox_N45_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N37_4": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_container_supplyBox_lootable_tools_N33_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_scontainer_medbag_N7_5": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_scontainer_toolbox_N9_4": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N38_4": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_container_supplyBox_lootable_tools_N32_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N29_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N28_7": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N10_6": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_container_supplyBox_lootable_tools_N40_2": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_weapon_box_N36_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N48_4": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N31_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N20_5": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_scontainer_toolbox_N44_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N13_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N12_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_scontainer_toolbox_N16_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N50_4": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_container_supplyBox_lootable_food_N8_2": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_scontainer_toolbox_N46_3": { - "minContainers": 1, - "maxContainers": 2 - }, - "sandbox_bag_sport_N5_5": { - "minContainers": 0, - "maxContainers": 1 - }, - "sandbox_bag_sport_N43_3": { - "minContainers": 0, - "maxContainers": 2 - } - }, - "containers": { - "container_Sandbox_Design_Stuff_00049": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00048": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00050": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00051": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00101": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00100": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00098": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00099": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00024": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00025": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00027": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00026": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00116": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00115": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00117": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00118": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00125": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00126": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00128": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00127": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00054": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00055": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00053": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00052": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00077": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00078": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00080": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00079": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00047": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00046": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00044": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00045": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00092": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00091": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00089": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00090": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00145": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00146": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00148": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00147": { - "groupId": "" - }, - "Lootable_00000": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00159": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00160": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00162": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00161": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00032": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00033": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00087": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00088": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00086": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00085": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00030": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00029": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00028": { - "groupId": "" - }, - "Lootable_00008": { - "groupId": "" - }, - "Lootable_00007": { - "groupId": "" - }, - "Lootable_00005": { - "groupId": "" - }, - "Lootable_00006": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00136": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00137": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00135": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00134": { - "groupId": "" - }, - "Lootable_00002": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00142": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00141": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00143": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00144": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00042": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00043": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00041": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00040": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00084": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00083": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00081": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00082": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00023": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00022": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00020": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00021": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00172": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00073": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00109": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00071": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00063": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00169": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00506": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00011": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00155": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00178": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00067": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00157": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00112": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00012": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00061": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00166": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00075": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00074": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00111": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00182": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00156": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00013": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00153": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00154": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00008": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00173": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00179": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00149": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00070": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00060": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00072": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00005": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00000": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00151": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00114": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00058": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00449": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00301": { - "groupId": "sandbox_bag_sport_N23_6" - }, - "container_Sandbox_Design_Stuff_00289": { - "groupId": "sandbox_bag_sport_N21_5" - }, - "container_Sandbox_Design_Stuff_00333": { - "groupId": "sandbox_bag_sport_N30_5" - }, - "container_Sandbox_Design_Stuff_00296": { - "groupId": "sandbox_bag_sport_N23_6" - }, - "container_Sandbox_Design_Stuff_00327": { - "groupId": "sandbox_bag_sport_N29_5" - }, - "container_Sandbox_Design_Stuff_00232": { - "groupId": "sandbox_bag_sport_N10_6" - }, - "container_Sandbox_Design_Stuff_00505": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00233": { - "groupId": "sandbox_bag_sport_N10_6" - }, - "container_Sandbox_Design_Stuff_00248": { - "groupId": "sandbox_bag_sport_N13_5" - }, - "container_Sandbox_Design_Stuff_00293": { - "groupId": "sandbox_bag_sport_N22_6" - }, - "container_Sandbox_Design_Stuff_00299": { - "groupId": "sandbox_bag_sport_N23_6" - }, - "container_Sandbox_Design_Stuff_00498": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00396": { - "groupId": "sandbox_bag_sport_N50_4" - }, - "container_Sandbox_Design_Stuff_00245": { - "groupId": "sandbox_bag_sport_N13_5" - }, - "container_Sandbox_Design_Stuff_00271": { - "groupId": "sandbox_bag_sport_N18_6" - }, - "container_Sandbox_Design_Stuff_00297": { - "groupId": "sandbox_bag_sport_N23_6" - }, - "container_Sandbox_Design_Stuff_00387": { - "groupId": "sandbox_bag_sport_N47_2" - }, - "container_Sandbox_Design_Stuff_00244": { - "groupId": "sandbox_bag_sport_N12_5" - }, - "container_Sandbox_Design_Stuff_00501": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00360": { - "groupId": "sandbox_bag_sport_N38_4" - }, - "container_Sandbox_Design_Stuff_00214": { - "groupId": "sandbox_bag_sport_N6_6" - }, - "container_Sandbox_Design_Stuff_00241": { - "groupId": "sandbox_bag_sport_N12_5" - }, - "container_Sandbox_Design_Stuff_00371": { - "groupId": "sandbox_bag_sport_N42_4" - }, - "container_Sandbox_Design_Stuff_00331": { - "groupId": "sandbox_bag_sport_N30_5" - }, - "container_Sandbox_Design_Stuff_00253": { - "groupId": "sandbox_bag_sport_N15_5" - }, - "container_Sandbox_Design_Stuff_00392": { - "groupId": "sandbox_bag_sport_N48_4" - }, - "container_Sandbox_Design_Stuff_00317": { - "groupId": "sandbox_bag_sport_N28_7" - }, - "container_Sandbox_Design_Stuff_00362": { - "groupId": "sandbox_bag_sport_N38_4" - }, - "container_Sandbox_Design_Stuff_00357": { - "groupId": "sandbox_bag_sport_N37_4" - }, - "container_Sandbox_Design_Stuff_00231": { - "groupId": "sandbox_bag_sport_N10_6" - }, - "container_Sandbox_Design_Stuff_00303": { - "groupId": "sandbox_bag_sport_N24_3" - }, - "container_Sandbox_Design_Stuff_00203": { - "groupId": "sandbox_bag_sport_N4_6" - }, - "container_Sandbox_Design_Stuff_00192": { - "groupId": "sandbox_bag_sport_N2_6" - }, - "container_Sandbox_Design_Stuff_00230": { - "groupId": "sandbox_bag_sport_N10_6" - }, - "container_Sandbox_Design_Stuff_00499": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00255": { - "groupId": "sandbox_bag_sport_N15_5" - }, - "container_Sandbox_Design_Stuff_00287": { - "groupId": "sandbox_bag_sport_N21_5" - }, - "container_Sandbox_Design_Stuff_00265": { - "groupId": "sandbox_bag_sport_N17_6" - }, - "container_Sandbox_Design_Stuff_00282": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00189": { - "groupId": "sandbox_bag_sport_N2_6" - }, - "container_Sandbox_Design_Stuff_00495": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00269": { - "groupId": "sandbox_bag_sport_N18_6" - }, - "container_Sandbox_Design_Stuff_00193": { - "groupId": "sandbox_bag_sport_N2_6" - }, - "container_Sandbox_Design_Stuff_00322": { - "groupId": "sandbox_bag_sport_N28_7" - }, - "container_Sandbox_Design_Stuff_00502": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00262": { - "groupId": "sandbox_bag_sport_N17_6" - }, - "container_Sandbox_Design_Stuff_00326": { - "groupId": "sandbox_bag_sport_N29_5" - }, - "container_Sandbox_Design_Stuff_00375": { - "groupId": "sandbox_bag_sport_N43_3" - }, - "container_Sandbox_Design_Stuff_00238": { - "groupId": "sandbox_bag_sport_N11_6" - }, - "container_Sandbox_Design_Stuff_00204": { - "groupId": "sandbox_bag_sport_N4_6" - }, - "container_Sandbox_Design_Stuff_00452": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00185": { - "groupId": "sandbox_bag_sport_N1_6" - }, - "container_Sandbox_Design_Stuff_00374": { - "groupId": "sandbox_bag_sport_N42_4" - }, - "container_Sandbox_Design_Stuff_00263": { - "groupId": "sandbox_bag_sport_N17_6" - }, - "container_Sandbox_Design_Stuff_00197": { - "groupId": "sandbox_bag_sport_N3_5" - }, - "container_Sandbox_Design_Stuff_00194": { - "groupId": "sandbox_bag_sport_N2_6" - }, - "container_Sandbox_Design_Stuff_00239": { - "groupId": "sandbox_bag_sport_N11_6" - }, - "container_Sandbox_Design_Stuff_00281": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00184": { - "groupId": "sandbox_bag_sport_N1_6" - }, - "container_Sandbox_Design_Stuff_00388": { - "groupId": "sandbox_bag_sport_N47_2" - }, - "container_Sandbox_Design_Stuff_00356": { - "groupId": "sandbox_bag_sport_N37_4" - }, - "container_Sandbox_Design_Stuff_00358": { - "groupId": "sandbox_bag_sport_N37_4" - }, - "container_Sandbox_Design_Stuff_00309": { - "groupId": "sandbox_bag_sport_N26_3" - }, - "container_Sandbox_Design_Stuff_00202": { - "groupId": "sandbox_bag_sport_N4_6" - }, - "container_Sandbox_Design_Stuff_00450": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00205": { - "groupId": "sandbox_bag_sport_N4_6" - }, - "container_Sandbox_Design_Stuff_00183": { - "groupId": "sandbox_bag_sport_N1_6" - }, - "container_Sandbox_Design_Stuff_00361": { - "groupId": "sandbox_bag_sport_N38_4" - }, - "container_Sandbox_Design_Stuff_00206": { - "groupId": "sandbox_bag_sport_N5_5" - }, - "container_Sandbox_Design_Stuff_00266": { - "groupId": "sandbox_bag_sport_N17_6" - }, - "container_Sandbox_Design_Stuff_00208": { - "groupId": "sandbox_bag_sport_N5_5" - }, - "container_Sandbox_Design_Stuff_00324": { - "groupId": "sandbox_bag_sport_N29_5" - }, - "container_Sandbox_Design_Stuff_00294": { - "groupId": "sandbox_bag_sport_N22_6" - }, - "container_Sandbox_Design_Stuff_00448": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00504": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00249": { - "groupId": "sandbox_bag_sport_N13_5" - }, - "container_Sandbox_Design_Stuff_00254": { - "groupId": "sandbox_bag_sport_N15_5" - }, - "container_Sandbox_Design_Stuff_00304": { - "groupId": "sandbox_bag_sport_N24_3" - }, - "container_Sandbox_Design_Stuff_00210": { - "groupId": "sandbox_bag_sport_N5_5" - }, - "container_Sandbox_Design_Stuff_00274": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00198": { - "groupId": "sandbox_bag_sport_N3_5" - }, - "container_Sandbox_Design_Stuff_00243": { - "groupId": "sandbox_bag_sport_N12_5" - }, - "container_Sandbox_Design_Stuff_00295": { - "groupId": "sandbox_bag_sport_N22_6" - }, - "container_Sandbox_Design_Stuff_00398": { - "groupId": "sandbox_bag_sport_N50_4" - }, - "container_Sandbox_Design_Stuff_00240": { - "groupId": "sandbox_bag_sport_N12_5" - }, - "container_Sandbox_Design_Stuff_00363": { - "groupId": "sandbox_bag_sport_N38_4" - }, - "container_Sandbox_Design_Stuff_00292": { - "groupId": "sandbox_bag_sport_N22_6" - }, - "container_Sandbox_Design_Stuff_00300": { - "groupId": "sandbox_bag_sport_N23_6" - }, - "container_Sandbox_Design_Stuff_00288": { - "groupId": "sandbox_bag_sport_N21_5" - }, - "container_Sandbox_Design_Stuff_00335": { - "groupId": "sandbox_bag_sport_N31_5" - }, - "container_Sandbox_Design_Stuff_00247": { - "groupId": "sandbox_bag_sport_N13_5" - }, - "container_Sandbox_Design_Stuff_00372": { - "groupId": "sandbox_bag_sport_N42_4" - }, - "container_Sandbox_Design_Stuff_00276": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00235": { - "groupId": "sandbox_bag_sport_N11_6" - }, - "container_Sandbox_Design_Stuff_00279": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00454": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00329": { - "groupId": "sandbox_bag_sport_N30_5" - }, - "container_Sandbox_Design_Stuff_00186": { - "groupId": "sandbox_bag_sport_N1_6" - }, - "container_Sandbox_Design_Stuff_00336": { - "groupId": "sandbox_bag_sport_N31_5" - }, - "container_Sandbox_Design_Stuff_00195": { - "groupId": "sandbox_bag_sport_N3_5" - }, - "container_Sandbox_Design_Stuff_00264": { - "groupId": "sandbox_bag_sport_N17_6" - }, - "container_Sandbox_Design_Stuff_00272": { - "groupId": "sandbox_bag_sport_N18_6" - }, - "container_Sandbox_Design_Stuff_00216": { - "groupId": "sandbox_bag_sport_N6_6" - }, - "container_Sandbox_Design_Stuff_00196": { - "groupId": "sandbox_bag_sport_N3_5" - }, - "container_Sandbox_Design_Stuff_00389": { - "groupId": "sandbox_bag_sport_N48_4" - }, - "container_Sandbox_Design_Stuff_00323": { - "groupId": "sandbox_bag_sport_N28_7" - }, - "container_Sandbox_Design_Stuff_00373": { - "groupId": "sandbox_bag_sport_N42_4" - }, - "container_Sandbox_Design_Stuff_00191": { - "groupId": "sandbox_bag_sport_N2_6" - }, - "container_Sandbox_Design_Stuff_00377": { - "groupId": "sandbox_bag_sport_N43_3" - }, - "container_Sandbox_Design_Stuff_00199": { - "groupId": "sandbox_bag_sport_N3_5" - }, - "container_Sandbox_Design_Stuff_00328": { - "groupId": "sandbox_bag_sport_N29_5" - }, - "container_Sandbox_Design_Stuff_00290": { - "groupId": "sandbox_bag_sport_N21_5" - }, - "container_Sandbox_Design_Stuff_00399": { - "groupId": "sandbox_bag_sport_N50_4" - }, - "container_Sandbox_Design_Stuff_00277": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00275": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00268": { - "groupId": "sandbox_bag_sport_N18_6" - }, - "container_Sandbox_Design_Stuff_00187": { - "groupId": "sandbox_bag_sport_N1_6" - }, - "container_Sandbox_Design_Stuff_00201": { - "groupId": "sandbox_bag_sport_N4_6" - }, - "container_Sandbox_Design_Stuff_00256": { - "groupId": "sandbox_bag_sport_N15_5" - }, - "container_Sandbox_Design_Stuff_00229": { - "groupId": "sandbox_bag_sport_N10_6" - }, - "container_Sandbox_Design_Stuff_00236": { - "groupId": "sandbox_bag_sport_N11_6" - }, - "container_Sandbox_Design_Stuff_00337": { - "groupId": "sandbox_bag_sport_N31_5" - }, - "container_Sandbox_Design_Stuff_00215": { - "groupId": "sandbox_bag_sport_N6_6" - }, - "container_Sandbox_Design_Stuff_00503": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00320": { - "groupId": "sandbox_bag_sport_N28_7" - }, - "container_Sandbox_Design_Stuff_00298": { - "groupId": "sandbox_bag_sport_N23_6" - }, - "container_Sandbox_Design_Stuff_00207": { - "groupId": "sandbox_bag_sport_N5_5" - }, - "container_Sandbox_Design_Stuff_00494": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00332": { - "groupId": "sandbox_bag_sport_N30_5" - }, - "container_Sandbox_Design_Stuff_00270": { - "groupId": "sandbox_bag_sport_N18_6" - }, - "container_Sandbox_Design_Stuff_00278": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00200": { - "groupId": "sandbox_bag_sport_N4_6" - }, - "container_Sandbox_Design_Stuff_00391": { - "groupId": "sandbox_bag_sport_N48_4" - }, - "container_Sandbox_Design_Stuff_00284": { - "groupId": "sandbox_bag_sport_N20_5" - }, - "container_Sandbox_Design_Stuff_00330": { - "groupId": "sandbox_bag_sport_N30_5" - }, - "container_Sandbox_Design_Stuff_00188": { - "groupId": "sandbox_bag_sport_N1_6" - }, - "container_Sandbox_Design_Stuff_00291": { - "groupId": "sandbox_bag_sport_N22_6" - }, - "container_Sandbox_Design_Stuff_00209": { - "groupId": "sandbox_bag_sport_N5_5" - }, - "container_Sandbox_Design_Stuff_00500": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00321": { - "groupId": "sandbox_bag_sport_N28_7" - }, - "container_Sandbox_Design_Stuff_00257": { - "groupId": "sandbox_bag_sport_N15_5" - }, - "container_Sandbox_Design_Stuff_00311": { - "groupId": "sandbox_bag_sport_N26_3" - }, - "container_Sandbox_Design_Stuff_00496": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00285": { - "groupId": "sandbox_bag_sport_N20_5" - }, - "container_Sandbox_Design_Stuff_00376": { - "groupId": "sandbox_bag_sport_N43_3" - }, - "container_Sandbox_Design_Stuff_00242": { - "groupId": "sandbox_bag_sport_N12_5" - }, - "container_Sandbox_Design_Stuff_00212": { - "groupId": "sandbox_bag_sport_N6_6" - }, - "container_Test_for_export_00000": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00319": { - "groupId": "sandbox_bag_sport_N28_7" - }, - "container_Sandbox_Design_Stuff_00237": { - "groupId": "sandbox_bag_sport_N11_6" - }, - "container_Sandbox_Design_Stuff_00338": { - "groupId": "sandbox_bag_sport_N31_5" - }, - "container_Sandbox_Design_Stuff_00390": { - "groupId": "sandbox_bag_sport_N48_4" - }, - "container_Sandbox_Design_Stuff_00280": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00359": { - "groupId": "sandbox_bag_sport_N37_4" - }, - "container_Sandbox_Design_Stuff_00310": { - "groupId": "sandbox_bag_sport_N26_3" - }, - "container_Sandbox_Design_Stuff_00286": { - "groupId": "sandbox_bag_sport_N21_5" - }, - "container_Sandbox_Design_Stuff_00213": { - "groupId": "sandbox_bag_sport_N6_6" - }, - "container_Sandbox_Design_Stuff_00228": { - "groupId": "sandbox_bag_sport_N10_6" - }, - "container_Sandbox_Design_Stuff_00283": { - "groupId": "sandbox_bag_sport_N20_5" - }, - "container_Sandbox_Design_Stuff_00334": { - "groupId": "sandbox_bag_sport_N31_5" - }, - "container_Sandbox_Design_Stuff_00302": { - "groupId": "sandbox_bag_sport_N24_3" - }, - "container_Sandbox_Design_Stuff_00397": { - "groupId": "sandbox_bag_sport_N50_4" - }, - "container_Sandbox_Design_Stuff_00261": { - "groupId": "sandbox_bag_sport_N17_6" - }, - "container_Sandbox_Design_Stuff_00273": { - "groupId": "sandbox_bag_sport_N19_10" - }, - "container_Sandbox_Design_Stuff_00267": { - "groupId": "sandbox_bag_sport_N18_6" - }, - "container_Sandbox_Design_Stuff_00451": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00453": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00497": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00211": { - "groupId": "sandbox_bag_sport_N6_6" - }, - "container_Sandbox_Design_Stuff_00318": { - "groupId": "sandbox_bag_sport_N28_7" - }, - "container_Sandbox_Design_Stuff_00246": { - "groupId": "sandbox_bag_sport_N13_5" - }, - "container_Sandbox_Design_Stuff_00325": { - "groupId": "sandbox_bag_sport_N29_5" - }, - "container_Sandbox_Design_Stuff_00190": { - "groupId": "sandbox_bag_sport_N2_6" - }, - "container_Sandbox_Design_Stuff_00007": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00095": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00014": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00001": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00096": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00064": { - "groupId": "" - }, - "container_ProfileEditor_00003": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00068": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00065": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00412": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00435": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00016": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00093": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00059": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00102": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00176": { - "groupId": "" - }, - "container_ProfileEditor_00005": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00010": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00103": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00015": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00382": { - "groupId": "sandbox_scontainer_toolbox_N45_3" - }, - "container_Sandbox_Design_Stuff_00225": { - "groupId": "sandbox_scontainer_toolbox_N9_4" - }, - "container_Sandbox_Design_Stuff_00403": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00305": { - "groupId": "sandbox_scontainer_toolbox_N25_4" - }, - "container_Sandbox_Design_Stuff_00406": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00379": { - "groupId": "sandbox_scontainer_toolbox_N44_3" - }, - "container_Sandbox_Design_Stuff_00410": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00487": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00445": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00250": { - "groupId": "sandbox_scontainer_toolbox_N14_3" - }, - "container_Sandbox_Design_Stuff_00308": { - "groupId": "sandbox_scontainer_toolbox_N25_4" - }, - "container_Sandbox_Design_Stuff_00380": { - "groupId": "sandbox_scontainer_toolbox_N44_3" - }, - "container_Sandbox_Design_Stuff_00252": { - "groupId": "sandbox_scontainer_toolbox_N14_3" - }, - "container_Sandbox_Design_Stuff_00130": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00313": { - "groupId": "sandbox_scontainer_toolbox_N27_5" - }, - "container_Sandbox_Design_Stuff_00419": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00395": { - "groupId": "sandbox_scontainer_toolbox_N49_3" - }, - "container_Sandbox_Design_Stuff_00486": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00312": { - "groupId": "sandbox_scontainer_toolbox_N27_5" - }, - "container_Sandbox_Design_Stuff_00485": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00378": { - "groupId": "sandbox_scontainer_toolbox_N44_3" - }, - "container_Sandbox_Design_Stuff_00385": { - "groupId": "sandbox_scontainer_toolbox_N46_3" - }, - "container_Sandbox_Design_Stuff_00421": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00459": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00393": { - "groupId": "sandbox_scontainer_toolbox_N49_3" - }, - "container_Sandbox_Design_Stuff_00430": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00306": { - "groupId": "sandbox_scontainer_toolbox_N25_4" - }, - "container_Sandbox_Design_Stuff_00434": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00394": { - "groupId": "sandbox_scontainer_toolbox_N49_3" - }, - "container_Sandbox_Design_Stuff_00260": { - "groupId": "sandbox_scontainer_toolbox_N16_3" - }, - "container_Sandbox_Design_Stuff_00443": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00251": { - "groupId": "sandbox_scontainer_toolbox_N14_3" - }, - "container_Sandbox_Design_Stuff_00259": { - "groupId": "sandbox_scontainer_toolbox_N16_3" - }, - "container_Sandbox_Design_Stuff_00258": { - "groupId": "sandbox_scontainer_toolbox_N16_3" - }, - "container_Sandbox_Design_Stuff_00224": { - "groupId": "sandbox_scontainer_toolbox_N9_4" - }, - "container_Sandbox_Design_Stuff_00307": { - "groupId": "sandbox_scontainer_toolbox_N25_4" - }, - "container_Sandbox_Design_Stuff_00460": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00386": { - "groupId": "sandbox_scontainer_toolbox_N46_3" - }, - "container_Sandbox_Design_Stuff_00314": { - "groupId": "sandbox_scontainer_toolbox_N27_5" - }, - "container_Sandbox_Design_Stuff_00442": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00423": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00381": { - "groupId": "sandbox_scontainer_toolbox_N45_3" - }, - "container_Sandbox_Design_Stuff_00315": { - "groupId": "sandbox_scontainer_toolbox_N27_5" - }, - "container_Sandbox_Design_Stuff_00427": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00383": { - "groupId": "sandbox_scontainer_toolbox_N45_3" - }, - "container_Sandbox_Design_Stuff_00441": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00316": { - "groupId": "sandbox_scontainer_toolbox_N27_5" - }, - "container_Sandbox_Design_Stuff_00461": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00420": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00227": { - "groupId": "sandbox_scontainer_toolbox_N9_4" - }, - "container_Sandbox_Design_Stuff_00384": { - "groupId": "sandbox_scontainer_toolbox_N46_3" - }, - "container_Sandbox_Design_Stuff_00226": { - "groupId": "sandbox_scontainer_toolbox_N9_4" - }, - "container_Sandbox_Design_Stuff_00019": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00003": { - "groupId": "" - }, - "container_ProfileEditor_00002": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00455": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "Lootable_00004": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00174": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00017": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00006": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00018": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00057": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00009": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00056": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00069": { - "groupId": "" - }, - "Lootable_00010": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00343": { - "groupId": "sandbox_container_supplyBox_lootable_tools_N33_3" - }, - "container_Sandbox_Design_Stuff_00170": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00340": { - "groupId": "sandbox_container_supplyBox_lootable_tools_N32_3" - }, - "container_Sandbox_Design_Stuff_00339": { - "groupId": "sandbox_container_supplyBox_lootable_tools_N32_3" - }, - "container_Sandbox_Design_Stuff_00458": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00341": { - "groupId": "sandbox_container_supplyBox_lootable_tools_N32_3" - }, - "container_Sandbox_Design_Stuff_00222": { - "groupId": "sandbox_container_supplyBox_lootable_food_N8_2" - }, - "container_Sandbox_Design_Stuff_00364": { - "groupId": "sandbox_container_supplyBox_lootable_medicine_N39_2" - }, - "container_Sandbox_Design_Stuff_00478": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00344": { - "groupId": "sandbox_container_supplyBox_lootable_tools_N33_3" - }, - "container_Sandbox_Design_Stuff_00367": { - "groupId": "sandbox_container_supplyBox_lootable_tools_N40_2" - }, - "container_Sandbox_Design_Stuff_00413": { - "groupId": "FromArt_containerGroup" - }, - "00012": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00223": { - "groupId": "sandbox_container_supplyBox_lootable_food_N8_2" - }, - "container_Sandbox_Design_Stuff_00462": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00342": { - "groupId": "sandbox_container_supplyBox_lootable_tools_N33_3" - }, - "container_Sandbox_Design_Stuff_00366": { - "groupId": "sandbox_container_supplyBox_lootable_tools_N40_2" - }, - "container_Sandbox_Design_Stuff_00365": { - "groupId": "sandbox_container_supplyBox_lootable_medicine_N39_2" - }, - "container_Sandbox_Design_Stuff_00152": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00062": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00113": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00150": { - "groupId": "" - }, - "container_ProfileEditor_00001": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00177": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00221": { - "groupId": "sandbox_scontainer_medbag_N7_5" - }, - "container_Sandbox_Design_Stuff_00217": { - "groupId": "sandbox_scontainer_medbag_N7_5" - }, - "container_Sandbox_Design_Stuff_00491": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00437": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00476": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00415": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00219": { - "groupId": "sandbox_scontainer_medbag_N7_5" - }, - "container_Sandbox_Design_Stuff_00220": { - "groupId": "sandbox_scontainer_medbag_N7_5" - }, - "container_Sandbox_Design_Stuff_00218": { - "groupId": "sandbox_scontainer_medbag_N7_5" - }, - "n1": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00467": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00468": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00481": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00479": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00492": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00350": { - "groupId": "sandbox_Plastic_suitcase_140_open_P_N35_4" - }, - "container_Sandbox_Design_Stuff_00402": { - "groupId": "lift_parking_N51_4_sandbox" - }, - "container_Sandbox_Design_Stuff_00349": { - "groupId": "sandbox_Plastic_suitcase_140_open_P_N35_4" - }, - "container_Sandbox_Design_Stuff_00352": { - "groupId": "sandbox_Plastic_suitcase_140_open_P_N35_4" - }, - "container_Sandbox_Design_Stuff_00470": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00351": { - "groupId": "sandbox_Plastic_suitcase_140_open_P_N35_4" - }, - "container_Sandbox_Design_Stuff_00411": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00110": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00171": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00122": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00131": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00139": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00129": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00165": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00106": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00175": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00132": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00119": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00168": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00133": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00163": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00105": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00180": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00036": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00158": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00123": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00038": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00164": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00138": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00140": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00039": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00108": { - "groupId": "" - }, - "container_Test_for_export_00001": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00107": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00037": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00121": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00167": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00124": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00120": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00472": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00474": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00405": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00490": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00471": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00473": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00414": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00429": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00489": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00436": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00475": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00353": { - "groupId": "sandbox_weapon_box_N36_3" - }, - "Lootable_00003": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00431": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00456": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00370": { - "groupId": "sandbox_weapon_box_N41_3" - }, - "container_Sandbox_Design_Stuff_00425": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00477": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00482": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00426": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00354": { - "groupId": "sandbox_weapon_box_N36_3" - }, - "container_Sandbox_Design_Stuff_00447": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00469": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00368": { - "groupId": "sandbox_weapon_box_N41_3" - }, - "container_Sandbox_Design_Stuff_00369": { - "groupId": "sandbox_weapon_box_N41_3" - }, - "container_Sandbox_Design_Stuff_00483": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00417": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00439": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00407": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00355": { - "groupId": "sandbox_weapon_box_N36_3" - }, - "container_Sandbox_Design_Stuff_00465": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00488": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00493": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00424": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00446": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00416": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00466": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00438": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00404": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00428": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00480": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00457": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00484": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00422": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00444": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00347": { - "groupId": "sandbox_Plastic_suitcase_64_open_P_N34_4" - }, - "container_Sandbox_Design_Stuff_00409": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00348": { - "groupId": "sandbox_Plastic_suitcase_64_open_P_N34_4" - }, - "container_Sandbox_Design_Stuff_00346": { - "groupId": "sandbox_Plastic_suitcase_64_open_P_N34_4" - }, - "container_Sandbox_Design_Stuff_00433": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00440": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00401": { - "groupId": "lift_parking_N51_4_sandbox" - }, - "container_Sandbox_Design_Stuff_00418": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00463": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00345": { - "groupId": "sandbox_Plastic_suitcase_64_open_P_N34_4" - }, - "container_Test_for_export_00002": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00004": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00076": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00181": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00002": { - "groupId": "" - }, - "container_ProfileEditor_00004": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00066": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00104": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00094": { - "groupId": "" - }, - "container_Sandbox_Design_Stuff_00464": { - "groupId": "FromArt2ndIteration_containerGroup" - }, - "container_Sandbox_Design_Stuff_00408": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00234": { - "groupId": "sandbox_bag_sport_N11_6" - }, - "container_Sandbox_Design_Stuff_00400": { - "groupId": "lift_parking_N51_4_sandbox" - }, - "container_Sandbox_Design_Stuff_00432": { - "groupId": "FromArt_containerGroup" - }, - "container_Sandbox_Design_Stuff_00097": { - "groupId": "" - } - } -} \ No newline at end of file diff --git a/project/assets/database/locations/shoreline/allExtracts.json b/project/assets/database/locations/shoreline/allExtracts.json deleted file mode 100644 index 4d6659d0..00000000 --- a/project/assets/database/locations/shoreline/allExtracts.json +++ /dev/null @@ -1,324 +0,0 @@ -[ - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 5000, - "CountPve": 0, - "EntryPoints": "Riverside,Village", - "EventAvailable": false, - "ExfiltrationTime": 60.0, - "ExfiltrationTimePVE": 60.0, - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Shorl_V-Ex", - "PassageRequirement": "TransferItem", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Item", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Village", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Road to Customs", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Village", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Road_at_railbridge", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Riverside", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Tunnel", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Riverside,Village", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Lighthouse_pass", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Riverside,Village", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "SharedTimer", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Smugglers_Trail_coop", - "PassageRequirement": "ScavCooperation", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Cooperate", - "Side": "Coop" - }, - { - "Chance": 50.0, - "ChancePVE": 50.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Riverside,Village", - "EventAvailable": false, - "ExfiltrationTime": 30.0, - "ExfiltrationTimePVE": 30.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Pier Boat", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Riverside,Village", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "Alpinist", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "RedRebel_alp", - "PassageRequirement": "Reference", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Scav Road to Customs", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Lighthouse", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Wrecked Road", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "South Fence Passage", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "RWing Gym Entrance", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Adm Basement", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - } -] \ No newline at end of file diff --git a/project/assets/database/locations/shoreline/base.json b/project/assets/database/locations/shoreline/base.json deleted file mode 100644 index c377c398..00000000 --- a/project/assets/database/locations/shoreline/base.json +++ /dev/null @@ -1,9880 +0,0 @@ -{ - "AccessKeys": [], - "AccessKeysPvE": [], - "AirdropParameters": [ - { - "AirdropPointDeactivateDistance": 50, - "MinPlayersCountToSpawnAirdrop": 6, - "PlaneAirdropChance": 0.2, - "PlaneAirdropCooldownMax": 1000, - "PlaneAirdropCooldownMin": 900, - "PlaneAirdropEnd": 1800, - "PlaneAirdropMax": 1, - "PlaneAirdropStartMax": 900, - "PlaneAirdropStartMin": 300, - "UnsuccessfulTryPenalty": 600 - } - ], - "Area": 0, - "AveragePlayTime": 35, - "AveragePlayerLevel": 25, - "Banners": [ - { - "id": "5807c3f124597746bf2db2ce", - "pic": { - "path": "CONTENT/banners/banner_scav.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT/banners/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "64c0ad6af99768b777048f4e", - "pic": { - "path": "CONTENT/banners/banner_emissary.jpg", - "rcid": "" - } - } - ], - "BossLocationSpawn": [ - { - "BossChance": 15, - "BossDifficult": "normal", - "BossEscortAmount": "2,2,3,3,3,4,4,5", - "BossEscortDifficult": "normal", - "BossEscortType": "peacemaker", - "BossName": "peacemaker", - "BossPlayer": false, - "BossZone": "ZoneGreenHouses,ZonePort,ZoneSanatorium1,ZoneSanatorium2,ZoneSmuglers", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "0", - "BossEscortDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossName": "bossPartisan", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": true, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve", - "regular" - ], - "Supports": null, - "Time": -1, - "TriggerId": "PARTISAN_TRIGGER", - "TriggerName": "botEvent" - }, - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "0", - "BossEscortDifficult": "normal", - "BossEscortType": "exUsec", - "BossName": "bossKnight", - "BossPlayer": false, - "BossZone": "ZoneMeteoStation", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": true, - "SpawnMode": [ - "pve", - "regular" - ], - "Supports": [ - { - "BossEscortAmount": "1", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerBigPipe" - }, - { - "BossEscortAmount": "1", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerBirdEye" - }, - { - "BossEscortAmount": "0", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerGluharScout" - } - ], - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "3", - "BossEscortDifficult": "normal", - "BossEscortType": "followerSanitar", - "BossName": "bossSanitar", - "BossPlayer": false, - "BossZone": "ZoneGreenHouses,ZoneSanatorium1,ZoneGreenHouses,ZoneSanatorium2,ZonePort", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve", - "regular" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 15, - "BossDifficult": "normal", - "BossEscortAmount": "3,4", - "BossEscortDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossName": "sectantPriest", - "BossPlayer": false, - "BossZone": "ZoneSanatorium1,ZoneSanatorium2,ZoneForestSpawn,ZoneForestSpawn,ZoneForestSpawn", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve", - "regular" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,2,2,2,1,1,1,1,1", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "0,1,2", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "ZoneSmuglers", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - } - ], - "BotAssault": 80, - "BotEasy": 10, - "BotHard": 40, - "BotImpossible": 0, - "BotLocationModifier": { - "AccuracySpeed": 1, - "AdditionalHostilitySettings": [ - { - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 75, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcBEAR", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - }, - { - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 90, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcUSEC", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - } - ], - "DistToActivate": 260, - "DistToActivatePvE": 260, - "DistToPersueAxemanCoef": 1.1, - "DistToSleep": 300, - "DistToSleepPvE": 300, - "GainSight": 1.1, - "KhorovodChance": 0, - "MagnetPower": 40, - "MarksmanAccuratyCoef": 1, - "MaxExfiltrationTime": 2000, - "MinExfiltrationTime": 1500, - "Scattering": 0.8, - "VisibleDistance": 1.2 - }, - "BotMarksman": 20, - "BotMax": 17, - "BotMaxPlayer": 9, - "BotMaxPvE": 31, - "BotMaxTimePlayer": 1000, - "BotNormal": 50, - "BotSpawnCountStep": 4, - "BotSpawnPeriodCheck": 15, - "BotSpawnTimeOffMax": 30, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOnMax": 320, - "BotSpawnTimeOnMin": 260, - "BotStart": 20, - "BotStartPlayer": 220, - "BotStop": 2700, - "Description": "The coastline that leads to the port.", - "DisabledForScav": false, - "DisabledScavExits": "", - "EnableCoop": true, - "Enabled": true, - "EscapeTimeLimit": 45, - "EscapeTimeLimitCoop": 35, - "EscapeTimeLimitPVE": 45, - "Events": { - "Halloween2024": { - "CrowdAttackBlockRadius": 100, - "CrowdAttackSpawnParams": [ - { - "Difficulty": "easy", - "Role": "infectedAssault", - "Weight": 30 - }, - { - "Difficulty": "normal", - "Role": "infectedAssault", - "Weight": 110 - }, - { - "Difficulty": "hard", - "Role": "infectedAssault", - "Weight": 40 - }, - { - "Difficulty": "easy", - "Role": "infectedPmc", - "Weight": 15 - }, - { - "Difficulty": "normal", - "Role": "infectedPmc", - "Weight": 55 - }, - { - "Difficulty": "hard", - "Role": "infectedPmc", - "Weight": 20 - }, - { - "Difficulty": "easy", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "easy", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedLaborant", - "Weight": 0 - } - ], - "CrowdCooldownPerPlayerSec": 300, - "CrowdsLimit": 2, - "InfectedLookCoeff": 2, - "InfectionPercentage": 0, - "MaxCrowdAttackSpawnLimit": 18, - "MinInfectionPercentage": 0, - "MinSpawnDistToPlayer": 50, - "TargetPointSearchRadiusLimit": 200, - "ZombieCallDeltaRadius": 20, - "ZombieCallPeriodSec": 1, - "ZombieCallRadiusLimit": 200, - "ZombieMultiplier": 5 - } - }, - "ForceOnlineRaidInPVE": false, - "GenerateLocalLootCache": true, - "GlobalContainerChanceModifier": 1, - "GlobalLootChanceModifier": 0.25, - "GlobalLootChanceModifierPvE": 0.55, - "IconX": 220, - "IconY": 300, - "Id": "Shoreline", - "Insurance": true, - "IsSecret": false, - "Locked": false, - "Loot": [], - "MatchMakerMinPlayersByWaitTime": [ - { - "minPlayers": 7, - "time": 60 - }, - { - "minPlayers": 6, - "time": 70 - }, - { - "minPlayers": 5, - "time": 120 - }, - { - "minPlayers": 4, - "time": 180 - }, - { - "minPlayers": 3, - "time": 250 - }, - { - "minPlayers": 2, - "time": 330 - }, - { - "minPlayers": 1, - "time": 420 - } - ], - "MaxBotPerZone": 4, - "MaxCoopGroup": 13, - "MaxDistToFreePoint": 200, - "MaxPlayers": 14, - "MinDistToExitPoint": 30, - "MinDistToFreePoint": 60, - "MinMaxBots": [], - "MinPlayerLvlAccessKeys": 0, - "MinPlayers": 10, - "Name": "Shoreline", - "NewSpawn": true, - "NewSpawnForPlayers": true, - "NonWaveGroupScenario": { - "Chance": 50, - "Enabled": true, - "MaxToBeGroup": 3, - "MinToBeGroup": 2 - }, - "OcculsionCullingEnabled": true, - "OfflineNewSpawn": true, - "OfflineOldSpawn": true, - "OldSpawn": true, - "OpenZones": "ZoneSanatorium1,ZoneSanatorium2,ZoneIsland,ZoneGasStation,ZoneMeteoStation,ZonePowerStation,ZoneBusStation,ZoneRailWays,ZonePort,ZoneBunkeSniper,ZonePowerStationSniper,ZoneForestTruck,ZoneForestSpawn,ZoneSmuglers", - "PlayersRequestCount": -1, - "PmcMaxPlayersInGroup": 5, - "Preview": { - "path": "", - "rcid": "" - }, - "RequiredPlayerLevelMax": 100, - "RequiredPlayerLevelMin": 0, - "Rules": "Normal", - "SafeLocation": false, - "ScavMaxPlayersInGroup": 4, - "Scene": { - "path": "maps/shoreline_preset.bundle", - "rcid": "shoreline.scenespreset.asset" - }, - "SpawnPointParams": [ - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "012debaa-649e-4aae-bcd1-c479bf8efbe0", - "Infiltration": "Riverside", - "Position": { - "x": -917.4199, - "y": -58.32, - "z": 254.24 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "04a50f48-34c2-4e5d-9714-06988624c36a", - "Infiltration": "Riverside", - "Position": { - "x": -936.449951, - "y": -55.47, - "z": 163.39003 - }, - "Rotation": 28.5099983, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSanatorium2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "0706f78c-9b04-45b9-bcfe-405ea09a68e6", - "Infiltration": "", - "Position": { - "x": -295.389984, - "y": -5.134326, - "z": -127.259995 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneGreenHouses", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "07a58e70-dbfe-4226-8b2e-237c3e3675f5", - "Infiltration": "", - "Position": { - "x": 183.65, - "y": -46.69635, - "z": 44.0399933 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "08475ee7-0dfb-4e8e-82c8-e40283ee7d6c", - "Infiltration": "Village", - "Position": { - "x": 452.730042, - "y": -54.49, - "z": 190.86 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "085a9fa8-472e-4928-aa1e-ddb8f766e9a0", - "Infiltration": "Village", - "Position": { - "x": 409.830139, - "y": -54.32, - "z": 90.91002 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "08eb4844-1742-4e80-ad4c-34133be10b53", - "Infiltration": "Village", - "Position": { - "x": 345.330139, - "y": -64.34, - "z": 333.19 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0a656c0b-40b8-4dfb-9821-eaf053da5bd8", - "Infiltration": "Village", - "Position": { - "x": 420.5501, - "y": -54.49, - "z": 153.660019 - }, - "Rotation": 230.53, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0baf5b66-31b0-4c2f-8f2e-4f4320a25243", - "Infiltration": "Village", - "Position": { - "x": 338.3902, - "y": -41.93, - "z": -272.38 - }, - "Rotation": 349.17, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0cd882b4-e077-4f54-8d63-e368eb600ba7", - "Infiltration": "Village", - "Position": { - "x": 336.5401, - "y": -41.72, - "z": -269.62 - }, - "Rotation": 349.17, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0d4d2d64-9c67-4369-92c6-993bdcc2745f", - "Infiltration": "Riverside", - "Position": { - "x": -872.579956, - "y": -43.98, - "z": 5.260025 - }, - "Rotation": 319.98, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0e75428d-8a9e-468b-ba73-1275cd67171d", - "Infiltration": "Riverside", - "Position": { - "x": -837.809937, - "y": -55.4400024, - "z": 279.81 - }, - "Rotation": 316.25, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneTunnel", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 220 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 4, - "Id": "0f1035bf-0342-4430-8b92-e463f896fc94", - "Infiltration": "", - "Position": { - "x": 328.860016, - "y": -64.65135, - "z": 326.53 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0f334893-a01d-44f4-a684-0040c05f7029", - "Infiltration": "Village", - "Position": { - "x": -58.0944748, - "y": -17.9813957, - "z": -189.791611 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSanatorium1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "0fa17404-2e01-429c-846b-783becee6163", - "Infiltration": "", - "Position": { - "x": -156.265991, - "y": -3.644, - "z": -82.5099945 - }, - "Rotation": 19.4150581, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "10914095-ef6a-448c-b03a-ec69c3c6bba0", - "Infiltration": "Village", - "Position": { - "x": 351.770081, - "y": -64.33, - "z": 334.900024 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "10b6c3eb-78df-4487-9e83-ac0240062165", - "Infiltration": "Riverside", - "Position": { - "x": -847.959961, - "y": -55.86, - "z": 372.850037 - }, - "Rotation": 212.59, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "11941eb6-c3a3-4386-b873-8afa20560fcf", - "Infiltration": "Riverside", - "Position": { - "x": -876.2899, - "y": -44.89, - "z": 6.17002869 - }, - "Rotation": 2.969004, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "12a9fde9-327d-4822-9f39-a77589cc8e6e", - "Infiltration": "Village", - "Position": { - "x": 447.020081, - "y": -54.3, - "z": 103.070023 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "12c16199-687e-4ad7-a6e6-1ae437d0e676", - "Infiltration": "Riverside", - "Position": { - "x": -810.4599, - "y": -59.17, - "z": 458.040039 - }, - "Rotation": 198.48, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "13b9c174-67fb-4657-a020-34bd04140295", - "Infiltration": "Village", - "Position": { - "x": -54.6084747, - "y": -18.2693958, - "z": -191.1216 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneMeteoStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "147b236f-de32-4086-8f95-00ca3ab4714b", - "Infiltration": "", - "Position": { - "x": -443.9, - "y": -25.962225, - "z": 259.87 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "153e740f-bdd1-4bd7-8a6c-668b14616343", - "Infiltration": "Riverside", - "Position": { - "x": -780.16, - "y": -40.2, - "z": 3.82002258 - }, - "Rotation": 12.65, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneForestTruck", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 165 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 4, - "Id": "17c35797-5dff-4662-b4d1-ccfea505387a", - "Infiltration": "", - "Position": { - "x": 27.3945618, - "y": -20.5940456, - "z": -211.800018 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePassClose", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 175 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "19e44d79-d199-444b-97e7-89e4b6a48ca2", - "Infiltration": "", - "Position": { - "x": -891.31, - "y": -46.061348, - "z": 2.02999878 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRailWays", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "1a879937-4315-42ca-92f4-4b56d45e3c69", - "Infiltration": "", - "Position": { - "x": -697.6, - "y": -59.5997047, - "z": 497.7 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePowerStationSniper", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 10, - "DelayToCanSpawnSec": 1700, - "Id": "1af5e649-023c-44a3-b55b-29bf555cd816", - "Infiltration": "", - "Position": { - "x": -220.86, - "y": -29.7583351, - "z": 189.53 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1aff115b-65d6-4b27-bbe1-4f147541caad", - "Infiltration": "Village", - "Position": { - "x": 269.370178, - "y": -56.42, - "z": 188.090012 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1c009c5c-0593-443b-8ae3-3ecf3bcf89ed", - "Infiltration": "Village", - "Position": { - "x": 434.240051, - "y": -54.28, - "z": 70.2500153 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBunker", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 98.1 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 4, - "Id": "1c0dbe2f-d873-4ae8-9505-43a0f777aef9", - "Infiltration": "", - "Position": { - "x": -134.798325, - "y": -10.67804, - "z": -351.499146 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1d8bfebb-e39d-4bf4-9f24-9275e754b857", - "Infiltration": "Village", - "Position": { - "x": 433.95, - "y": -54.33, - "z": 67.82002 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGreenHouses", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 112 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "1e6d24f0-05d1-400b-bfff-a901d0c1dfab", - "Infiltration": "", - "Position": { - "x": 160.559982, - "y": -48.30135, - "z": 62.09999 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBunkeSniper", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 12, - "DelayToCanSpawnSec": 1700, - "Id": "1e9215b0-eca7-43e9-a098-750d3a1d0718", - "Infiltration": "", - "Position": { - "x": -151.93, - "y": -4.86000061, - "z": -268.55 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "220a409b-6d31-4223-b3b6-21b6ba5e5d95", - "Infiltration": "Village", - "Position": { - "x": -27.5484772, - "y": -21.1193962, - "z": -129.1916 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2231842f-d5f9-411a-ab01-02072fb11297", - "Infiltration": "Village", - "Position": { - "x": -61.54648, - "y": -18.0833969, - "z": -193.42662 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneStartVillage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 4, - "Id": "2510bd08-e90c-4d01-9d63-2fd9115851bc", - "Infiltration": "", - "Position": { - "x": 459.89, - "y": -54.4532776, - "z": 92.4900055 - }, - "Rotation": 277.9801, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "28048da3-ecaa-45a6-8c3c-ff5c2956fe7c", - "Infiltration": "Village", - "Position": { - "x": 342.230042, - "y": -56.29, - "z": 116.64003 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2912d83e-b7a3-404e-8cc2-5a801c64e524", - "Infiltration": "Village", - "Position": { - "x": -55.58847, - "y": -18.5793972, - "z": -187.481613 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2c11e954-f7e5-4a67-845c-54328c8b9c27", - "Infiltration": "Riverside", - "Position": { - "x": -916.209961, - "y": -58.34, - "z": 252.64003 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGreenHouses", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 112 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "2cff2324-432f-4e6e-bf5a-d15bff5354d1", - "Infiltration": "", - "Position": { - "x": 110.25, - "y": -48.48343, - "z": 138.139984 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneMeteoStation", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "2dbe2a68-dcba-4334-8e7f-04c5b77e2288", - "Infiltration": "", - "Position": { - "x": -490.86, - "y": -24.1813488, - "z": 203.33 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2dd04c2a-7e3e-426f-b6eb-9cf99ae0f01e", - "Infiltration": "Riverside", - "Position": { - "x": -469.34845, - "y": -27.859396, - "z": -96.37161 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZonePowerStation", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "2e857187-f38e-4479-a6b8-19edbe9f1c50", - "Infiltration": "", - "Position": { - "x": -254.633, - "y": -45.5623474, - "z": 218.166992 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePowerStation", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 15 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "30d699d9-b86d-4d75-b894-ad7f7d2396ed", - "Infiltration": "", - "Position": { - "x": -225.588989, - "y": -40.7633476, - "z": 167.765 - }, - "Rotation": 84.57507, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBusStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 4, - "Id": "320348b2-0ef0-4df1-9643-4fb2be5c21c0", - "Infiltration": "", - "Position": { - "x": -72.17, - "y": -21.967, - "z": 10.4600067 - }, - "Rotation": 233.659576, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneStartVillage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 4, - "Id": "33cc2001-9b63-41bd-8f70-4c5406990171", - "Infiltration": "", - "Position": { - "x": 459.31, - "y": -54.17835, - "z": 55.7920074 - }, - "Rotation": 266.625641, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneForestGasStation", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "349818b4-45de-4996-8c10-364391288c5c", - "Infiltration": "", - "Position": { - "x": -87.8699951, - "y": -42.39235, - "z": 272.28 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "34ac29bf-3a27-4e1f-816c-0731442834a2", - "Infiltration": "Village", - "Position": { - "x": 346.95, - "y": -64.76, - "z": 335.49 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneIsland", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 117 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 4, - "Id": "3667563e-7a11-4b78-8343-2d1c16a34616", - "Infiltration": "", - "Position": { - "x": 203.769989, - "y": -64.57, - "z": 441.370026 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "37094848-6ca3-4b9f-9b06-4abc64e144bf", - "Infiltration": "Village", - "Position": { - "x": 447.750061, - "y": -54.46, - "z": 145.64003 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "373f1d18-1627-415d-8f9f-0acf5d415f4b", - "Infiltration": "Riverside", - "Position": { - "x": -932.7399, - "y": -54.97, - "z": 160.74 - }, - "Rotation": 30.89, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "382b4a79-0a0f-4242-b444-0bdaf7f1b52b", - "Infiltration": "Village", - "Position": { - "x": -55.1084747, - "y": -18.2493973, - "z": -189.201614 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneForestTruck", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 165 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 4, - "Id": "3854290b-d134-402f-bf5a-0255dd0639bd", - "Infiltration": "", - "Position": { - "x": 13.6999817, - "y": -26.2264748, - "z": -163.839981 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRailWays", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "398cd48f-d699-4073-9878-2d699fbe76aa", - "Infiltration": "", - "Position": { - "x": -581, - "y": -59.3917923, - "z": 499.800018 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3a50464e-38ed-483d-8945-8c43ab5850e6", - "Infiltration": "Riverside", - "Position": { - "x": -597.399963, - "y": -45.4100037, - "z": 155.610031 - }, - "Rotation": 88.89, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSanatorium2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "3ca7c6e3-3fb2-4a6d-ac4b-1eb77a32b9ac", - "Infiltration": "", - "Position": { - "x": -326.03, - "y": -4.52999973, - "z": -105.619995 - }, - "Rotation": 19.4150581, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePort", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 95 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 4, - "Id": "3d50c926-5b75-4541-af13-f8c0e730e72d", - "Infiltration": "", - "Position": { - "x": -296.3232, - "y": -62.0376167, - "z": 490.1558 - }, - "Rotation": 197.8742, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3eddbe61-12b7-4bc2-aa73-2087c2eb9f2b", - "Infiltration": "Village", - "Position": { - "x": 448.879944, - "y": -54.46, - "z": 188.720016 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3fd55f19-ef15-4017-b468-cff2d9fe9b35", - "Infiltration": "Riverside", - "Position": { - "x": -932.111938, - "y": -54.481, - "z": 162.864029 - }, - "Rotation": 33.26, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneIsland", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 117 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 4, - "Id": "408efa74-7257-4ffe-87f2-da4e05bacc23", - "Infiltration": "", - "Position": { - "x": 206.450012, - "y": -64.8, - "z": 443.370026 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4161383c-4c28-487c-a858-7733e662bec4", - "Infiltration": "Village", - "Position": { - "x": 341.460022, - "y": -56.29, - "z": 122.720016 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneMeteoStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "41baa266-6cd1-4990-ad73-443f9102cddf", - "Infiltration": "", - "Position": { - "x": -520.37, - "y": -25.6599045, - "z": 284.63 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePort", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 131.2 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 4, - "Id": "4221f0c0-6158-4e35-9a72-cb10c741706f", - "Infiltration": "", - "Position": { - "x": -292.6332, - "y": -62.0376167, - "z": 493.6858 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4349ecfb-ccd5-4a68-be17-d7fc1fe7cbb8", - "Infiltration": "Village", - "Position": { - "x": 335.399963, - "y": -41.8500023, - "z": -273.149963 - }, - "Rotation": 349.17, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "438f6b11-098b-4b8a-96ed-954766b846e3", - "Infiltration": "Village", - "Position": { - "x": 282.750061, - "y": -56.24, - "z": 172.330032 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSmuglers", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 26, - "DelayToCanSpawnSec": 4, - "Id": "43bffd59-d912-4815-8999-33b995da8646", - "Infiltration": "", - "Position": { - "x": -632.42, - "y": -26.8423481, - "z": -240.12 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneMeteoStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "4463561f-1ba3-4a5c-afdc-3981a4fd9642", - "Infiltration": "", - "Position": { - "x": -443.47998, - "y": -25.283453, - "z": 248.040009 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4514864e-beb2-4e98-aa1e-c39d9da1db0c", - "Infiltration": "Riverside", - "Position": { - "x": -596.4799, - "y": -45.4100037, - "z": 157.780045 - }, - "Rotation": 108.770004, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBunker", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 98.1 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 4, - "Id": "46825a63-3cc2-4652-a14d-f0ef49bd72b3", - "Infiltration": "", - "Position": { - "x": -156.61, - "y": -13.4983215, - "z": -343.31 - }, - "Rotation": 44.298996, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePowerStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "46f4c17a-b7f5-4240-b591-78f776dcfd6d", - "Infiltration": "", - "Position": { - "x": -217.540009, - "y": -41.0012, - "z": 166.4 - }, - "Rotation": 276.228271, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneTunnel", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 212 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 4, - "Id": "4726b2e5-f64a-46b4-835a-f766f19ba25c", - "Infiltration": "", - "Position": { - "x": 357.550018, - "y": -59.62579, - "z": 328.87 - }, - "Rotation": 222.77774, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "474b3d06-7368-4b8d-9a4d-2c9c223b71b2", - "Infiltration": "Village", - "Position": { - "x": 442.0301, - "y": -54.3, - "z": 103.970016 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "47b2c388-edcf-4366-ad4b-f323db229951", - "Infiltration": "Village", - "Position": { - "x": 235.570114, - "y": -56.13, - "z": 129.720016 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZonePort", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 4, - "Id": "47ea469e-314d-4d28-b095-32517d782669", - "Infiltration": "", - "Position": { - "x": -358.3532, - "y": -62.0151253, - "z": 555.8658 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "47f2d197-7e3e-49b6-803b-66fea4a4f34e", - "Infiltration": "Riverside", - "Position": { - "x": -776.879944, - "y": -40.06, - "z": 2.35002136 - }, - "Rotation": 17.1399956, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4b2a193c-2749-4497-93ba-75a8f6a3e218", - "Infiltration": "Riverside", - "Position": { - "x": -816.4799, - "y": -41.13, - "z": 2.33000183 - }, - "Rotation": 3.259948, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGasStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 20, - "DelayToCanSpawnSec": 4, - "Id": "4cf56dad-70f1-457c-824a-1628a508933a", - "Infiltration": "", - "Position": { - "x": -218.900024, - "y": -55.6409073, - "z": 379.015839 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4d45d646-18b4-4602-b06d-128c933eb919", - "Infiltration": "Riverside", - "Position": { - "x": -693.9699, - "y": -59.57, - "z": 497.599976 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4e3a2705-96a2-467a-af09-a6f9b4a67f3e", - "Infiltration": "Village", - "Position": { - "x": 441.909973, - "y": -54.3, - "z": 106.030014 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4f340491-d43e-4fd5-8447-65c925eacce6", - "Infiltration": "Riverside", - "Position": { - "x": -808.54, - "y": -59.17, - "z": 457.39 - }, - "Rotation": 199.92, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "50953d91-6601-4bca-ae2b-84708e1eff5d", - "Infiltration": "Village", - "Position": { - "x": 408.960022, - "y": -54.33, - "z": 168.61 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZonePort", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 95 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 4, - "Id": "512349e6-7fbe-4f54-9234-59bcdb913d84", - "Infiltration": "", - "Position": { - "x": -309.5032, - "y": -62.0376167, - "z": 505.5958 - }, - "Rotation": 197.8742, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBunker", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 98.1 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 4, - "Id": "524d3dd3-fc54-4252-a2d6-3796462f47ab", - "Infiltration": "", - "Position": { - "x": -116.02, - "y": -10, - "z": -360.64 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "525f08d2-b663-480c-8544-3c04e8be3067", - "Infiltration": "Riverside", - "Position": { - "x": -472.628479, - "y": -27.5093975, - "z": -97.03162 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "54093830-8555-41f4-929f-2faa687aedd7", - "Infiltration": "Village", - "Position": { - "x": -62.58747, - "y": -17.7573967, - "z": -187.3036 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "54571ae3-8329-4326-a812-678b5ead1d2e", - "Infiltration": "Riverside", - "Position": { - "x": -667.779968, - "y": -54.45, - "z": 324.839966 - }, - "Rotation": 120.843109, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSanatorium2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "5479a2e2-883c-4371-86a2-01098fb73d45", - "Infiltration": "", - "Position": { - "x": -318.789978, - "y": -5.134326, - "z": -173.12999 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSanatorium1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "554075de-18c4-468b-9145-4bc8421fa158", - "Infiltration": "", - "Position": { - "x": -197.609985, - "y": -5.05, - "z": -169.939987 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "56a56015-97cc-46fc-8940-03dd1d9dd3ea", - "Infiltration": "Riverside", - "Position": { - "x": -846.319946, - "y": -56, - "z": 372.789978 - }, - "Rotation": 218.2, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "56d35730-0f36-4396-858d-b2128289b72a", - "Infiltration": "Riverside", - "Position": { - "x": -837.1699, - "y": -55.5, - "z": 276.69 - }, - "Rotation": 123.109993, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGreenHouses", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 112 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "57664e55-8b30-470e-9835-b0a782b742ea", - "Infiltration": "", - "Position": { - "x": 123.419983, - "y": -48.44106, - "z": 55.3199921 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "58474a2e-3915-4fd5-b6e1-5fc4a581c2f2", - "Infiltration": "Village", - "Position": { - "x": 453.490051, - "y": -54.46, - "z": 188.680008 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "58a5c474-0e2f-4f65-98d0-50106e504300", - "Infiltration": "Riverside", - "Position": { - "x": -783.529968, - "y": -40.16, - "z": 4.92002869 - }, - "Rotation": 9.06, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "594acb82-cc88-43b0-bff1-0199e4195afb", - "Infiltration": "Village", - "Position": { - "x": -58.1954727, - "y": -18.2153969, - "z": -191.7256 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGreenHouses", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 5 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "5a7bf62c-c61b-45b5-9ac1-bbfa945c9718", - "Infiltration": "", - "Position": { - "x": 122.47, - "y": -48.44106, - "z": 92.81999 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBunkeSniper", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 12, - "DelayToCanSpawnSec": 1700, - "Id": "5b19b22a-c04f-4370-b653-6c6b80247016", - "Infiltration": "", - "Position": { - "x": -153.28, - "y": -4.86000061, - "z": -269.44 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5c2478d1-5fbb-4750-9fbd-90ebe67cd81b", - "Infiltration": "Riverside", - "Position": { - "x": -474.9485, - "y": -29.2193966, - "z": -88.5516052 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSmuglers", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 27, - "DelayToCanSpawnSec": 4, - "Id": "5c28c68f-15eb-4a21-98ae-29e4f6439d09", - "Infiltration": "", - "Position": { - "x": -550.27, - "y": -29.54135, - "z": -211.32 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePowerStationSniper", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 10, - "DelayToCanSpawnSec": 1700, - "Id": "5dea0b6d-5d17-4cb0-bc82-a411e87cc99b", - "Infiltration": "", - "Position": { - "x": -232.69, - "y": -29.7583351, - "z": 192.980011 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5deae6e8-5819-4896-a198-3e5b42e3e863", - "Infiltration": "Village", - "Position": { - "x": -58.4224777, - "y": -18.4503975, - "z": -194.120621 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5e1f7e2e-90b3-4dd8-bc05-5d708d558f4b", - "Infiltration": "Riverside", - "Position": { - "x": -837.819946, - "y": -55.170002, - "z": 281.51 - }, - "Rotation": 22.96, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5ed61a3a-1479-4875-af7a-9d4110220734", - "Infiltration": "Village", - "Position": { - "x": 447.0501, - "y": -54.3, - "z": 104.86 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneTunnel", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 4, - "Id": "5f737470-952a-4e02-88dc-1804c4f07bba", - "Infiltration": "", - "Position": { - "x": 418.5, - "y": -47.68135, - "z": 255.329987 - }, - "Rotation": 200.381073, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5fe5b3c3-0f56-44b9-b96e-36654b033117", - "Infiltration": "Riverside", - "Position": { - "x": -689.09, - "y": -59.57, - "z": 497.410034 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6107b7f0-6ea8-4317-82d6-d67f696a8183", - "Infiltration": "Riverside", - "Position": { - "x": -472.438477, - "y": -27.0293961, - "z": -103.4716 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "61421812-9ef3-4ca3-88bb-ca526149814d", - "Infiltration": "Village", - "Position": { - "x": -58.6384735, - "y": -18.609396, - "z": -195.821609 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneMeteoStation", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "6203ef1f-8baf-42d9-b96e-c3fa79742ba8", - "Infiltration": "", - "Position": { - "x": -527.13, - "y": -26.95135, - "z": 287.35 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "62462903-f1aa-4951-9e5b-5316a1eb11a0", - "Infiltration": "Riverside", - "Position": { - "x": -836.779968, - "y": -55.56, - "z": 275.040039 - }, - "Rotation": 199.74, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneIsland", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 117 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 4, - "Id": "62b19ad5-4171-4dd7-88ea-f8682e2e9516", - "Infiltration": "", - "Position": { - "x": 244.94, - "y": -64.2984848, - "z": 442.58 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneStartVillage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 4, - "Id": "632f1f2d-5a02-4e51-8997-d5171fa26a32", - "Infiltration": "", - "Position": { - "x": 459.38, - "y": -54.585, - "z": 181.860016 - }, - "Rotation": 91.269104, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "635421ff-68db-4d8c-b45d-c79704789dd5", - "Infiltration": "Riverside", - "Position": { - "x": -468.9585, - "y": -27.5993958, - "z": -99.65161 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZonePassClose", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "6394c2ff-a787-497a-a82b-89bf528f0009", - "Infiltration": "", - "Position": { - "x": -893.32, - "y": -47.8613472, - "z": 35.4900055 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6420bc23-31ab-4b72-9149-90c6405f9852", - "Infiltration": "Riverside", - "Position": { - "x": -665.9699, - "y": -54.56, - "z": 326.3 - }, - "Rotation": 120.843109, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6433d24d-cd7b-45a9-9383-04971236e848", - "Infiltration": "Village", - "Position": { - "x": 391.45, - "y": -60.17, - "z": 254.159988 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneIsland", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 117 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 4, - "Id": "653b1a4b-8863-496d-89cf-0bfd8393ba61", - "Infiltration": "", - "Position": { - "x": 199.670013, - "y": -64.42, - "z": 436.79 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "653c7454-bcd7-41f9-9fab-8b978009c83b", - "Infiltration": "Riverside", - "Position": { - "x": -919.329956, - "y": -58.25, - "z": 258.969971 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6581da65-0aa5-44da-a2cb-9bacb0ce7657", - "Infiltration": "Riverside", - "Position": { - "x": -695.57, - "y": -59.57, - "z": 497.68 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRailWays", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "65e6d797-7fed-4ffa-918d-e85d30ffe1d2", - "Infiltration": "", - "Position": { - "x": -638.28, - "y": -59.2350578, - "z": 423.48 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneMeteoStation", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "697c5025-1260-44de-8473-a3603fcee3d1", - "Infiltration": "", - "Position": { - "x": -464.853973, - "y": -25.3133488, - "z": 272.68 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "698b0cea-682d-44e8-9e5e-35bbcb29acb9", - "Infiltration": "Village", - "Position": { - "x": 454.710022, - "y": -54.56, - "z": 191.99 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6a9699f3-46c0-4c72-bcb0-2075ffe2a777", - "Infiltration": "Village", - "Position": { - "x": -62.4834747, - "y": -18.0183964, - "z": -190.145615 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6b5f3dea-8c56-4203-a688-fc19b973ccc8", - "Infiltration": "Village", - "Position": { - "x": 408.480042, - "y": -54.44, - "z": 163.520035 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSmuglers", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 26, - "DelayToCanSpawnSec": 4, - "Id": "6bd9ae1b-dfdc-486a-b3fa-8ea43dafd480", - "Infiltration": "", - "Position": { - "x": -623.65, - "y": -26.7413483, - "z": -224.44 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6cae38ee-8013-49e2-83e6-74e038360c5e", - "Infiltration": "Riverside", - "Position": { - "x": -817.199951, - "y": -41.24, - "z": 3.97001648 - }, - "Rotation": 340.76, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6dcbdea1-20f6-4b76-afcb-b286e5bc139a", - "Infiltration": "Village", - "Position": { - "x": 388.870178, - "y": -58.39, - "z": 252.770035 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZonePort", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 95 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 4, - "Id": "6fd75375-cc0d-4878-8a20-b0570b76e685", - "Infiltration": "", - "Position": { - "x": -323.5232, - "y": -62.0376167, - "z": 498.4858 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBunker", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 4, - "Id": "7046c91c-594b-40ef-87d9-2e7201f5637b", - "Infiltration": "", - "Position": { - "x": -143.76, - "y": -11.7710037, - "z": -343.349976 - }, - "Rotation": 27.9957886, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSanatorium1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "743b4654-92d0-419c-9a67-ba4ceaf8d76d", - "Infiltration": "", - "Position": { - "x": -131.652, - "y": -5.080117, - "z": -103.83 - }, - "Rotation": 301.760071, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSanatorium2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "754e02fa-b297-4522-82bc-809ed153f6a2", - "Infiltration": "", - "Position": { - "x": -350.31, - "y": -5.134326, - "z": -175.090012 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "75c38946-8152-4995-9d27-92bf29808f66", - "Infiltration": "Village", - "Position": { - "x": 235.570114, - "y": -56.12, - "z": 131.48 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZonePassClose", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 165 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "765e1313-ab5f-49a5-a13c-d7e54a32f8dc", - "Infiltration": "", - "Position": { - "x": -874.03, - "y": -44.55135, - "z": 6.779999 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "76f61bd4-adb9-4376-9295-1806c79e4cd6", - "Infiltration": "Riverside", - "Position": { - "x": -692.32, - "y": -59.57, - "z": 497.57 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7873d881-5bb9-4f2b-a0c4-35302ec1d706", - "Infiltration": "Village", - "Position": { - "x": 318.4002, - "y": -54.56, - "z": -144.009979 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZonePort", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 71.23 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 4, - "Id": "78e220d5-bedf-49b0-b637-1f6f19a13fd3", - "Infiltration": "", - "Position": { - "x": -358.7232, - "y": -62.0376167, - "z": 523.105835 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7bbe3e83-685a-4fac-950c-64edb79e9573", - "Infiltration": "Village", - "Position": { - "x": 446.350159, - "y": -53.9, - "z": -74.739975 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7c5203e0-f239-41b6-be4e-93366faaf857", - "Infiltration": "Village", - "Position": { - "x": -62.5794754, - "y": -17.7573967, - "z": -188.904617 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSmuglers", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 26, - "DelayToCanSpawnSec": 4, - "Id": "7e1a96fa-8003-40a0-96bb-381e7ae9c00c", - "Infiltration": "", - "Position": { - "x": -604.62, - "y": -29.8313484, - "z": -176.88 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7f1651f7-d0c1-4a6d-a436-c2a425aa226c", - "Infiltration": "Village", - "Position": { - "x": -23.7584686, - "y": -21.1193962, - "z": -137.621613 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7f6f6ea4-f3eb-45d2-9028-2ec37ee7e0de", - "Infiltration": "Village", - "Position": { - "x": 450.850159, - "y": -54.46, - "z": 139.42 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7fa214c7-fc29-4dff-99a3-bb155d815c4a", - "Infiltration": "Village", - "Position": { - "x": 445.590149, - "y": -53.65, - "z": -71.33998 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7fd13404-5b44-4bff-b18b-b42ff698b52c", - "Infiltration": "Riverside", - "Position": { - "x": -876.529968, - "y": -43.85, - "z": 1.32002258 - }, - "Rotation": 305.88, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8003226b-ab94-41da-81c7-aef012c52444", - "Infiltration": "Riverside", - "Position": { - "x": -598.2299, - "y": -45.15, - "z": 154.060013 - }, - "Rotation": 94.42, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZonePowerStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "8165dd60-fec8-493f-a745-5761aead7580", - "Infiltration": "", - "Position": { - "x": -248.72998, - "y": -40.9998665, - "z": 158.86 - }, - "Rotation": 200.5934, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "81edf0dc-9ee0-4483-a76e-a80dfc7ed31e", - "Infiltration": "Village", - "Position": { - "x": 433.7801, - "y": -54.31, - "z": 65.31001 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "842e293c-842b-482b-a9df-8bf374a6811e", - "Infiltration": "Riverside", - "Position": { - "x": -815.569946, - "y": -59.17, - "z": 458.469971 - }, - "Rotation": 162.78, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "84a96df9-883b-496e-b44d-9fef512b29a0", - "Infiltration": "Riverside", - "Position": { - "x": -851.179932, - "y": -56.17, - "z": 372.7 - }, - "Rotation": 209.65, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8526c84a-ce86-463a-9ea4-4acc7ce6a97b", - "Infiltration": "Village", - "Position": { - "x": 431.3902, - "y": -54.3, - "z": 66.68001 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "85c38e4d-b7d2-4ae6-8a0f-cda5d0596d54", - "Infiltration": "Village", - "Position": { - "x": 233.840134, - "y": -56.14, - "z": 130.820023 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSmuglers", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 26, - "DelayToCanSpawnSec": 4, - "Id": "86cc6aa6-add6-4214-a5c4-bf38417556d9", - "Infiltration": "", - "Position": { - "x": -604.48, - "y": -29.8313484, - "z": -179.41 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneForestSpawn", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 165 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 4, - "Id": "86f7377d-a5a1-4b38-b15e-57a94d708490", - "Infiltration": "", - "Position": { - "x": 143.34, - "y": -33.54049, - "z": -288.24 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRailWays", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "885ee204-a09a-447e-a771-75a29f89c972", - "Infiltration": "", - "Position": { - "x": -621.76, - "y": -59.59, - "z": 496.840027 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "89c56336-22f0-47ea-91e5-6a3866c9c0ed", - "Infiltration": "Village", - "Position": { - "x": 342.320129, - "y": -56.29, - "z": 114.560013 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSanatorium1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "89cfc8eb-1c43-4866-ba5e-39b520e7f838", - "Infiltration": "", - "Position": { - "x": -231.303, - "y": -4.1430006, - "z": -136.390991 - }, - "Rotation": 19.4150581, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8a734ba8-6fa0-4d55-aa5c-ab260a307087", - "Infiltration": "Village", - "Position": { - "x": -23.70848, - "y": -21.1193962, - "z": -130.091614 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneIsland", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 117 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 4, - "Id": "8b1ffc39-37ae-4544-ada6-98a0fbd23742", - "Infiltration": "", - "Position": { - "x": 228.1, - "y": -64.56713, - "z": 425.740021 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8b3b39ba-1662-4d2f-9757-9ceca0a1d311", - "Infiltration": "Riverside", - "Position": { - "x": -818.1099, - "y": -41.2, - "z": 2.36000061 - }, - "Rotation": 341.800049, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSanatorium1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "8ba4ba4f-d64c-4df4-83cf-0187acea72ac", - "Infiltration": "", - "Position": { - "x": -195.01, - "y": -5.16733074, - "z": -113.72 - }, - "Rotation": 19.4150581, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSmuglers", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 26, - "DelayToCanSpawnSec": 4, - "Id": "8d3e2d25-b7a0-4900-a0d1-a009e8e8aeae", - "Infiltration": "", - "Position": { - "x": -622.62, - "y": -29.7413483, - "z": -172.66 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSanatorium2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "8d725d25-76b6-4ced-99ab-f5992222ad85", - "Infiltration": "", - "Position": { - "x": -291.389984, - "y": -5.84999943, - "z": -54.5399933 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSanatorium1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "8e586434-022a-4995-a3af-7afd333b4771", - "Infiltration": "", - "Position": { - "x": -135.68, - "y": -5.13, - "z": -171.279984 - }, - "Rotation": 359.157959, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneForestGasStation", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "8e938d6c-9539-4e49-8b89-9cc43fe7312e", - "Infiltration": "", - "Position": { - "x": -96.84, - "y": -41.01888, - "z": 211.62999 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSanatorium2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "8fbb5192-327b-4529-aee0-736d4768a6b9", - "Infiltration": "", - "Position": { - "x": -342.65, - "y": -3.711999, - "z": -82.83 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneGasStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 20, - "DelayToCanSpawnSec": 4, - "Id": "8fdd3b42-e9d6-4423-98af-8e20428693d9", - "Infiltration": "", - "Position": { - "x": -215.5632, - "y": -55.7550659, - "z": 407.585815 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "914d1a86-0305-4e7c-b9ab-913ca92c1233", - "Infiltration": "Riverside", - "Position": { - "x": -873.889954, - "y": -44.58, - "z": 8.420029 - }, - "Rotation": 328.44, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "91ecd38d-841e-49fa-8c2c-8edae515393f", - "Infiltration": "Village", - "Position": { - "x": 388.31012, - "y": -59.16, - "z": 261.210022 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "92163c32-233b-42a0-ba3a-be10554ac266", - "Infiltration": "Village", - "Position": { - "x": -62.2004776, - "y": -18.0833969, - "z": -191.572617 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9234a0bc-67f9-4015-98f8-faed8d6377b1", - "Infiltration": "Village", - "Position": { - "x": -23.70848, - "y": -21.1193962, - "z": -133.741608 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9236eae8-6d72-4ac9-94b2-f75a282c53f5", - "Infiltration": "Village", - "Position": { - "x": 404.909973, - "y": -54.3, - "z": 83.58003 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "92c3485f-0cf2-40f4-8b30-a7bed149d5c1", - "Infiltration": "Riverside", - "Position": { - "x": -814.779968, - "y": -41.08, - "z": 2.33000183 - }, - "Rotation": 42.29, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "92d8e295-31b6-49ed-a345-0d527f169f8c", - "Infiltration": "Riverside", - "Position": { - "x": -683.5899, - "y": -40.09, - "z": 122.38002 - }, - "Rotation": 26.4700012, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGreenHouses", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "93324554-5b5c-4e70-af80-a3c1dcaab6c9", - "Infiltration": "", - "Position": { - "x": 122.43399, - "y": -48.48343, - "z": 136.44 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneGreenHouses", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 5 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "93778564-febf-4ca2-a846-a8ca4bbec91d", - "Infiltration": "", - "Position": { - "x": 128.37, - "y": -48.44106, - "z": 76.78 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSanatorium2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "9387b94c-8b30-473b-9b51-ed923ac35abc", - "Infiltration": "", - "Position": { - "x": -343.06, - "y": -5.16733074, - "z": -113.16 - }, - "Rotation": 19.4150581, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "963adbd1-9af1-4b86-ad81-c184ce1e88ea", - "Infiltration": "Village", - "Position": { - "x": -23.7184753, - "y": -21.1193962, - "z": -131.591614 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "97dfda16-2fa5-4511-baf7-da5833763b90", - "Infiltration": "Village", - "Position": { - "x": -27.48848, - "y": -21.1193962, - "z": -125.871613 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSmuglers", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 26, - "DelayToCanSpawnSec": 4, - "Id": "97f3983b-e39a-44b8-85b1-ec54a9a82e5b", - "Infiltration": "", - "Position": { - "x": -644.133, - "y": -26.85735, - "z": -230.226013 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "98684f29-1a14-4872-bfe7-ad4832881a44", - "Infiltration": "Riverside", - "Position": { - "x": -849.509949, - "y": -56.24, - "z": 372.45 - }, - "Rotation": 208.52, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "986d0d12-464b-4d21-beab-1dc3ca37017d", - "Infiltration": "Village", - "Position": { - "x": 282.600159, - "y": -56.24, - "z": 174.13002 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "989704c5-1c3a-4ea2-9a53-4482b17a1faa", - "Infiltration": "Riverside", - "Position": { - "x": -806.57, - "y": -59.24, - "z": 457.170044 - }, - "Rotation": 189.35, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "993e3fea-466e-4e80-ace0-9ead90996f1d", - "Infiltration": "Village", - "Position": { - "x": 340.8001, - "y": -42.05, - "z": -271.269958 - }, - "Rotation": 349.17, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZonePowerStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "9945fa3e-bcf2-4174-98d4-462d5eb0082c", - "Infiltration": "", - "Position": { - "x": -284.300018, - "y": -34.408, - "z": 195.3 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9970036b-c1af-4840-83b9-1e31b4e6cf77", - "Infiltration": "Village", - "Position": { - "x": 235.649948, - "y": -56.12, - "z": 133.270035 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9a5a8591-005c-4ab0-8231-3d3ed8480ebb", - "Infiltration": "Riverside", - "Position": { - "x": -667.629944, - "y": -54.4, - "z": 326.170044 - }, - "Rotation": 120.843109, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9c7c5171-f30e-4d4a-958e-04787fcaed11", - "Infiltration": "Village", - "Position": { - "x": 447.090149, - "y": -54.46, - "z": 143.48 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZonePort", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 71.23 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 4, - "Id": "9de2af3e-cc42-4b8e-bc90-4c9591a8b6ab", - "Infiltration": "", - "Position": { - "x": -340.0132, - "y": -62.021347, - "z": 500.8758 - }, - "Rotation": 55.15233, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9f4a8692-feee-433b-96ad-e01829182d9e", - "Infiltration": "Village", - "Position": { - "x": 442.659973, - "y": -53.73, - "z": -72.3899841 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9fcd3f72-046c-4c1e-a22c-5d07a395f52d", - "Infiltration": "Riverside", - "Position": { - "x": -918.179932, - "y": -58.3, - "z": 255.88002 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a00348b8-05c3-4ce5-a471-69ced43de90e", - "Infiltration": "Village", - "Position": { - "x": 444.1402, - "y": -53.76, - "z": -67.969986 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZonePassClose", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "a0b13bdb-28fc-48d7-a823-e3308a1f1e1f", - "Infiltration": "", - "Position": { - "x": -897.18, - "y": -48.50135, - "z": 44.3399963 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a1087f16-1d66-46f6-be69-7e1c7f50c684", - "Infiltration": "Riverside", - "Position": { - "x": -667.9299, - "y": -54.7, - "z": 323.56 - }, - "Rotation": 120.843109, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a16c0809-6476-48e9-8d18-cb005c3c79b5", - "Infiltration": "Riverside", - "Position": { - "x": -846.319946, - "y": -56.11, - "z": 371.19 - }, - "Rotation": 181.54, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a21768bc-7a14-447d-a682-90715c7e6f7f", - "Infiltration": "Village", - "Position": { - "x": 342.230042, - "y": -56.29, - "z": 118.64003 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGasStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 28, - "DelayToCanSpawnSec": 4, - "Id": "a31a56f9-193b-4e89-84ab-86ab0f7ff509", - "Infiltration": "", - "Position": { - "x": -166.7232, - "y": -55.6530457, - "z": 368.7158 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a4da313e-6e8c-4a25-b770-783791b1c38a", - "Infiltration": "Village", - "Position": { - "x": 347.340149, - "y": -63.89, - "z": 331.36 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a53d95b3-84f3-431a-8436-830ea88578e8", - "Infiltration": "Riverside", - "Position": { - "x": -812.959961, - "y": -59.21, - "z": 458.43 - }, - "Rotation": 192.16, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a595d41d-bd59-4bb4-a70d-3f81e4ae223b", - "Infiltration": "Village", - "Position": { - "x": 448.06012, - "y": -54.46, - "z": 138.100021 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a59d52cb-e92a-4e80-9000-eb2211045742", - "Infiltration": "Village", - "Position": { - "x": -58.1184769, - "y": -18.3203964, - "z": -187.752609 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGasStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 20, - "DelayToCanSpawnSec": 4, - "Id": "a6d117b3-c753-4848-b654-84a0eff51cf9", - "Infiltration": "", - "Position": { - "x": -175.86319, - "y": -55.7017365, - "z": 394.2658 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePowerStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "a78644ff-720f-45a5-b31f-c4d13a96d3c4", - "Infiltration": "", - "Position": { - "x": -251.06, - "y": -40.9783936, - "z": 195.32 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a7bdd115-0387-42f5-8e08-abb08cd5d365", - "Infiltration": "Village", - "Position": { - "x": -23.5684814, - "y": -21.1193962, - "z": -125.551605 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a7c7a365-ea94-481f-b15a-c880eb6df6e6", - "Infiltration": "Riverside", - "Position": { - "x": -684.5699, - "y": -39.27, - "z": 123.930008 - }, - "Rotation": 10.1100016, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a8f40aef-a808-4b51-9961-9d3f9914d22b", - "Infiltration": "Riverside", - "Position": { - "x": -690.6999, - "y": -59.57, - "z": 497.469971 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSanatorium1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "a9fe2b24-041d-4f60-823b-1daa2c58a2d7", - "Infiltration": "", - "Position": { - "x": -146.11, - "y": -3.644, - "z": -82.6199951 - }, - "Rotation": 19.4150581, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "aa0a2c1f-ad7d-4109-b629-1007e8b0698c", - "Infiltration": "Village", - "Position": { - "x": -52.42148, - "y": -19.0333958, - "z": -186.9706 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "aaeee0f3-0a91-46b0-bc4a-9c6bcc31d097", - "Infiltration": "Riverside", - "Position": { - "x": -683.379944, - "y": -39.88, - "z": 119.13002 - }, - "Rotation": 79.99, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ab31a334-dc31-4113-96d5-7fdd00a7a84b", - "Infiltration": "Village", - "Position": { - "x": 235.780075, - "y": -55.98, - "z": 125.530014 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneForestSpawn", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 165 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 4, - "Id": "b0a92ac1-3af8-4fd0-92ae-1e34bc84fae6", - "Infiltration": "", - "Position": { - "x": 148.15, - "y": -37.44359, - "z": -256.349976 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b0ca8c3f-6d94-4e03-8e1f-5b3996478e2f", - "Infiltration": "Riverside", - "Position": { - "x": -666.1799, - "y": -54.56, - "z": 324.74 - }, - "Rotation": 120.843109, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b135a5e9-ed2e-4050-a17e-e9cbebcec1d2", - "Infiltration": "Village", - "Position": { - "x": 451.240051, - "y": -54.46, - "z": 188.780014 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b1f26a54-31e6-448e-a890-706cbc56420d", - "Infiltration": "Riverside", - "Position": { - "x": -683.039856, - "y": -40.03, - "z": 120.710007 - }, - "Rotation": 39.11, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b2ea260b-dceb-44cc-b764-ddd328da57fd", - "Infiltration": "Village", - "Position": { - "x": 433.669983, - "y": -54.3, - "z": 62.7100067 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b39110f2-aac6-4c71-9020-b2783420ced7", - "Infiltration": "Village", - "Position": { - "x": 450.5401, - "y": -54.46, - "z": 143.450027 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGreenHouses", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 112 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "b3c955bd-b0a1-43eb-8141-16d30fb0a07d", - "Infiltration": "", - "Position": { - "x": 78.95999, - "y": -48.4015732, - "z": 91.57999 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSmuglers", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 26, - "DelayToCanSpawnSec": 4, - "Id": "b4bff76c-3f49-49d7-9db4-61cf3a1b9269", - "Infiltration": "", - "Position": { - "x": -659.261, - "y": -26.8373489, - "z": -162.341 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b7c84f7e-ea0b-471b-8608-df2186e054e0", - "Infiltration": "Village", - "Position": { - "x": 412.359924, - "y": -54.43, - "z": 154.73 - }, - "Rotation": 248.009979, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBusStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 4, - "Id": "b7da9272-2a76-4bc4-862f-c9e5dae5918d", - "Infiltration": "", - "Position": { - "x": -100.12, - "y": -22.2816, - "z": 10.7100067 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b90ace25-5546-4bf4-9670-b6ac0ac3c476", - "Infiltration": "Village", - "Position": { - "x": 404.830139, - "y": -54.3, - "z": 90.04002 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSmuglers", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 26, - "DelayToCanSpawnSec": 4, - "Id": "ba3c832a-23bc-4a83-ac4d-483c86999d0a", - "Infiltration": "", - "Position": { - "x": -615.14, - "y": -29.7413483, - "z": -177.85 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ba72e3de-9971-429d-9235-3f1803bb9a4a", - "Infiltration": "Village", - "Position": { - "x": -62.5414734, - "y": -17.5703964, - "z": -186.0136 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGasStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 28, - "DelayToCanSpawnSec": 4, - "Id": "bc626601-5b59-423c-a3b6-fcaf7f841bd9", - "Infiltration": "", - "Position": { - "x": -192.393188, - "y": -55.693428, - "z": 367.8458 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bf0c91c9-6ee4-4fd3-8f03-9c02d79355ce", - "Infiltration": "Riverside", - "Position": { - "x": -934.569946, - "y": -54.56, - "z": 164.200027 - }, - "Rotation": 33.75, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bf77b78e-1f10-45f9-9f56-022636656e57", - "Infiltration": "Riverside", - "Position": { - "x": -918.779968, - "y": -58.27, - "z": 257.420044 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bf83503c-7a7f-4e43-8626-dbb8121e0443", - "Infiltration": "Village", - "Position": { - "x": -23.6084747, - "y": -21.1193962, - "z": -127.801605 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c018a1cc-6aca-45bf-80b6-b0dacc6b796f", - "Infiltration": "Village", - "Position": { - "x": 388.8001, - "y": -60.23, - "z": 249.969986 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c0cfd064-a695-45d7-8be9-e1af339c58b1", - "Infiltration": "Village", - "Position": { - "x": 415.18, - "y": -54.41, - "z": 154.680008 - }, - "Rotation": 220.55, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c0f12c99-a339-46f3-be4b-fa6dbb58184d", - "Infiltration": "Riverside", - "Position": { - "x": -681.379944, - "y": -40.92, - "z": 120.08 - }, - "Rotation": 32.49001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneForestSpawn", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 4, - "Id": "c10525ce-aa6d-4077-98a6-b7580b0acff0", - "Infiltration": "", - "Position": { - "x": 162.59, - "y": -34.96685, - "z": -296.289978 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c2b1f531-0bb7-48f1-9ec8-9adf34f5260e", - "Infiltration": "Riverside", - "Position": { - "x": -872.259949, - "y": -44.01, - "z": 7.96000671 - }, - "Rotation": 319.63, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c5425f62-ced4-4198-9a77-dc186b09fee9", - "Infiltration": "Riverside", - "Position": { - "x": -934.2699, - "y": -55.26, - "z": 162.39003 - }, - "Rotation": 30.3, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZonePort", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 71.23 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 4, - "Id": "c5666fb4-802b-4968-bdf8-b32c06ebb168", - "Infiltration": "", - "Position": { - "x": -320.104218, - "y": -61.55635, - "z": 487.7708 - }, - "Rotation": 55.15233, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c5d9e312-8420-4e93-895b-edb98bd378e2", - "Infiltration": "Village", - "Position": { - "x": -52.20047, - "y": -18.7573967, - "z": -191.817612 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c65fa07d-bbea-4dbc-a1a8-de4e6cc58a38", - "Infiltration": "Village", - "Position": { - "x": 315.970032, - "y": -54.56, - "z": -138.359985 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c7cb0954-dda5-42e0-9b79-a46147072046", - "Infiltration": "Riverside", - "Position": { - "x": -470.378479, - "y": -29.2793961, - "z": -88.11162 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneStartVillage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 4, - "Id": "c8604a7e-7edf-4ca6-bd3b-15b1c2a7610c", - "Infiltration": "", - "Position": { - "x": 458.95, - "y": -54.54093, - "z": 159.47 - }, - "Rotation": 89.74151, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c9cf5a12-0263-4478-8f0d-f6c73e39080a", - "Infiltration": "Riverside", - "Position": { - "x": -471.468445, - "y": -28.7993965, - "z": -91.53162 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSmuglers", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 26, - "DelayToCanSpawnSec": 4, - "Id": "caa3664a-b205-46fa-b474-4a427ec98b4b", - "Infiltration": "", - "Position": { - "x": -655.188, - "y": -26.8373489, - "z": -164.215 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSanatorium1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "cbc9edea-585f-441b-bc7d-e1e7ea1b9a7e", - "Infiltration": "", - "Position": { - "x": -170.957, - "y": -5.131999, - "z": -129.347992 - }, - "Rotation": 359.157959, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSanatorium2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "cc29cf79-1cb2-4d59-9f51-8b28ab60fe92", - "Infiltration": "", - "Position": { - "x": -312.623, - "y": -3.711999, - "z": -83.31999 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSanatorium2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "cc63cf8a-19b7-4e28-a00d-daee97f7744f", - "Infiltration": "", - "Position": { - "x": -325.729, - "y": -3.711999, - "z": -82.48799 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cd50d306-1cfa-4829-a915-043e547288af", - "Infiltration": "Riverside", - "Position": { - "x": -595.16, - "y": -45.0700035, - "z": 159.190018 - }, - "Rotation": 96.22, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRailWays", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "d08c5d12-e998-4805-a39a-072bc774b59f", - "Infiltration": "", - "Position": { - "x": -665.5697, - "y": -53.87608, - "z": 420.347137 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBusStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 4, - "Id": "d2eada9d-956f-4f1a-bf87-5c1cc813719c", - "Infiltration": "", - "Position": { - "x": -139.86, - "y": -21.86, - "z": 5.12001038 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d3134c35-d002-4460-8770-4521bff63908", - "Infiltration": "Village", - "Position": { - "x": -51.72548, - "y": -18.7543964, - "z": -189.127609 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneForestTruck", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 4, - "Id": "d3a45967-46a2-4797-83bd-658ed2863db8", - "Infiltration": "", - "Position": { - "x": 72.59999, - "y": -31.1844521, - "z": -156.3 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneTunnel", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 4, - "Id": "d4c51ca2-1d8e-496c-9340-ab1d9c4abc31", - "Infiltration": "", - "Position": { - "x": 374.68, - "y": -59.69135, - "z": 314.669983 - }, - "Rotation": 277.5449, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d635ccc7-2aea-4e5a-aa3d-2418daa3b472", - "Infiltration": "Riverside", - "Position": { - "x": -468.298462, - "y": -27.5993958, - "z": -101.861618 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneForestSpawn", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 165 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 4, - "Id": "d64497e5-aa96-44cd-8d36-18e11a777b0a", - "Infiltration": "", - "Position": { - "x": 181.433884, - "y": -37.2266273, - "z": -268.557648 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneStartVillage", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 4, - "Id": "d78fdf91-d022-41d3-b595-5076e00d5517", - "Infiltration": "", - "Position": { - "x": 462.4, - "y": -54.4639664, - "z": 119.560013 - }, - "Rotation": 195.821518, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneTunnel", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 4, - "Id": "d80093d9-1dee-4d90-8438-38d5f9425ef4", - "Infiltration": "", - "Position": { - "x": 420.2, - "y": -47.58135, - "z": 243.54 - }, - "Rotation": 195.719528, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d848ab74-083b-4454-94d3-3f5cb54b6f7a", - "Infiltration": "Village", - "Position": { - "x": 350.5401, - "y": -63.69, - "z": 332.75 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSanatorium1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "d8d720fb-ade2-4fbf-89ab-c448c9676322", - "Infiltration": "", - "Position": { - "x": -227.107, - "y": -5.082999, - "z": -54.086 - }, - "Rotation": 19.4150581, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d92df5a8-fe9d-4a40-839f-5f6652251b7d", - "Infiltration": "Village", - "Position": { - "x": 443.570129, - "y": -53.71, - "z": -75.58998 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneGreenHouses", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 112 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "da195f7e-31b2-4e7b-850c-5d107efe3606", - "Infiltration": "", - "Position": { - "x": 125.065, - "y": -48.48343, - "z": 136.388 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneMeteoStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "da3996f5-837c-4663-8182-ec3d78615404", - "Infiltration": "", - "Position": { - "x": -451.626526, - "y": -25.96373, - "z": 286.029572 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "da7f0704-9a32-4743-9249-c0d140624733", - "Infiltration": "Village", - "Position": { - "x": -54.4034729, - "y": -18.5393963, - "z": -192.3936 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "dba2b2cf-a399-4193-926d-17dd61d15435", - "Infiltration": "Village", - "Position": { - "x": 315.740051, - "y": -54.56, - "z": -142.139984 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "dd45d07f-ac7b-4aaa-9a2f-643365a0b3d3", - "Infiltration": "Riverside", - "Position": { - "x": -815.559937, - "y": -41.19, - "z": 3.92002869 - }, - "Rotation": 1.4, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ddad0594-dea6-446e-8b1e-1de3b7f43677", - "Infiltration": "Village", - "Position": { - "x": -61.2084732, - "y": -18.0833969, - "z": -196.8716 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "df0eb3d7-47e4-4d21-8225-fd64893ff772", - "Infiltration": "Village", - "Position": { - "x": 442.0301, - "y": -54.3, - "z": 101.810013 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e019f4bd-bb0b-44f1-b0b8-fe93384b2974", - "Infiltration": "Village", - "Position": { - "x": 267.3902, - "y": -56.24, - "z": 187.12001 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e0216058-7361-4809-9c05-245ab15728b5", - "Infiltration": "Riverside", - "Position": { - "x": -470.748474, - "y": -27.9993973, - "z": -93.9116058 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e0dfb1f3-189b-4da7-bf05-8e68e4346f13", - "Infiltration": "Riverside", - "Position": { - "x": -778.56, - "y": -40.27, - "z": 2.97001648 - }, - "Rotation": 6.340001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRailWays", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "e1cdf1a6-dd67-4e18-8b00-97556fd2b670", - "Infiltration": "", - "Position": { - "x": -663.53, - "y": -59.5880241, - "z": 496.900024 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneTunnel", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 4, - "Id": "e1e1d1e1-2dd3-4d48-9580-9077114da3c0", - "Infiltration": "", - "Position": { - "x": 446.610016, - "y": -48.09135, - "z": 235.079987 - }, - "Rotation": 210.132233, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e2a13b2e-16d3-420f-af05-905069917b66", - "Infiltration": "Village", - "Position": { - "x": 280.770081, - "y": -56.24, - "z": 175.250015 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e528890a-7517-4c9b-85c8-807986bc4ca8", - "Infiltration": "Riverside", - "Position": { - "x": -473.378479, - "y": -27.0293961, - "z": -100.101608 - }, - "Rotation": 83.38443, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBusStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 130 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 4, - "Id": "e57506c3-0cb9-43b1-9ac9-7d2f5732fc0f", - "Infiltration": "", - "Position": { - "x": -143.63, - "y": -21.7317162, - "z": -21.1499939 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e815c01c-4f47-4a3e-9f36-b4ace91d79b4", - "Infiltration": "Village", - "Position": { - "x": 404.980042, - "y": -54.3, - "z": 85.5200043 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneIsland", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 117 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 4, - "Id": "e85eb615-6087-411a-830e-dece6f8591a3", - "Infiltration": "", - "Position": { - "x": 212.299988, - "y": -64.98019, - "z": 443.23 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneGreenHouses", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "e9ed4b8b-1d3b-451e-b2a5-3b3ae705bb45", - "Infiltration": "", - "Position": { - "x": 134.297, - "y": -48.55235, - "z": 53.0139923 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ea5c5ca2-148f-4ca4-a428-b0a7ce84921d", - "Infiltration": "Riverside", - "Position": { - "x": -837.7199, - "y": -55.47, - "z": 278.280029 - }, - "Rotation": 302.84, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "eaa395e8-9bb9-4412-ad91-85c116492f3e", - "Infiltration": "Village", - "Position": { - "x": -23.86847, - "y": -20.8793964, - "z": -139.7216 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSanatorium1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "ebc1a9f2-c27b-49fc-bf03-c3ea42356d9b", - "Infiltration": "", - "Position": { - "x": -234.599991, - "y": -5.16861629, - "z": -174.900009 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneGreenHouses", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 5 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "ec25a1ad-30c5-412d-bc4f-9d36ced86ee0", - "Infiltration": "", - "Position": { - "x": 109.22998, - "y": -48.30135, - "z": 95.87999 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneGasStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 170 - } - }, - "CorePointId": 20, - "DelayToCanSpawnSec": 4, - "Id": "ec5cc227-6c8b-43aa-a247-78f47ac5d91d", - "Infiltration": "", - "Position": { - "x": -188.5232, - "y": -65.00135, - "z": 447.6358 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePort", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 4, - "Id": "ec61521c-c1c7-4337-b1d8-f3c61f250dfd", - "Infiltration": "", - "Position": { - "x": -356.953217, - "y": -61.85135, - "z": 528.2658 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ef2f2161-0120-46af-8fe6-06fcf8bbb5f7", - "Infiltration": "Village", - "Position": { - "x": 341.990051, - "y": -42.16, - "z": -267.94 - }, - "Rotation": 349.17, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ef4e1953-ed0d-42c5-b1e8-6b58db5c6f44", - "Infiltration": "Village", - "Position": { - "x": 387.879944, - "y": -60.33, - "z": 263.87 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSanatorium1", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "eff6da9e-20f3-460c-96c8-b78f445f8190", - "Infiltration": "", - "Position": { - "x": -168.695984, - "y": -3.644, - "z": -83.987 - }, - "Rotation": 19.4150581, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBunker", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 120 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 4, - "Id": "f02a9792-7ea5-451c-bb2c-1bab854912d3", - "Infiltration": "", - "Position": { - "x": -122.083717, - "y": -9.238266, - "z": -356.685 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBusStation", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 4, - "Id": "f1853db8-4c6f-41f8-9998-e8984ff1d71e", - "Infiltration": "", - "Position": { - "x": -78.19, - "y": -21.8066673, - "z": -6.08999634 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f2cce129-3b6d-4d74-a6f7-a7e909b33814", - "Infiltration": "Village", - "Position": { - "x": 407.19, - "y": -54.31, - "z": 90.13002 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f3dc2121-5ac2-418c-8907-a8917c3a09b2", - "Infiltration": "Village", - "Position": { - "x": -23.6084747, - "y": -21.1193962, - "z": -135.5216 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f3fab340-0d6e-49d3-abf9-609f10262382", - "Infiltration": "Riverside", - "Position": { - "x": -598.55, - "y": -44.6400032, - "z": 152.14003 - }, - "Rotation": 111.609993, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f451a986-9344-43f7-a6cd-4c2c25993bd6", - "Infiltration": "Riverside", - "Position": { - "x": -781.769958, - "y": -40.22, - "z": 4.45002747 - }, - "Rotation": 15.250001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f79c4cad-9e70-4da7-bae8-19c2ff9bd403", - "Infiltration": "Village", - "Position": { - "x": -53.22348, - "y": -18.7573967, - "z": -195.6136 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f7d9fd21-aa76-4c4f-ac8e-5019ad44fbed", - "Infiltration": "Village", - "Position": { - "x": -54.0254822, - "y": -18.7153969, - "z": -193.853622 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f883d201-beea-44b0-981b-3e5416ca1d3d", - "Infiltration": "Village", - "Position": { - "x": 316.06012, - "y": -54.56, - "z": -144.089981 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fa5ef3eb-f86a-4f3d-a4b4-11105d318930", - "Infiltration": "Village", - "Position": { - "x": 315.860168, - "y": -54.56, - "z": -140.279984 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSanatorium2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "fa73db25-31b0-4f1d-8a91-b2ae6f08154c", - "Infiltration": "", - "Position": { - "x": -299.15, - "y": -5.134326, - "z": -151.41 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fb7bd71f-8177-4417-8e29-916904ca2d8a", - "Infiltration": "Village", - "Position": { - "x": 341.460022, - "y": -56.29, - "z": 120.560013 - }, - "Rotation": 271.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSanatorium2", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "fc83f4a2-9434-46ba-828b-d54c8421a6a6", - "Infiltration": "", - "Position": { - "x": -272.846, - "y": -4.152999, - "z": -133.515 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneForestGasStation", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "fcbbf53a-b5ab-4de4-bb5b-0fe490d1614b", - "Infiltration": "", - "Position": { - "x": -105.990021, - "y": -40.13835, - "z": 244.969986 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZonePort", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 71.23 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 4, - "Id": "fdd4ffb4-45df-40eb-8375-074071893683", - "Infiltration": "", - "Position": { - "x": -308.7532, - "y": -62.0376167, - "z": 477.2958 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - } - ], - "UnixDateTime": 1636379143, - "_Id": "5704e554d2720bac5b8b456e", - "doors": [], - "exit_access_time": 10, - "exit_count": 1, - "exit_time": 90, - "exits": [ - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Riverside", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Tunnel", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 0, - "ChancePVE": 0, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Riverside,Village", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Rock Passage", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 50, - "ChancePVE": 50, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Riverside,Village", - "EventAvailable": false, - "ExfiltrationTime": 30, - "ExfiltrationTimePVE": 30, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Pier Boat", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 50, - "ChancePVE": 50, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Village", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "CCP Temporary", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Village", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Road to Customs", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Riverside,Village", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Lighthouse_pass", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Village", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Road_at_railbridge", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 5000, - "CountPVE": 5000, - "EntryPoints": "Riverside,Village", - "EventAvailable": false, - "ExfiltrationTime": 60, - "ExfiltrationTimePVE": 60, - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Shorl_V-Ex", - "PassageRequirement": "TransferItem", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Item" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Riverside,Village", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "Alpinist", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "RedRebel_alp", - "PassageRequirement": "Reference", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Riverside,Village", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "SharedTimer", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Smugglers_Trail_coop", - "PassageRequirement": "ScavCooperation", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Cooperate" - } - ], - "filter_ex": [], - "limits": [ - { - "items": [], - "max": 0, - "min": 0 - } - ], - "matching_min_seconds": 60, - "maxItemCountInLocation": [ - { - "TemplateId": "57347ca924597744596b4e71", - "Value": 1 - }, - { - "TemplateId": "634959225289190e5e773b3b", - "Value": 7 - } - ], - "sav_summon_seconds": 60, - "tmp_location_field_remove_me": 0, - "transits": [ - { - "activateAfterSec": 60, - "active": true, - "conditions": "SHO_TRANSIT_24_COND", - "description": "SHO_TRANSIT_24_DESC", - "id": 24, - "location": "Lighthouse", - "name": "SHO_TRANSIT_24", - "target": "5704e4dad2720bb55b8b4567", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": false, - "conditions": "SHO_TRANSIT_25_COND", - "description": "SHO_TRANSIT_25_DESC", - "id": 25, - "location": "Terminal", - "name": "SHO_TRANSIT_25", - "target": "5704e5a4d2720bb45b8b4567", - "time": 30 - } - ], - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "waves": [] -} diff --git a/project/assets/database/locations/shoreline/looseLoot.json b/project/assets/database/locations/shoreline/looseLoot.json deleted file mode 100644 index 1a995882..00000000 --- a/project/assets/database/locations/shoreline/looseLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:02eaabcc5beac281f6cb3079c86f541801969430be1ea4cfc0bcb15d837a42b1 -size 32652279 diff --git a/project/assets/database/locations/shoreline/staticAmmo.json b/project/assets/database/locations/shoreline/staticAmmo.json deleted file mode 100644 index 0ddaada4..00000000 --- a/project/assets/database/locations/shoreline/staticAmmo.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:760b9cefaa3cbfe6957ce82a145ecffcb08e841e713d937acb5cebc140b3bc87 -size 11319 diff --git a/project/assets/database/locations/shoreline/staticContainers.json b/project/assets/database/locations/shoreline/staticContainers.json deleted file mode 100644 index 9c2490e1..00000000 --- a/project/assets/database/locations/shoreline/staticContainers.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:70cb3dd9ca7ad8faad435ea1ccc0d0bda95a5ab520ef0ab2d603ac0e33533d14 -size 324032 diff --git a/project/assets/database/locations/shoreline/staticLoot.json b/project/assets/database/locations/shoreline/staticLoot.json deleted file mode 100644 index 978376cf..00000000 --- a/project/assets/database/locations/shoreline/staticLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5fad70ee3d8f9e8cd74fddd2844c6f70805ac5ccbdc4fd0482f8ee45df3c2260 -size 610311 diff --git a/project/assets/database/locations/shoreline/statics.json b/project/assets/database/locations/shoreline/statics.json deleted file mode 100644 index ff92fb1c..00000000 --- a/project/assets/database/locations/shoreline/statics.json +++ /dev/null @@ -1,3026 +0,0 @@ -{ - "containersGroups": { - "ToolBox_N13_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "ToolBox_N10_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N10_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Scontainer_ammo_Grenade_N2_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N48_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N29_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N21_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N3_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "jackets_extention": { - "minContainers": 2, - "maxContainers": 3 - }, - "BagSport_N25_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "bag_sport_mid_N1_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N30_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N45_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadCase_N2_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "ToolBox_N18_4": { - "minContainers": 1, - "maxContainers": 2 - }, - "Scontainer_ammo_Grenade_N3_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "ToolBox_N14_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N6_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N5_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N19_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N5_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N53_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "ToolBox_N17_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadCase_N3_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N12_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N26_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N11_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N3_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N40_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N15_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "ToolBox_N3_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N23_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N26_9": { - "minContainers": 4, - "maxContainers": 5 - }, - "BagSport_N41_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "ToolBox_N12_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N18_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N51_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N12_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N37_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N30_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N20_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N18_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N23_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N34_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "bag_sport_varios_N1_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "ToolBox_N11_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "bag_BUG_N1_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N8_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N22_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N8_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N33_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N7_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N11_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N39_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N3_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N9_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "plastic_suitc_forest": { - "minContainers": 1, - "maxContainers": 3 - }, - "WeaponBox_N34_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "ToolBox_N1_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Scontainer_ammo_wood_N4_4": { - "minContainers": 1, - "maxContainers": 2 - }, - "WeaponBox_N8_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N6_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N27_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N31_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N57_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N12_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N20_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N10_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N33_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N15_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "bag_sport_varios_N2_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N2_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N9_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Scontainer_ammo_wood_N2_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N18_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N28_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N4_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N14_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Scontainer_ammo_Grenade_N5_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N58_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N54_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N27_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Scontainer_ammo_Grenade_N4_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N9_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N7_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N22_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "civilian_plastic1": { - "minContainers": 1, - "maxContainers": 3 - }, - "MadBag_N16_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N23_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N22_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N52_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N17_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N10_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N24_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N20_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N2_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Scontainer_ammo_Grenade_N1_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N9_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "ToolBox_N4_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N8_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N13_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N42_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N1_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N13_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N21_5_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "ToolBox_N9_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N26_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N10_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N14_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N2_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N17_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "bag_sport_mid_N2_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Scontainer_ammo_Grenade_N6_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N22_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N6_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N16_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N50_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N20_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N43_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N5_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Scontainer_ammo_wood_N1_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N19_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N23_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N13_5_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N17_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Jaeger_Stash_rnd_s": { - "minContainers": 27, - "maxContainers": 33 - }, - "BagSport_N19_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadCase_N4_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N28_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N4_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N11_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N1_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N13_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N21_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N3_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N47_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N29_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "ToolBox_N15_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N21_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N24_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N16_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Scontainer_ammo_Grenade_N7_4": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N31_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N6_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N15_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N14_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N38_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N56_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "ToolBox_N16_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N7_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N14_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N32_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N55_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N49_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N18_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "ToolBox_N8_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N15_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N4_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N11_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N12_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_64_open_P_forest": { - "minContainers": 3, - "maxContainers": 4 - }, - "ToolBox_lootable_forest": { - "minContainers": 3, - "maxContainers": 5 - }, - "BagSport_N44_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N32_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N1_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N5_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Scontainer_ammo_wood_N3_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N1_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "bag_sport_varios_N3_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N59_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N16_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "ToolBox_N2_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "vill_boxes": { - "minContainers": 1, - "maxContainers": 3 - }, - "BagSport_N36_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N27_4": { - "minContainers": 1, - "maxContainers": 2 - }, - "ToolBox_N7_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N4_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N25_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N35_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "bag_sport_lux_N1_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "BagSport_N46_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "WeaponBox_N17_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "ToolBox_N5_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadCase_N1_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "ToolBox_N6_2_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N19_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "MadBag_N2_3_shoreline": { - "minContainers": 0, - "maxContainers": 2 - }, - "Plastic_suitcase_N7_4_shoreline": { - "minContainers": 0, - "maxContainers": 2 - } - }, - "containers": { - "container_Shoreline_South_00000": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00146": { - "groupId": "" - }, - "Lootable_00000": { - "groupId": "jackets_extention" - }, - "container_shoreline_DesignStuff_00067": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00068": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00066": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00065": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00100": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00099": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00097": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00098": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00062": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00061": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00063": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00064": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00143": { - "groupId": "" - }, - "Lootable_00002": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00132": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00130": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00686": { - "groupId": "jackets_extention" - }, - "container_shoreline_DesignStuff_00125": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00145": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00124": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00153": { - "groupId": "" - }, - "Lootable_00007": { - "groupId": "" - }, - "Lootable_00008": { - "groupId": "" - }, - "Lootable_00006": { - "groupId": "" - }, - "Lootable_00005": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00127": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00074": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00073": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00075": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00076": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00144": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00140": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00135": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00091": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00092": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00090": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00089": { - "groupId": "" - }, - "Lootable_00009": { - "groupId": "jackets_extention" - }, - "container_shoreline_DesignStuff_00133": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00131": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00126": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00070": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00069": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00071": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00072": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00148": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00139": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00141": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00150": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00149": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00086": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00085": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00087": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00088": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00136": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00123": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00129": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00137": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00134": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00084": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00083": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00081": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00082": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00095": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00096": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00094": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00093": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00077": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00078": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00080": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00079": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00152": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00128": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00138": { - "groupId": "" - }, - "Lootable_00001": { - "groupId": "jackets_extention" - }, - "container_shoreline_DesignStuff_00687": { - "groupId": "jackets_extention" - }, - "container_shoreline_DesignStuff_00142": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00147": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00151": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00729": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00114": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00115": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00116": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00113": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00120": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00119": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00121": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00122": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00117": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00118": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00040": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00003": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00005": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00044": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00009": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00019": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00052": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00001": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00010": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00002": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00011": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00049": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00012": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00014": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00042": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00013": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00006": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "Lootable_00072": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00054": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00021": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00016": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00015": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00020": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00017": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00004": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00008": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00022": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00000": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00007": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00018": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00057": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00407": { - "groupId": "BagSport_N25_3_shoreline" - }, - "container_shoreline_DesignStuff_00409": { - "groupId": "BagSport_N25_3_shoreline" - }, - "container_shoreline_DesignStuff_00400": { - "groupId": "BagSport_N23_4_shoreline" - }, - "container_shoreline_DesignStuff_00496": { - "groupId": "BagSport_N57_3_shoreline" - }, - "container_shoreline_DesignStuff_00339": { - "groupId": "BagSport_N5_2_shoreline" - }, - "container_shoreline_DesignStuff_00368": { - "groupId": "BagSport_N14_4_shoreline" - }, - "container_shoreline_DesignStuff_00380": { - "groupId": "BagSport_N18_4_shoreline" - }, - "container_shoreline_DesignStuff_00498": { - "groupId": "BagSport_N58_2_shoreline" - }, - "container_shoreline_DesignStuff_00417": { - "groupId": "BagSport_N28_2_shoreline" - }, - "container_shoreline_DesignStuff_00239": { - "groupId": "bag_sport_varios_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00391": { - "groupId": "BagSport_N20_4_shoreline" - }, - "container_shoreline_DesignStuff_00464": { - "groupId": "BagSport_N45_3_shoreline" - }, - "container_shoreline_DesignStuff_00238": { - "groupId": "bag_sport_varios_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00362": { - "groupId": "BagSport_N13_5_shoreline" - }, - "container_shoreline_DesignStuff_00472": { - "groupId": "BagSport_N47_3_shoreline" - }, - "container_shoreline_DesignStuff_00428": { - "groupId": "BagSport_N33_4_shoreline" - }, - "container_shoreline_DesignStuff_00389": { - "groupId": "BagSport_N20_4_shoreline" - }, - "container_shoreline_DesignStuff_00218": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00471": { - "groupId": "BagSport_N47_3_shoreline" - }, - "container_shoreline_DesignStuff_00199": { - "groupId": "bag_sport_lux_N1_2_shoreline" - }, - "container_shoreline_DesignStuff_00454": { - "groupId": "BagSport_N41_3_shoreline" - }, - "container_shoreline_DesignStuff_00361": { - "groupId": "BagSport_N13_5_shoreline" - }, - "container_shoreline_DesignStuff_00460": { - "groupId": "BagSport_N43_3_shoreline" - }, - "container_shoreline_DesignStuff_00501": { - "groupId": "BagSport_N59_3_shoreline" - }, - "container_shoreline_DesignStuff_00335": { - "groupId": "BagSport_N3_2_shoreline" - }, - "container_shoreline_DesignStuff_00495": { - "groupId": "BagSport_N57_3_shoreline" - }, - "container_shoreline_DesignStuff_00393": { - "groupId": "BagSport_N21_5_shoreline" - }, - "container_shoreline_DesignStuff_00237": { - "groupId": "bag_sport_varios_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00388": { - "groupId": "BagSport_N20_4_shoreline" - }, - "container_shoreline_DesignStuff_00372": { - "groupId": "BagSport_N15_4_shoreline" - }, - "container_shoreline_DesignStuff_00363": { - "groupId": "BagSport_N13_5_shoreline" - }, - "container_shoreline_DesignStuff_00461": { - "groupId": "BagSport_N43_3_shoreline" - }, - "container_shoreline_DesignStuff_00349": { - "groupId": "BagSport_N9_4_shoreline" - }, - "container_shoreline_DesignStuff_00415": { - "groupId": "BagSport_N27_3_shoreline" - }, - "container_shoreline_DesignStuff_00467": { - "groupId": "BagSport_N46_4_shoreline" - }, - "container_shoreline_DesignStuff_00374": { - "groupId": "BagSport_N16_4_shoreline" - }, - "container_shoreline_DesignStuff_00343": { - "groupId": "BagSport_N7_2_shoreline" - }, - "container_shoreline_DesignStuff_00432": { - "groupId": "BagSport_N34_4_shoreline" - }, - "container_shoreline_DesignStuff_00452": { - "groupId": "BagSport_N40_4_shoreline" - }, - "container_shoreline_DesignStuff_00364": { - "groupId": "BagSport_N13_5_shoreline" - }, - "container_shoreline_DesignStuff_00386": { - "groupId": "BagSport_N19_4_shoreline" - }, - "container_shoreline_DesignStuff_00414": { - "groupId": "BagSport_N27_3_shoreline" - }, - "container_shoreline_DesignStuff_00356": { - "groupId": "BagSport_N11_3_shoreline" - }, - "container_shoreline_DesignStuff_00456": { - "groupId": "BagSport_N42_3_shoreline" - }, - "container_shoreline_DesignStuff_00235": { - "groupId": "bag_sport_mid_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00431": { - "groupId": "BagSport_N33_4_shoreline" - }, - "container_shoreline_DesignStuff_00418": { - "groupId": "BagSport_N29_2_shoreline" - }, - "container_shoreline_DesignStuff_00396": { - "groupId": "BagSport_N21_5_shoreline" - }, - "container_shoreline_DesignStuff_00447": { - "groupId": "BagSport_N39_3_shoreline" - }, - "container_shoreline_DesignStuff_00345": { - "groupId": "BagSport_N8_2_shoreline" - }, - "container_shoreline_DesignStuff_00344": { - "groupId": "BagSport_N7_2_shoreline" - }, - "container_shoreline_DesignStuff_00412": { - "groupId": "BagSport_N26_3_shoreline" - }, - "container_shoreline_DesignStuff_00445": { - "groupId": "BagSport_N38_3_shoreline" - }, - "container_shoreline_DesignStuff_00443": { - "groupId": "BagSport_N38_3_shoreline" - }, - "container_shoreline_DesignStuff_00352": { - "groupId": "BagSport_N10_4_shoreline" - }, - "container_shoreline_DesignStuff_00385": { - "groupId": "BagSport_N19_4_shoreline" - }, - "container_shoreline_DesignStuff_00398": { - "groupId": "BagSport_N22_3_shoreline" - }, - "container_shoreline_DesignStuff_00189": { - "groupId": "bag_BUG_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00236": { - "groupId": "bag_sport_varios_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00387": { - "groupId": "BagSport_N19_4_shoreline" - }, - "container_shoreline_DesignStuff_00340": { - "groupId": "BagSport_N5_2_shoreline" - }, - "container_shoreline_DesignStuff_00493": { - "groupId": "BagSport_N56_3_shoreline" - }, - "container_shoreline_DesignStuff_00441": { - "groupId": "BagSport_N37_2_shoreline" - }, - "container_shoreline_DesignStuff_00333": { - "groupId": "BagSport_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00440": { - "groupId": "BagSport_N36_2_shoreline" - }, - "container_shoreline_DesignStuff_00346": { - "groupId": "BagSport_N8_2_shoreline" - }, - "container_shoreline_DesignStuff_00453": { - "groupId": "BagSport_N41_3_shoreline" - }, - "container_shoreline_DesignStuff_00233": { - "groupId": "bag_sport_mid_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00457": { - "groupId": "BagSport_N42_3_shoreline" - }, - "container_shoreline_DesignStuff_00341": { - "groupId": "BagSport_N6_2_shoreline" - }, - "container_shoreline_DesignStuff_00465": { - "groupId": "BagSport_N45_3_shoreline" - }, - "container_shoreline_DesignStuff_00383": { - "groupId": "BagSport_N18_4_shoreline" - }, - "container_shoreline_DesignStuff_00375": { - "groupId": "BagSport_N16_4_shoreline" - }, - "container_shoreline_DesignStuff_00365": { - "groupId": "BagSport_N13_5_shoreline" - }, - "container_shoreline_DesignStuff_00449": { - "groupId": "BagSport_N40_4_shoreline" - }, - "container_shoreline_DesignStuff_00410": { - "groupId": "BagSport_N26_3_shoreline" - }, - "container_shoreline_DesignStuff_00442": { - "groupId": "BagSport_N37_2_shoreline" - }, - "container_shoreline_DesignStuff_00422": { - "groupId": "BagSport_N31_3_shoreline" - }, - "container_shoreline_DesignStuff_00187": { - "groupId": "bag_BUG_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00469": { - "groupId": "BagSport_N46_4_shoreline" - }, - "container_shoreline_DesignStuff_00740": { - "groupId": "BagSport_N44_2_shoreline" - }, - "container_shoreline_DesignStuff_00488": { - "groupId": "BagSport_N54_2_shoreline" - }, - "container_shoreline_DesignStuff_00408": { - "groupId": "BagSport_N25_3_shoreline" - }, - "container_shoreline_DesignStuff_00411": { - "groupId": "BagSport_N26_3_shoreline" - }, - "container_shoreline_DesignStuff_00463": { - "groupId": "BagSport_N45_3_shoreline" - }, - "container_shoreline_DesignStuff_00492": { - "groupId": "BagSport_N56_3_shoreline" - }, - "container_shoreline_DesignStuff_00435": { - "groupId": "BagSport_N34_4_shoreline" - }, - "container_shoreline_DesignStuff_00353": { - "groupId": "BagSport_N10_4_shoreline" - }, - "container_shoreline_DesignStuff_00421": { - "groupId": "BagSport_N30_2_shoreline" - }, - "container_shoreline_DesignStuff_00478": { - "groupId": "BagSport_N49_3_shoreline" - }, - "container_shoreline_DesignStuff_00348": { - "groupId": "BagSport_N9_4_shoreline" - }, - "container_shoreline_DesignStuff_00487": { - "groupId": "BagSport_N54_2_shoreline" - }, - "container_shoreline_DesignStuff_00359": { - "groupId": "BagSport_N12_3_shoreline" - }, - "container_shoreline_DesignStuff_00497": { - "groupId": "BagSport_N57_3_shoreline" - }, - "container_shoreline_DesignStuff_00240": { - "groupId": "bag_sport_varios_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00384": { - "groupId": "BagSport_N19_4_shoreline" - }, - "container_shoreline_DesignStuff_00473": { - "groupId": "BagSport_N48_3_shoreline" - }, - "container_shoreline_DesignStuff_00439": { - "groupId": "BagSport_N36_2_shoreline" - }, - "container_shoreline_DesignStuff_00330": { - "groupId": "BagSport_N1_2_shoreline" - }, - "container_shoreline_DesignStuff_00360": { - "groupId": "BagSport_N12_3_shoreline" - }, - "container_shoreline_DesignStuff_00337": { - "groupId": "BagSport_N4_2_shoreline" - }, - "container_shoreline_DesignStuff_00382": { - "groupId": "BagSport_N18_4_shoreline" - }, - "container_shoreline_DesignStuff_00241": { - "groupId": "bag_sport_varios_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00430": { - "groupId": "BagSport_N33_4_shoreline" - }, - "container_shoreline_DesignStuff_00462": { - "groupId": "BagSport_N44_2_shoreline" - }, - "container_shoreline_DesignStuff_00234": { - "groupId": "bag_sport_mid_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00357": { - "groupId": "BagSport_N11_3_shoreline" - }, - "container_shoreline_DesignStuff_00367": { - "groupId": "BagSport_N14_4_shoreline" - }, - "container_shoreline_DesignStuff_00427": { - "groupId": "BagSport_N32_3_shoreline" - }, - "container_shoreline_DesignStuff_00331": { - "groupId": "BagSport_N1_2_shoreline" - }, - "container_shoreline_DesignStuff_00489": { - "groupId": "BagSport_N55_3_shoreline" - }, - "container_shoreline_DesignStuff_00243": { - "groupId": "bag_sport_varios_N3_4_shoreline" - }, - "container_shoreline_DesignStuff_00392": { - "groupId": "BagSport_N21_5_shoreline" - }, - "container_shoreline_DesignStuff_00480": { - "groupId": "BagSport_N50_2_shoreline" - }, - "container_shoreline_DesignStuff_00219": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00468": { - "groupId": "BagSport_N46_4_shoreline" - }, - "container_shoreline_DesignStuff_00470": { - "groupId": "BagSport_N47_3_shoreline" - }, - "container_shoreline_DesignStuff_00479": { - "groupId": "BagSport_N50_2_shoreline" - }, - "container_shoreline_DesignStuff_00490": { - "groupId": "BagSport_N55_3_shoreline" - }, - "container_shoreline_DesignStuff_00474": { - "groupId": "BagSport_N48_3_shoreline" - }, - "container_shoreline_DesignStuff_00444": { - "groupId": "BagSport_N38_3_shoreline" - }, - "container_shoreline_DesignStuff_00416": { - "groupId": "BagSport_N28_2_shoreline" - }, - "container_shoreline_DesignStuff_00370": { - "groupId": "BagSport_N15_4_shoreline" - }, - "container_shoreline_DesignStuff_00242": { - "groupId": "bag_sport_varios_N3_4_shoreline" - }, - "container_shoreline_DesignStuff_00230": { - "groupId": "bag_sport_mid_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00437": { - "groupId": "BagSport_N35_3_shoreline" - }, - "container_shoreline_DesignStuff_00332": { - "groupId": "BagSport_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00485": { - "groupId": "BagSport_N53_2_shoreline" - }, - "container_shoreline_DesignStuff_00466": { - "groupId": "BagSport_N46_4_shoreline" - }, - "container_shoreline_DesignStuff_00477": { - "groupId": "BagSport_N49_3_shoreline" - }, - "container_shoreline_DesignStuff_00338": { - "groupId": "BagSport_N4_2_shoreline" - }, - "container_shoreline_DesignStuff_00406": { - "groupId": "BagSport_N24_3_shoreline" - }, - "container_shoreline_DesignStuff_00491": { - "groupId": "BagSport_N55_3_shoreline" - }, - "container_shoreline_DesignStuff_00401": { - "groupId": "BagSport_N23_4_shoreline" - }, - "container_shoreline_DesignStuff_00244": { - "groupId": "bag_sport_varios_N3_4_shoreline" - }, - "container_shoreline_DesignStuff_00231": { - "groupId": "bag_sport_mid_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00450": { - "groupId": "BagSport_N40_4_shoreline" - }, - "container_shoreline_DesignStuff_00366": { - "groupId": "BagSport_N14_4_shoreline" - }, - "container_Test_for_export_00000": { - "groupId": "BagSport_N59_3_shoreline" - }, - "container_shoreline_DesignStuff_00419": { - "groupId": "BagSport_N29_2_shoreline" - }, - "container_shoreline_DesignStuff_00448": { - "groupId": "BagSport_N39_3_shoreline" - }, - "container_shoreline_DesignStuff_00500": { - "groupId": "BagSport_N59_3_shoreline" - }, - "container_shoreline_DesignStuff_00404": { - "groupId": "BagSport_N24_3_shoreline" - }, - "container_shoreline_DesignStuff_00342": { - "groupId": "BagSport_N6_2_shoreline" - }, - "container_shoreline_DesignStuff_00347": { - "groupId": "BagSport_N9_4_shoreline" - }, - "container_shoreline_DesignStuff_00354": { - "groupId": "BagSport_N10_4_shoreline" - }, - "container_shoreline_DesignStuff_00397": { - "groupId": "BagSport_N22_3_shoreline" - }, - "container_shoreline_DesignStuff_00232": { - "groupId": "bag_sport_mid_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00245": { - "groupId": "bag_sport_varios_N3_4_shoreline" - }, - "container_shoreline_DesignStuff_00425": { - "groupId": "BagSport_N32_3_shoreline" - }, - "container_shoreline_DesignStuff_00369": { - "groupId": "BagSport_N14_4_shoreline" - }, - "container_shoreline_DesignStuff_00402": { - "groupId": "BagSport_N23_4_shoreline" - }, - "container_shoreline_DesignStuff_00482": { - "groupId": "BagSport_N51_2_shoreline" - }, - "container_shoreline_DesignStuff_00446": { - "groupId": "BagSport_N39_3_shoreline" - }, - "container_shoreline_DesignStuff_00405": { - "groupId": "BagSport_N24_3_shoreline" - }, - "container_shoreline_DesignStuff_00436": { - "groupId": "BagSport_N35_3_shoreline" - }, - "container_shoreline_DesignStuff_00455": { - "groupId": "BagSport_N41_3_shoreline" - }, - "container_shoreline_DesignStuff_00355": { - "groupId": "BagSport_N11_3_shoreline" - }, - "container_shoreline_DesignStuff_00381": { - "groupId": "BagSport_N18_4_shoreline" - }, - "container_shoreline_DesignStuff_00376": { - "groupId": "BagSport_N16_4_shoreline" - }, - "container_shoreline_DesignStuff_00395": { - "groupId": "BagSport_N21_5_shoreline" - }, - "container_shoreline_DesignStuff_00399": { - "groupId": "BagSport_N22_3_shoreline" - }, - "container_shoreline_DesignStuff_00377": { - "groupId": "BagSport_N16_4_shoreline" - }, - "container_shoreline_DesignStuff_00334": { - "groupId": "BagSport_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00494": { - "groupId": "BagSport_N56_3_shoreline" - }, - "container_shoreline_DesignStuff_00429": { - "groupId": "BagSport_N33_4_shoreline" - }, - "container_shoreline_DesignStuff_00484": { - "groupId": "BagSport_N52_2_shoreline" - }, - "container_shoreline_DesignStuff_00499": { - "groupId": "BagSport_N58_2_shoreline" - }, - "container_shoreline_DesignStuff_00423": { - "groupId": "BagSport_N31_3_shoreline" - }, - "container_shoreline_DesignStuff_00458": { - "groupId": "BagSport_N42_3_shoreline" - }, - "container_shoreline_DesignStuff_00426": { - "groupId": "BagSport_N32_3_shoreline" - }, - "container_shoreline_DesignStuff_00188": { - "groupId": "bag_BUG_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00358": { - "groupId": "BagSport_N12_3_shoreline" - }, - "container_shoreline_DesignStuff_00373": { - "groupId": "BagSport_N15_4_shoreline" - }, - "container_shoreline_DesignStuff_00403": { - "groupId": "BagSport_N23_4_shoreline" - }, - "container_shoreline_DesignStuff_00434": { - "groupId": "BagSport_N34_4_shoreline" - }, - "container_shoreline_DesignStuff_00371": { - "groupId": "BagSport_N15_4_shoreline" - }, - "container_shoreline_DesignStuff_00351": { - "groupId": "BagSport_N10_4_shoreline" - }, - "container_shoreline_DesignStuff_00433": { - "groupId": "BagSport_N34_4_shoreline" - }, - "container_shoreline_DesignStuff_00481": { - "groupId": "BagSport_N51_2_shoreline" - }, - "container_shoreline_DesignStuff_00486": { - "groupId": "BagSport_N53_2_shoreline" - }, - "container_shoreline_DesignStuff_00390": { - "groupId": "BagSport_N20_4_shoreline" - }, - "container_shoreline_DesignStuff_00200": { - "groupId": "bag_sport_lux_N1_2_shoreline" - }, - "container_shoreline_DesignStuff_00378": { - "groupId": "BagSport_N17_2_shoreline" - }, - "container_shoreline_DesignStuff_00483": { - "groupId": "BagSport_N52_2_shoreline" - }, - "container_shoreline_DesignStuff_00336": { - "groupId": "BagSport_N3_2_shoreline" - }, - "container_shoreline_DesignStuff_00413": { - "groupId": "BagSport_N27_3_shoreline" - }, - "container_shoreline_DesignStuff_00459": { - "groupId": "BagSport_N43_3_shoreline" - }, - "container_shoreline_DesignStuff_00451": { - "groupId": "BagSport_N40_4_shoreline" - }, - "container_shoreline_DesignStuff_00476": { - "groupId": "BagSport_N49_3_shoreline" - }, - "container_shoreline_DesignStuff_00475": { - "groupId": "BagSport_N48_3_shoreline" - }, - "container_shoreline_DesignStuff_00420": { - "groupId": "BagSport_N30_2_shoreline" - }, - "container_shoreline_DesignStuff_00394": { - "groupId": "BagSport_N21_5_shoreline" - }, - "container_shoreline_DesignStuff_00350": { - "groupId": "BagSport_N9_4_shoreline" - }, - "container_shoreline_DesignStuff_00424": { - "groupId": "BagSport_N31_3_shoreline" - }, - "container_shoreline_DesignStuff_00379": { - "groupId": "BagSport_N17_2_shoreline" - }, - "container_shoreline_DesignStuff_00438": { - "groupId": "BagSport_N35_3_shoreline" - }, - "container_shoreline_DesignStuff_00035": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00031": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00055": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00058": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00043": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00045": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00025": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00029": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00046": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00026": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00041": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00051": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00048": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00059": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00053": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00034": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00047": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00027": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00036": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00023": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00039": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00037": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00038": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00033": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00030": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00024": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "Lootable_00068": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00028": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00056": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00050": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00032": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00060": { - "groupId": "Jaeger_Stash_rnd_s" - }, - "container_shoreline_DesignStuff_00220": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00559": { - "groupId": "MadCase_N2_2_shoreline" - }, - "container_shoreline_DesignStuff_00563": { - "groupId": "MadCase_N4_2_shoreline" - }, - "container_shoreline_DesignStuff_00562": { - "groupId": "MadCase_N4_2_shoreline" - }, - "container_shoreline_DesignStuff_00556": { - "groupId": "MadCase_N1_2_shoreline" - }, - "container_shoreline_DesignStuff_00557": { - "groupId": "MadCase_N1_2_shoreline" - }, - "container_shoreline_DesignStuff_00560": { - "groupId": "MadCase_N3_2_shoreline" - }, - "container_shoreline_DesignStuff_00561": { - "groupId": "MadCase_N3_2_shoreline" - }, - "container_shoreline_DesignStuff_00558": { - "groupId": "MadCase_N2_2_shoreline" - }, - "container_shoreline_DesignStuff_00723": { - "groupId": "ToolBox_lootable_forest" - }, - "container_shoreline_DesignStuff_00569": { - "groupId": "ToolBox_N3_2_shoreline" - }, - "container_shoreline_DesignStuff_00570": { - "groupId": "ToolBox_N3_2_shoreline" - }, - "container_shoreline_DesignStuff_00591": { - "groupId": "ToolBox_N14_2_shoreline" - }, - "container_shoreline_DesignStuff_00589": { - "groupId": "ToolBox_N13_2_shoreline" - }, - "container_shoreline_DesignStuff_00704": { - "groupId": "ToolBox_N18_4" - }, - "container_shoreline_DesignStuff_00584": { - "groupId": "ToolBox_N10_2_shoreline" - }, - "container_shoreline_DesignStuff_00582": { - "groupId": "ToolBox_N9_2_shoreline" - }, - "container_shoreline_DesignStuff_00578": { - "groupId": "ToolBox_N7_2_shoreline" - }, - "container_shoreline_DesignStuff_00568": { - "groupId": "ToolBox_N2_2_shoreline" - }, - "container_shoreline_DesignStuff_00588": { - "groupId": "ToolBox_N12_2_shoreline" - }, - "container_shoreline_DesignStuff_00702": { - "groupId": "ToolBox_N18_4" - }, - "container_shoreline_DesignStuff_00597": { - "groupId": "ToolBox_N17_2_shoreline" - }, - "container_shoreline_DesignStuff_00726": { - "groupId": "ToolBox_lootable_forest" - }, - "container_shoreline_DesignStuff_00583": { - "groupId": "ToolBox_N10_2_shoreline" - }, - "container_shoreline_DesignStuff_00594": { - "groupId": "ToolBox_N15_2_shoreline" - }, - "container_shoreline_DesignStuff_00566": { - "groupId": "ToolBox_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00593": { - "groupId": "ToolBox_N15_2_shoreline" - }, - "container_shoreline_DesignStuff_00727": { - "groupId": "ToolBox_lootable_forest" - }, - "container_shoreline_DesignStuff_00575": { - "groupId": "ToolBox_N6_2_shoreline" - }, - "container_shoreline_DesignStuff_00567": { - "groupId": "ToolBox_N2_2_shoreline" - }, - "container_shoreline_DesignStuff_00577": { - "groupId": "ToolBox_N7_2_shoreline" - }, - "container_shoreline_DesignStuff_00703": { - "groupId": "ToolBox_N18_4" - }, - "container_shoreline_DesignStuff_00722": { - "groupId": "ToolBox_lootable_forest" - }, - "container_shoreline_DesignStuff_00586": { - "groupId": "ToolBox_N11_2_shoreline" - }, - "container_shoreline_DesignStuff_00579": { - "groupId": "ToolBox_N8_2_shoreline" - }, - "container_shoreline_DesignStuff_00725": { - "groupId": "ToolBox_lootable_forest" - }, - "container_shoreline_DesignStuff_00571": { - "groupId": "ToolBox_N4_2_shoreline" - }, - "container_shoreline_DesignStuff_00598": { - "groupId": "ToolBox_N17_2_shoreline" - }, - "container_shoreline_DesignStuff_00728": { - "groupId": "ToolBox_lootable_forest" - }, - "container_shoreline_DesignStuff_00587": { - "groupId": "ToolBox_N12_2_shoreline" - }, - "container_shoreline_DesignStuff_00721": { - "groupId": "ToolBox_lootable_forest" - }, - "container_shoreline_DesignStuff_00724": { - "groupId": "ToolBox_lootable_forest" - }, - "container_shoreline_DesignStuff_00572": { - "groupId": "ToolBox_N4_2_shoreline" - }, - "container_shoreline_DesignStuff_00592": { - "groupId": "ToolBox_N14_2_shoreline" - }, - "container_shoreline_DesignStuff_00590": { - "groupId": "ToolBox_N13_2_shoreline" - }, - "container_shoreline_DesignStuff_00576": { - "groupId": "ToolBox_N6_2_shoreline" - }, - "container_shoreline_DesignStuff_00732": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00595": { - "groupId": "ToolBox_N16_2_shoreline" - }, - "container_shoreline_DesignStuff_00580": { - "groupId": "ToolBox_N8_2_shoreline" - }, - "container_shoreline_DesignStuff_00574": { - "groupId": "ToolBox_N5_2_shoreline" - }, - "container_shoreline_DesignStuff_00701": { - "groupId": "ToolBox_N18_4" - }, - "container_shoreline_DesignStuff_00734": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00221": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00585": { - "groupId": "ToolBox_N11_2_shoreline" - }, - "container_shoreline_DesignStuff_00581": { - "groupId": "ToolBox_N9_2_shoreline" - }, - "container_shoreline_DesignStuff_00596": { - "groupId": "ToolBox_N16_2_shoreline" - }, - "container_shoreline_DesignStuff_00564": { - "groupId": "ToolBox_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00565": { - "groupId": "ToolBox_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00573": { - "groupId": "ToolBox_N5_2_shoreline" - }, - "container_shoreline_DesignStuff_00672": { - "groupId": "WeaponBox_N32_2_shoreline" - }, - "container_shoreline_DesignStuff_00226": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00661": { - "groupId": "WeaponBox_N26_2_shoreline" - }, - "container_shoreline_DesignStuff_00678": { - "groupId": "vill_boxes" - }, - "container_shoreline_DesignStuff_00675": { - "groupId": "WeaponBox_N33_2_shoreline" - }, - "container_shoreline_DesignStuff_00667": { - "groupId": "WeaponBox_N29_2_shoreline" - }, - "container_shoreline_DesignStuff_00228": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00676": { - "groupId": "WeaponBox_N34_2_shoreline" - }, - "container_shoreline_DesignStuff_00665": { - "groupId": "WeaponBox_N28_2_shoreline" - }, - "container_shoreline_DesignStuff_00664": { - "groupId": "WeaponBox_N28_2_shoreline" - }, - "container_shoreline_DesignStuff_00681": { - "groupId": "vill_boxes" - }, - "container_shoreline_DesignStuff_00674": { - "groupId": "WeaponBox_N33_2_shoreline" - }, - "container_shoreline_DesignStuff_00680": { - "groupId": "vill_boxes" - }, - "container_shoreline_DesignStuff_00677": { - "groupId": "WeaponBox_N34_2_shoreline" - }, - "container_shoreline_DesignStuff_00659": { - "groupId": "WeaponBox_N25_2_shoreline" - }, - "container_shoreline_DesignStuff_00670": { - "groupId": "WeaponBox_N31_2_shoreline" - }, - "container_shoreline_DesignStuff_00229": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00660": { - "groupId": "WeaponBox_N26_2_shoreline" - }, - "container_shoreline_DesignStuff_00662": { - "groupId": "WeaponBox_N27_2_shoreline" - }, - "container_shoreline_DesignStuff_00663": { - "groupId": "WeaponBox_N27_2_shoreline" - }, - "container_shoreline_DesignStuff_00669": { - "groupId": "WeaponBox_N30_2_shoreline" - }, - "container_shoreline_DesignStuff_00224": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00668": { - "groupId": "WeaponBox_N30_2_shoreline" - }, - "container_shoreline_DesignStuff_00671": { - "groupId": "WeaponBox_N31_2_shoreline" - }, - "container_shoreline_DesignStuff_00658": { - "groupId": "WeaponBox_N25_2_shoreline" - }, - "container_shoreline_DesignStuff_00225": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00666": { - "groupId": "WeaponBox_N29_2_shoreline" - }, - "container_shoreline_DesignStuff_00673": { - "groupId": "WeaponBox_N32_2_shoreline" - }, - "container_shoreline_DesignStuff_00227": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00679": { - "groupId": "vill_boxes" - }, - "container_shoreline_DesignStuff_00733": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00213": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00211": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00207": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00209": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00215": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00210": { - "groupId": "" - }, - "Lootable_00004": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00212": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00214": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00208": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00109": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00107": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00110": { - "groupId": "" - }, - "Lootable_00010": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00105": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00101": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00111": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00103": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00106": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00102": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00104": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00112": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00108": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00735": { - "groupId": "" - }, - "00012": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00731": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00730": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00551": { - "groupId": "MadBag_N21_2_shoreline" - }, - "container_shoreline_DesignStuff_00555": { - "groupId": "MadBag_N23_2_shoreline" - }, - "container_shoreline_DesignStuff_00535": { - "groupId": "MadBag_N15_3_shoreline" - }, - "container_shoreline_DesignStuff_00553": { - "groupId": "MadBag_N22_2_shoreline" - }, - "container_shoreline_DesignStuff_00541": { - "groupId": "MadBag_N17_2_shoreline" - }, - "container_shoreline_DesignStuff_00503": { - "groupId": "MadBag_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00524": { - "groupId": "MadBag_N10_2_shoreline" - }, - "container_shoreline_DesignStuff_00513": { - "groupId": "MadBag_N5_2_shoreline" - }, - "container_shoreline_DesignStuff_00540": { - "groupId": "MadBag_N17_2_shoreline" - }, - "container_shoreline_DesignStuff_00523": { - "groupId": "MadBag_N10_2_shoreline" - }, - "container_shoreline_DesignStuff_00516": { - "groupId": "MadBag_N7_2_shoreline" - }, - "container_shoreline_DesignStuff_00520": { - "groupId": "MadBag_N9_3_shoreline" - }, - "container_shoreline_DesignStuff_00514": { - "groupId": "MadBag_N6_2_shoreline" - }, - "container_shoreline_DesignStuff_00528": { - "groupId": "MadBag_N12_2_shoreline" - }, - "container_shoreline_DesignStuff_00554": { - "groupId": "MadBag_N23_2_shoreline" - }, - "container_shoreline_DesignStuff_00534": { - "groupId": "MadBag_N15_3_shoreline" - }, - "container_shoreline_DesignStuff_00505": { - "groupId": "MadBag_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00542": { - "groupId": "MadBag_N18_3_shoreline" - }, - "container_shoreline_DesignStuff_00502": { - "groupId": "MadBag_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00544": { - "groupId": "MadBag_N18_3_shoreline" - }, - "container_shoreline_DesignStuff_00504": { - "groupId": "MadBag_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00509": { - "groupId": "MadBag_N3_2_shoreline" - }, - "container_shoreline_DesignStuff_00521": { - "groupId": "MadBag_N9_3_shoreline" - }, - "container_shoreline_DesignStuff_00536": { - "groupId": "MadBag_N15_3_shoreline" - }, - "container_shoreline_DesignStuff_00508": { - "groupId": "MadBag_N3_2_shoreline" - }, - "container_shoreline_DesignStuff_00506": { - "groupId": "MadBag_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00511": { - "groupId": "MadBag_N4_2_shoreline" - }, - "container_shoreline_DesignStuff_00533": { - "groupId": "MadBag_N14_2_shoreline" - }, - "container_shoreline_DesignStuff_00507": { - "groupId": "MadBag_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00517": { - "groupId": "MadBag_N7_2_shoreline" - }, - "container_shoreline_DesignStuff_00547": { - "groupId": "MadBag_N19_3_shoreline" - }, - "container_shoreline_DesignStuff_00545": { - "groupId": "MadBag_N19_3_shoreline" - }, - "container_shoreline_DesignStuff_00531": { - "groupId": "MadBag_N13_2_shoreline" - }, - "container_shoreline_DesignStuff_00510": { - "groupId": "MadBag_N4_2_shoreline" - }, - "container_shoreline_DesignStuff_00518": { - "groupId": "MadBag_N8_2_shoreline" - }, - "container_shoreline_DesignStuff_00546": { - "groupId": "MadBag_N19_3_shoreline" - }, - "container_shoreline_DesignStuff_00526": { - "groupId": "MadBag_N11_3_shoreline" - }, - "container_shoreline_DesignStuff_00550": { - "groupId": "MadBag_N21_2_shoreline" - }, - "container_shoreline_DesignStuff_00549": { - "groupId": "MadBag_N20_2_shoreline" - }, - "container_shoreline_DesignStuff_00537": { - "groupId": "MadBag_N16_3_shoreline" - }, - "container_shoreline_DesignStuff_00522": { - "groupId": "MadBag_N9_3_shoreline" - }, - "container_shoreline_DesignStuff_00512": { - "groupId": "MadBag_N5_2_shoreline" - }, - "container_shoreline_DesignStuff_00525": { - "groupId": "MadBag_N11_3_shoreline" - }, - "container_shoreline_DesignStuff_00529": { - "groupId": "MadBag_N12_2_shoreline" - }, - "container_shoreline_DesignStuff_00530": { - "groupId": "MadBag_N13_2_shoreline" - }, - "container_shoreline_DesignStuff_00527": { - "groupId": "MadBag_N11_3_shoreline" - }, - "container_shoreline_DesignStuff_00538": { - "groupId": "MadBag_N16_3_shoreline" - }, - "container_shoreline_DesignStuff_00543": { - "groupId": "MadBag_N18_3_shoreline" - }, - "container_shoreline_DesignStuff_00519": { - "groupId": "MadBag_N8_2_shoreline" - }, - "container_shoreline_DesignStuff_00539": { - "groupId": "MadBag_N16_3_shoreline" - }, - "container_shoreline_DesignStuff_00548": { - "groupId": "MadBag_N20_2_shoreline" - }, - "container_shoreline_DesignStuff_00515": { - "groupId": "MadBag_N6_2_shoreline" - }, - "container_shoreline_DesignStuff_00552": { - "groupId": "MadBag_N22_2_shoreline" - }, - "container_shoreline_DesignStuff_00532": { - "groupId": "MadBag_N14_2_shoreline" - }, - "container_shoreline_DesignStuff_00709": { - "groupId": "Scontainer_ammo_wood_N4_4" - }, - "container_shoreline_DesignStuff_00325": { - "groupId": "Scontainer_ammo_wood_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00710": { - "groupId": "Scontainer_ammo_wood_N4_4" - }, - "container_shoreline_DesignStuff_00217": { - "groupId": "" - }, - "n1": { - "groupId": "Scontainer_ammo_wood_N4_4" - }, - "container_shoreline_DesignStuff_00329": { - "groupId": "Scontainer_ammo_wood_N3_2_shoreline" - }, - "container_shoreline_DesignStuff_00327": { - "groupId": "Scontainer_ammo_wood_N2_2_shoreline" - }, - "container_shoreline_DesignStuff_00323": { - "groupId": "Scontainer_ammo_wood_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00326": { - "groupId": "Scontainer_ammo_wood_N2_2_shoreline" - }, - "container_shoreline_DesignStuff_00711": { - "groupId": "Scontainer_ammo_wood_N4_4" - }, - "container_shoreline_DesignStuff_00324": { - "groupId": "Scontainer_ammo_wood_N1_3_shoreline" - }, - "container_shoreline_DesignStuff_00328": { - "groupId": "Scontainer_ammo_wood_N3_2_shoreline" - }, - "container_shoreline_DesignStuff_00204": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00193": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00203": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00205": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00198": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00206": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00197": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00202": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00201": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00192": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00196": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00195": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00194": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00157": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00162": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00164": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00158": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00178": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00171": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00156": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00161": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00155": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00159": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00168": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00175": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00154": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00172": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00167": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00176": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00165": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00177": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00173": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00174": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00163": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00160": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00166": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00170": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00169": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00738": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00685": { - "groupId": "civilian_plastic1" - }, - "container_shoreline_DesignStuff_00684": { - "groupId": "civilian_plastic1" - }, - "container_shoreline_DesignStuff_00683": { - "groupId": "civilian_plastic1" - }, - "container_shoreline_DesignStuff_00222": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00712": { - "groupId": "plastic_suitc_forest" - }, - "container_shoreline_DesignStuff_00714": { - "groupId": "plastic_suitc_forest" - }, - "container_shoreline_DesignStuff_00682": { - "groupId": "civilian_plastic1" - }, - "container_shoreline_DesignStuff_00713": { - "groupId": "plastic_suitc_forest" - }, - "container_shoreline_DesignStuff_00614": { - "groupId": "WeaponBox_N7_2_shoreline" - }, - "container_shoreline_DesignStuff_00615": { - "groupId": "WeaponBox_N7_2_shoreline" - }, - "container_shoreline_DesignStuff_00599": { - "groupId": "WeaponBox_N1_2_shoreline" - }, - "container_shoreline_DesignStuff_00641": { - "groupId": "WeaponBox_N18_3_shoreline" - }, - "container_shoreline_DesignStuff_00617": { - "groupId": "WeaponBox_N8_2_shoreline" - }, - "container_shoreline_DesignStuff_00654": { - "groupId": "WeaponBox_N23_3_shoreline" - }, - "container_shoreline_DesignStuff_00608": { - "groupId": "WeaponBox_N4_3_shoreline" - }, - "container_shoreline_DesignStuff_00634": { - "groupId": "WeaponBox_N16_2_shoreline" - }, - "container_shoreline_DesignStuff_00631": { - "groupId": "WeaponBox_N15_3_shoreline" - }, - "container_shoreline_DesignStuff_00603": { - "groupId": "WeaponBox_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00647": { - "groupId": "WeaponBox_N20_3_shoreline" - }, - "container_shoreline_DesignStuff_00621": { - "groupId": "WeaponBox_N10_2_shoreline" - }, - "container_shoreline_DesignStuff_00626": { - "groupId": "WeaponBox_N13_2_shoreline" - }, - "container_shoreline_DesignStuff_00602": { - "groupId": "WeaponBox_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00627": { - "groupId": "WeaponBox_N13_2_shoreline" - }, - "container_shoreline_DesignStuff_00642": { - "groupId": "WeaponBox_N19_3_shoreline" - }, - "container_shoreline_DesignStuff_00637": { - "groupId": "WeaponBox_N17_3_shoreline" - }, - "container_shoreline_DesignStuff_00613": { - "groupId": "WeaponBox_N6_2_shoreline" - }, - "container_shoreline_DesignStuff_00644": { - "groupId": "WeaponBox_N19_3_shoreline" - }, - "container_shoreline_DesignStuff_00612": { - "groupId": "WeaponBox_N6_2_shoreline" - }, - "container_shoreline_DesignStuff_00604": { - "groupId": "WeaponBox_N3_3_shoreline" - }, - "container_shoreline_DesignStuff_00616": { - "groupId": "WeaponBox_N8_2_shoreline" - }, - "container_shoreline_DesignStuff_00636": { - "groupId": "WeaponBox_N17_3_shoreline" - }, - "container_shoreline_DesignStuff_00624": { - "groupId": "WeaponBox_N12_2_shoreline" - }, - "container_shoreline_DesignStuff_00623": { - "groupId": "WeaponBox_N11_2_shoreline" - }, - "container_shoreline_DesignStuff_00628": { - "groupId": "WeaponBox_N14_3_shoreline" - }, - "container_shoreline_DesignStuff_00629": { - "groupId": "WeaponBox_N14_3_shoreline" - }, - "container_shoreline_DesignStuff_00649": { - "groupId": "WeaponBox_N21_3_shoreline" - }, - "container_shoreline_DesignStuff_00619": { - "groupId": "WeaponBox_N9_2_shoreline" - }, - "container_shoreline_DesignStuff_00609": { - "groupId": "WeaponBox_N4_3_shoreline" - }, - "container_shoreline_DesignStuff_00643": { - "groupId": "WeaponBox_N19_3_shoreline" - }, - "container_shoreline_DesignStuff_00651": { - "groupId": "WeaponBox_N22_2_shoreline" - }, - "container_shoreline_DesignStuff_00653": { - "groupId": "WeaponBox_N23_3_shoreline" - }, - "container_shoreline_DesignStuff_00633": { - "groupId": "WeaponBox_N15_3_shoreline" - }, - "container_shoreline_DesignStuff_00622": { - "groupId": "WeaponBox_N11_2_shoreline" - }, - "container_shoreline_DesignStuff_00656": { - "groupId": "WeaponBox_N24_2_shoreline" - }, - "container_shoreline_DesignStuff_00607": { - "groupId": "WeaponBox_N4_3_shoreline" - }, - "container_shoreline_DesignStuff_00640": { - "groupId": "WeaponBox_N18_3_shoreline" - }, - "container_shoreline_DesignStuff_00625": { - "groupId": "WeaponBox_N12_2_shoreline" - }, - "container_shoreline_DesignStuff_00645": { - "groupId": "WeaponBox_N20_3_shoreline" - }, - "container_shoreline_DesignStuff_00638": { - "groupId": "WeaponBox_N17_3_shoreline" - }, - "container_shoreline_DesignStuff_00611": { - "groupId": "WeaponBox_N5_2_shoreline" - }, - "container_shoreline_DesignStuff_00632": { - "groupId": "WeaponBox_N15_3_shoreline" - }, - "container_shoreline_DesignStuff_00606": { - "groupId": "WeaponBox_N3_3_shoreline" - }, - "container_shoreline_DesignStuff_00618": { - "groupId": "WeaponBox_N9_2_shoreline" - }, - "container_shoreline_DesignStuff_00639": { - "groupId": "WeaponBox_N18_3_shoreline" - }, - "container_shoreline_DesignStuff_00630": { - "groupId": "WeaponBox_N14_3_shoreline" - }, - "container_shoreline_DesignStuff_00648": { - "groupId": "WeaponBox_N21_3_shoreline" - }, - "container_shoreline_DesignStuff_00650": { - "groupId": "WeaponBox_N21_3_shoreline" - }, - "container_shoreline_DesignStuff_00610": { - "groupId": "WeaponBox_N5_2_shoreline" - }, - "container_shoreline_DesignStuff_00646": { - "groupId": "WeaponBox_N20_3_shoreline" - }, - "container_shoreline_DesignStuff_00655": { - "groupId": "WeaponBox_N23_3_shoreline" - }, - "container_shoreline_DesignStuff_00620": { - "groupId": "WeaponBox_N10_2_shoreline" - }, - "container_shoreline_DesignStuff_00605": { - "groupId": "WeaponBox_N3_3_shoreline" - }, - "container_shoreline_DesignStuff_00223": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00601": { - "groupId": "WeaponBox_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00652": { - "groupId": "WeaponBox_N22_2_shoreline" - }, - "container_shoreline_DesignStuff_00635": { - "groupId": "WeaponBox_N16_2_shoreline" - }, - "container_shoreline_DesignStuff_00657": { - "groupId": "WeaponBox_N24_2_shoreline" - }, - "container_shoreline_DesignStuff_00600": { - "groupId": "WeaponBox_N1_2_shoreline" - }, - "container_Test_for_export_00001": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00708": { - "groupId": "Scontainer_ammo_Grenade_N7_4" - }, - "container_shoreline_DesignStuff_00216": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00319": { - "groupId": "Scontainer_ammo_Grenade_N5_2_shoreline" - }, - "container_shoreline_DesignStuff_00318": { - "groupId": "Scontainer_ammo_Grenade_N4_3_shoreline" - }, - "container_shoreline_DesignStuff_00312": { - "groupId": "Scontainer_ammo_Grenade_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00309": { - "groupId": "Scontainer_ammo_Grenade_N1_2_shoreline" - }, - "container_shoreline_DesignStuff_00308": { - "groupId": "Scontainer_ammo_Grenade_N1_2_shoreline" - }, - "container_shoreline_DesignStuff_00321": { - "groupId": "Scontainer_ammo_Grenade_N6_2_shoreline" - }, - "container_shoreline_DesignStuff_00311": { - "groupId": "Scontainer_ammo_Grenade_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00314": { - "groupId": "Scontainer_ammo_Grenade_N3_3_shoreline" - }, - "container_shoreline_DesignStuff_00320": { - "groupId": "Scontainer_ammo_Grenade_N5_2_shoreline" - }, - "container_shoreline_DesignStuff_00316": { - "groupId": "Scontainer_ammo_Grenade_N4_3_shoreline" - }, - "container_shoreline_DesignStuff_00706": { - "groupId": "Scontainer_ammo_Grenade_N7_4" - }, - "container_shoreline_DesignStuff_00705": { - "groupId": "Scontainer_ammo_Grenade_N7_4" - }, - "container_shoreline_DesignStuff_00313": { - "groupId": "Scontainer_ammo_Grenade_N3_3_shoreline" - }, - "container_shoreline_DesignStuff_00310": { - "groupId": "Scontainer_ammo_Grenade_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00317": { - "groupId": "Scontainer_ammo_Grenade_N4_3_shoreline" - }, - "container_shoreline_DesignStuff_00322": { - "groupId": "Scontainer_ammo_Grenade_N6_2_shoreline" - }, - "container_shoreline_DesignStuff_00315": { - "groupId": "Scontainer_ammo_Grenade_N3_3_shoreline" - }, - "container_shoreline_DesignStuff_00707": { - "groupId": "Scontainer_ammo_Grenade_N7_4" - }, - "container_shoreline_DesignStuff_00186": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00184": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00181": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00185": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00183": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00182": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00190": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00180": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00179": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00264": { - "groupId": "Plastic_suitcase_N7_4_shoreline" - }, - "container_shoreline_DesignStuff_00248": { - "groupId": "Plastic_suitcase_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00690": { - "groupId": "Plastic_suitcase_N26_9" - }, - "container_shoreline_DesignStuff_00694": { - "groupId": "Plastic_suitcase_N26_9" - }, - "container_shoreline_DesignStuff_00258": { - "groupId": "Plastic_suitcase_N5_4_shoreline" - }, - "container_shoreline_DesignStuff_00253": { - "groupId": "Plastic_suitcase_N4_3_shoreline" - }, - "container_shoreline_DesignStuff_00254": { - "groupId": "Plastic_suitcase_N4_3_shoreline" - }, - "container_shoreline_DesignStuff_00249": { - "groupId": "Plastic_suitcase_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00719": { - "groupId": "Plastic_suitcase_64_open_P_forest" - }, - "container_shoreline_DesignStuff_00250": { - "groupId": "Plastic_suitcase_N2_3_shoreline" - }, - "container_shoreline_DesignStuff_00262": { - "groupId": "Plastic_suitcase_N6_4_shoreline" - }, - "container_shoreline_DesignStuff_00265": { - "groupId": "Plastic_suitcase_N7_4_shoreline" - }, - "container_shoreline_DesignStuff_00267": { - "groupId": "Plastic_suitcase_N7_4_shoreline" - }, - "container_shoreline_DesignStuff_00715": { - "groupId": "Plastic_suitcase_64_open_P_forest" - }, - "container_shoreline_DesignStuff_00696": { - "groupId": "Plastic_suitcase_N26_9" - }, - "container_shoreline_DesignStuff_00688": { - "groupId": "Plastic_suitcase_N26_9" - }, - "container_shoreline_DesignStuff_00692": { - "groupId": "Plastic_suitcase_N26_9" - }, - "container_shoreline_DesignStuff_00717": { - "groupId": "Plastic_suitcase_64_open_P_forest" - }, - "container_shoreline_DesignStuff_00693": { - "groupId": "Plastic_suitcase_N26_9" - }, - "container_Test_for_export_00002": { - "groupId": "Plastic_suitcase_64_open_P_forest" - }, - "container_shoreline_DesignStuff_00695": { - "groupId": "Plastic_suitcase_N26_9" - }, - "container_shoreline_DesignStuff_00261": { - "groupId": "Plastic_suitcase_N6_4_shoreline" - }, - "container_shoreline_DesignStuff_00255": { - "groupId": "Plastic_suitcase_N4_3_shoreline" - }, - "container_shoreline_DesignStuff_00720": { - "groupId": "Plastic_suitcase_64_open_P_forest" - }, - "container_shoreline_DesignStuff_00252": { - "groupId": "Plastic_suitcase_N3_2_shoreline" - }, - "container_shoreline_DesignStuff_00716": { - "groupId": "Plastic_suitcase_64_open_P_forest" - }, - "container_shoreline_DesignStuff_00691": { - "groupId": "Plastic_suitcase_N26_9" - }, - "container_shoreline_DesignStuff_00259": { - "groupId": "Plastic_suitcase_N5_4_shoreline" - }, - "container_shoreline_DesignStuff_00266": { - "groupId": "Plastic_suitcase_N7_4_shoreline" - }, - "container_shoreline_DesignStuff_00718": { - "groupId": "Plastic_suitcase_64_open_P_forest" - }, - "container_shoreline_DesignStuff_00263": { - "groupId": "Plastic_suitcase_N6_4_shoreline" - }, - "container_shoreline_DesignStuff_00260": { - "groupId": "Plastic_suitcase_N6_4_shoreline" - }, - "container_shoreline_DesignStuff_00247": { - "groupId": "Plastic_suitcase_N1_2_shoreline" - }, - "container_shoreline_DesignStuff_00689": { - "groupId": "Plastic_suitcase_N26_9" - }, - "container_shoreline_DesignStuff_00256": { - "groupId": "Plastic_suitcase_N5_4_shoreline" - }, - "container_shoreline_DesignStuff_00257": { - "groupId": "Plastic_suitcase_N5_4_shoreline" - }, - "container_shoreline_DesignStuff_00251": { - "groupId": "Plastic_suitcase_N3_2_shoreline" - }, - "container_shoreline_DesignStuff_00246": { - "groupId": "Plastic_suitcase_N1_2_shoreline" - }, - "container_shoreline_DesignStuff_00276": { - "groupId": "Plastic_suitcase_N11_2_shoreline" - }, - "container_shoreline_DesignStuff_00296": { - "groupId": "Plastic_suitcase_N19_3_shoreline" - }, - "container_shoreline_DesignStuff_00307": { - "groupId": "Plastic_suitcase_N23_2_shoreline" - }, - "container_shoreline_DesignStuff_00287": { - "groupId": "Plastic_suitcase_N16_3_shoreline" - }, - "container_shoreline_DesignStuff_00268": { - "groupId": "Plastic_suitcase_N8_3_shoreline" - }, - "container_shoreline_DesignStuff_00272": { - "groupId": "Plastic_suitcase_N9_2_shoreline" - }, - "container_shoreline_DesignStuff_00279": { - "groupId": "Plastic_suitcase_N13_2_shoreline" - }, - "container_shoreline_DesignStuff_00297": { - "groupId": "Plastic_suitcase_N19_3_shoreline" - }, - "container_shoreline_DesignStuff_00284": { - "groupId": "Plastic_suitcase_N14_4_shoreline" - }, - "container_shoreline_DesignStuff_00299": { - "groupId": "Plastic_suitcase_N20_3_shoreline" - }, - "container_shoreline_DesignStuff_00304": { - "groupId": "Plastic_suitcase_N22_2_shoreline" - }, - "container_shoreline_DesignStuff_00270": { - "groupId": "Plastic_suitcase_N8_3_shoreline" - }, - "container_shoreline_DesignStuff_00302": { - "groupId": "Plastic_suitcase_N21_3_shoreline" - }, - "container_shoreline_DesignStuff_00273": { - "groupId": "Plastic_suitcase_N10_2_shoreline" - }, - "container_shoreline_DesignStuff_00292": { - "groupId": "Plastic_suitcase_N17_2_shoreline" - }, - "container_shoreline_DesignStuff_00274": { - "groupId": "Plastic_suitcase_N10_2_shoreline" - }, - "container_shoreline_DesignStuff_00300": { - "groupId": "Plastic_suitcase_N20_3_shoreline" - }, - "container_shoreline_DesignStuff_00290": { - "groupId": "Plastic_suitcase_N17_2_shoreline" - }, - "container_shoreline_DesignStuff_00278": { - "groupId": "Plastic_suitcase_N12_2_shoreline" - }, - "container_shoreline_DesignStuff_00286": { - "groupId": "Plastic_suitcase_N15_2_shoreline" - }, - "container_shoreline_DesignStuff_00289": { - "groupId": "Plastic_suitcase_N16_3_shoreline" - }, - "container_shoreline_DesignStuff_00280": { - "groupId": "Plastic_suitcase_N13_2_shoreline" - }, - "container_shoreline_DesignStuff_00306": { - "groupId": "Plastic_suitcase_N23_2_shoreline" - }, - "container_shoreline_DesignStuff_00298": { - "groupId": "Plastic_suitcase_N20_3_shoreline" - }, - "container_shoreline_DesignStuff_00269": { - "groupId": "Plastic_suitcase_N8_3_shoreline" - }, - "container_shoreline_DesignStuff_00191": { - "groupId": "" - }, - "container_shoreline_DesignStuff_00699": { - "groupId": "Plastic_suitcase_N27_4" - }, - "container_shoreline_DesignStuff_00271": { - "groupId": "Plastic_suitcase_N9_2_shoreline" - }, - "container_shoreline_DesignStuff_00697": { - "groupId": "Plastic_suitcase_N27_4" - }, - "container_shoreline_DesignStuff_00288": { - "groupId": "Plastic_suitcase_N16_3_shoreline" - }, - "container_shoreline_DesignStuff_00295": { - "groupId": "Plastic_suitcase_N19_3_shoreline" - }, - "container_shoreline_DesignStuff_00275": { - "groupId": "Plastic_suitcase_N11_2_shoreline" - }, - "container_shoreline_DesignStuff_00303": { - "groupId": "Plastic_suitcase_N21_3_shoreline" - }, - "container_shoreline_DesignStuff_00285": { - "groupId": "Plastic_suitcase_N15_2_shoreline" - }, - "container_shoreline_DesignStuff_00277": { - "groupId": "Plastic_suitcase_N12_2_shoreline" - }, - "container_shoreline_DesignStuff_00698": { - "groupId": "Plastic_suitcase_N27_4" - }, - "container_shoreline_DesignStuff_00293": { - "groupId": "Plastic_suitcase_N18_2_shoreline" - }, - "container_shoreline_DesignStuff_00305": { - "groupId": "Plastic_suitcase_N22_2_shoreline" - }, - "container_shoreline_DesignStuff_00283": { - "groupId": "Plastic_suitcase_N14_4_shoreline" - }, - "container_shoreline_DesignStuff_00282": { - "groupId": "Plastic_suitcase_N14_4_shoreline" - }, - "container_shoreline_DesignStuff_00700": { - "groupId": "Plastic_suitcase_N27_4" - }, - "container_shoreline_DesignStuff_00291": { - "groupId": "Plastic_suitcase_N17_2_shoreline" - }, - "container_shoreline_DesignStuff_00301": { - "groupId": "Plastic_suitcase_N21_3_shoreline" - }, - "container_shoreline_DesignStuff_00281": { - "groupId": "Plastic_suitcase_N14_4_shoreline" - }, - "container_shoreline_DesignStuff_00294": { - "groupId": "Plastic_suitcase_N18_2_shoreline" - } - } -} \ No newline at end of file diff --git a/project/assets/database/locations/suburbs/base.json b/project/assets/database/locations/suburbs/base.json deleted file mode 100644 index 19504b11..00000000 --- a/project/assets/database/locations/suburbs/base.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "Enabled": false, - "Locked": true, - "Insurance": false, - "SafeLocation": false, - "Name": "Suburbs", - "Scene": { - "path": "", - "rcid": "" - }, - "Area": 0, - "RequiredPlayerLevel": 0, - "MinPlayers": 6, - "MaxPlayers": 9, - "exit_count": 0, - "exit_access_time": 0, - "exit_time": 0, - "IconX": 480, - "IconY": 577, - "waves": [ - { - "number": 0, - "time_min": 1, - "time_max": 2, - "slots_min": 3, - "slots_max": 6, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "isPlayers": false, - "WildSpawnType": "assault" - }, - { - "number": 1, - "time_min": 10, - "time_max": 12, - "slots_min": 3, - "slots_max": 5, - "SpawnPoints": "", - "BotSide": "Usec", - "BotPreset": "easy", - "isPlayers": false, - "WildSpawnType": "assault" - } - ], - "limits": [], - "AveragePlayTime": 100, - "AveragePlayerLevel": 10, - "escape_time_limit": 0, - "Rules": "Normal", - "IsSecret": false, - "doors": [], - "tmp_location_field_remove_me": 0, - "MinDistToExitPoint": 0, - "MaxDistToFreePoint": 900, - "MinDistToFreePoint": 10, - "MaxBotPerZone": 0, - "OpenZones": "", - "OcculsionCullingEnabled": false, - "GlobalLootChanceModifier": 0, - "OldSpawn": true, - "NewSpawn": false, - "BotMax": 0, - "BotStart": 0, - "BotStop": 0, - "BotMaxTimePlayer": 0, - "BotSpawnTimeOnMin": 0, - "BotSpawnTimeOnMax": 0, - "BotSpawnTimeOffMin": 0, - "BotSpawnTimeOffMax": 0, - "BotMaxPlayer": 0, - "BotEasy": 0, - "BotNormal": 0, - "BotHard": 0, - "BotImpossible": 0, - "BotAssault": 0, - "BotMarksman": 0, - "DisabledScavExits": "", - "AccessKeys": [], - "UnixDateTime": 0, - "users_gather_seconds": 0, - "users_spawn_seconds_n": 0, - "users_spawn_seconds_n2": 0, - "users_summon_seconds": 0, - "sav_summon_seconds": 0, - "matching_min_seconds": 0, - "MinMaxBots": [], - "BotLocationModifier": { - "AccuracySpeed": 0, - "Scattering": 0, - "GainSight": 0, - "MarksmanAccuratyCoef": 0, - "VisibleDistance": 0 - }, - "exits": [], - "DisabledForScav": false, - "BossLocationSpawn": [], - "SpawnPointParams": [], - "maxItemCountInLocation": [], - "Id": "Suburbs", - "_Id": "5714dc342459777137212e0b", - "Loot": [], - "Banners": [ - { - "id": "5807be8924597742c603fa19", - "pic": { - "path": "CONTENT/banners/banner_tarkov.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT/banners/banner_scavraider.jpg", - "rcid": "" - } - } - ] -} \ No newline at end of file diff --git a/project/assets/database/locations/tarkovstreets/allExtracts.json b/project/assets/database/locations/tarkovstreets/allExtracts.json deleted file mode 100644 index 07ca111f..00000000 --- a/project/assets/database/locations/tarkovstreets/allExtracts.json +++ /dev/null @@ -1,423 +0,0 @@ -[ - { - "Chance": 40.0, - "ChancePVE": 40.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "E8_yard", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 50.0, - "ChancePVE": 50.0, - "Count": 5000, - "CountPve": 0, - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "EventAvailable": false, - "ExfiltrationTime": 60.0, - "ExfiltrationTimePVE": 60.0, - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "E7_car", - "PassageRequirement": "TransferItem", - "PlayersCount": 4, - "PlayersCountPVE": 4, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Item", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E6_1,E1_2", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "E1", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E4_5,E3_4", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "E4", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E2_3,E1_2", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "E2", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E2_3,E3_4", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "E3", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E4_5,E5_6", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "E5", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 0.0, - "ChancePVE": 0.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E6_1,E5_6", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "E6", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "EventAvailable": false, - "ExfiltrationTime": 6.0, - "ExfiltrationTimePVE": 6.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "E9_sniper", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "SharedTimer", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Exit_E10_coop", - "PassageRequirement": "ScavCooperation", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Cooperate", - "Side": "Coop" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E6_1,E5_6", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "E7", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "scav_e1", - "_Name": "Basement Descent", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "scav_e2", - "_Name": "Entrance to Catacombs", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "scav_e3", - "_Name": "Ventilation Shaft", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "scav_e4", - "_Name": "Sewer Manhole", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "scav_e5", - "_Name": "Near Kamchatskaya Arch", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "scav_e7", - "_name": "Cardinal Apartment Complex Parking", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "scav_e8", - "_name": "Klimov Shopping Mall Exfil", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - } -] \ No newline at end of file diff --git a/project/assets/database/locations/tarkovstreets/base.json b/project/assets/database/locations/tarkovstreets/base.json deleted file mode 100644 index 86ebfe75..00000000 --- a/project/assets/database/locations/tarkovstreets/base.json +++ /dev/null @@ -1,14298 +0,0 @@ -{ - "AccessKeys": [], - "AccessKeysPvE": [], - "AirdropParameters": [ - { - "AirdropPointDeactivateDistance": 100, - "MinPlayersCountToSpawnAirdrop": 6, - "PlaneAirdropChance": 0.125, - "PlaneAirdropCooldownMax": 800, - "PlaneAirdropCooldownMin": 700, - "PlaneAirdropEnd": 2700, - "PlaneAirdropMax": 2, - "PlaneAirdropStartMax": 900, - "PlaneAirdropStartMin": 300, - "UnsuccessfulTryPenalty": 400 - } - ], - "Area": 0, - "AveragePlayTime": 50, - "AveragePlayerLevel": 40, - "Banners": [ - { - "id": "5803a58524597710ca36fcb2", - "pic": { - "path": "CONTENT/banners/banner_terragroup.jpg", - "rcid": "" - } - }, - { - "id": "63a9c1f5662a5b0a2c7fbde5", - "pic": { - "path": "CONTENT/banners/banner_City_final.jpg", - "rcid": "" - } - }, - { - "id": "64c0acf85174e095610734a0", - "pic": { - "path": "CONTENT/banners/banner_sherpa.jpg", - "rcid": "" - } - } - ], - "BossLocationSpawn": [ - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "2", - "BossEscortDifficult": "normal", - "BossEscortType": "followerKolontaySecurity", - "BossName": "bossKolontay", - "BossPlayer": false, - "BossZone": "ZoneClimova,ZoneMvd", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": [ - { - "BossEscortAmount": "2", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerKolontayAssault" - }, - { - "BossEscortAmount": "2", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerKolontaySecurity" - }, - { - "BossEscortAmount": "0", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerGluharScout" - } - ], - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "6", - "BossEscortDifficult": "normal", - "BossEscortType": "followerBoar", - "BossName": "bossBoar", - "BossPlayer": false, - "BossZone": "ZoneCarShowroom", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": [ - { - "BossEscortAmount": "4", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerBoar" - }, - { - "BossEscortAmount": "1", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerBoarClose1" - }, - { - "BossEscortAmount": "1", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerBoarClose2" - } - ], - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 100, - "BossDifficult": "normal", - "BossEscortAmount": "1,2", - "BossEscortDifficult": "normal", - "BossEscortType": "bossBoarSniper", - "BossName": "bossBoarSniper", - "BossPlayer": false, - "BossZone": "ZoneSnipeCarShowroom", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": 99999, - "TriggerId": "BossBoarBorn", - "TriggerName": "botEvent" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - } - ], - "BotAssault": 80, - "BotEasy": 10, - "BotHard": 50, - "BotImpossible": 0, - "BotLocationModifier": { - "AccuracySpeed": 1, - "AdditionalHostilitySettings": [ - { - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 75, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcBEAR", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - }, - { - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 90, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcUSEC", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - } - ], - "DistToActivate": 260, - "DistToActivatePvE": 260, - "DistToSleep": 300, - "DistToSleepPvE": 300, - "GainSight": 1, - "MarksmanAccuratyCoef": 1, - "MaxExfiltrationTime": 2200, - "MinExfiltrationTime": 1800, - "Scattering": 1, - "VisibleDistance": 1 - }, - "BotMarksman": 20, - "BotMax": 23, - "BotMaxPlayer": 10, - "BotMaxPvE": 48, - "BotMaxTimePlayer": 1000, - "BotNormal": 40, - "BotSpawnCountStep": 3, - "BotSpawnPeriodCheck": 14, - "BotSpawnTimeOffMax": 25, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOnMax": 360, - "BotSpawnTimeOnMin": 290, - "BotStart": 122, - "BotStartPlayer": 550, - "BotStop": 2200, - "Description": "The downtown Tarkov with banks, malls, hotels and all the other things a striving modern city could have needed.", - "DisabledForScav": false, - "DisabledScavExits": "", - "EnableCoop": true, - "Enabled": true, - "EscapeTimeLimit": 50, - "EscapeTimeLimitCoop": 30, - "EscapeTimeLimitPVE": 50, - "Events": { - "Halloween2024": { - "CrowdAttackBlockRadius": 100, - "CrowdAttackSpawnParams": [ - { - "Difficulty": "easy", - "Role": "infectedAssault", - "Weight": 20 - }, - { - "Difficulty": "normal", - "Role": "infectedAssault", - "Weight": 80 - }, - { - "Difficulty": "hard", - "Role": "infectedAssault", - "Weight": 40 - }, - { - "Difficulty": "easy", - "Role": "infectedPmc", - "Weight": 5 - }, - { - "Difficulty": "normal", - "Role": "infectedPmc", - "Weight": 35 - }, - { - "Difficulty": "hard", - "Role": "infectedPmc", - "Weight": 20 - }, - { - "Difficulty": "easy", - "Role": "infectedCivil", - "Weight": 15 - }, - { - "Difficulty": "normal", - "Role": "infectedCivil", - "Weight": 60 - }, - { - "Difficulty": "hard", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "easy", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedLaborant", - "Weight": 0 - } - ], - "CrowdCooldownPerPlayerSec": 300, - "CrowdsLimit": 2, - "InfectedLookCoeff": 2, - "InfectionPercentage": 0, - "MaxCrowdAttackSpawnLimit": 18, - "MinInfectionPercentage": 0, - "MinSpawnDistToPlayer": 50, - "TargetPointSearchRadiusLimit": 200, - "ZombieCallDeltaRadius": 20, - "ZombieCallPeriodSec": 1, - "ZombieCallRadiusLimit": 200, - "ZombieMultiplier": 5 - } - }, - "ExitZones": "5c82534488a45046451a2386", - "ForceOnlineRaidInPVE": false, - "GenerateLocalLootCache": true, - "GlobalContainerChanceModifier": 1, - "GlobalLootChanceModifier": 0.17, - "GlobalLootChanceModifierPvE": 0.37, - "IconX": 670, - "IconY": 620, - "Id": "TarkovStreets", - "Insurance": true, - "IsSecret": false, - "Locked": false, - "Loot": [], - "MatchMakerMinPlayersByWaitTime": [ - { - "minPlayers": 12, - "time": 60 - }, - { - "minPlayers": 10, - "time": 70 - }, - { - "minPlayers": 8, - "time": 120 - }, - { - "minPlayers": 7, - "time": 180 - }, - { - "minPlayers": 5, - "time": 250 - }, - { - "minPlayers": 3, - "time": 330 - }, - { - "minPlayers": 1, - "time": 420 - } - ], - "MaxBotPerZone": 5, - "MaxCoopGroup": 20, - "MaxDistToFreePoint": 250, - "MaxPlayers": 16, - "MinDistToExitPoint": 10, - "MinDistToFreePoint": 90, - "MinMaxBots": [], - "MinPlayerLvlAccessKeys": 0, - "MinPlayers": 12, - "Name": "Streets of Tarkov", - "NewSpawn": true, - "NewSpawnForPlayers": true, - "NonWaveGroupScenario": { - "Chance": 50, - "Enabled": true, - "MaxToBeGroup": 3, - "MinToBeGroup": 2 - }, - "OcculsionCullingEnabled": false, - "OfflineNewSpawn": true, - "OfflineOldSpawn": true, - "OldSpawn": true, - "OpenZones": "ZoneSW01,ZoneConstruction,ZoneCarShowroom,ZoneCinema,ZoneFactory,ZoneHotel_1,ZoneHotel_2,ZoneConcordia_1,ZoneConcordiaParking,ZoneSnipeCinema,ZoneSnipeCarShowroom,ZoneSnipeBuilding,ZoneSnipeSW01", - "PlayersRequestCount": -1, - "PmcMaxPlayersInGroup": 5, - "Preview": { - "path": "", - "rcid": "" - }, - "RequiredPlayerLevelMax": 100, - "RequiredPlayerLevelMin": 0, - "Rules": "Normal", - "SafeLocation": false, - "ScavMaxPlayersInGroup": 4, - "Scene": { - "path": "maps/city_preset.bundle", - "rcid": "city.scenespreset.asset" - }, - "SpawnPointParams": [ - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 24, - "DelayToCanSpawnSec": 40, - "Id": "010b0da2-f753-43e3-8b0f-a83ae86e6f4e", - "Infiltration": "", - "Position": { - "x": 142.932, - "y": 6.69, - "z": 361.238 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "01346f2c-c43a-4603-8ad3-4686e3efddfe", - "Infiltration": "", - "Position": { - "x": 203.780014, - "y": 1.170002, - "z": 190.65 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneConcordia_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "02a6e1c5-42a9-4671-970b-1df2a1cd93cc", - "Infiltration": "", - "Position": { - "x": 204.66, - "y": 3.545, - "z": 404.31 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneCard1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "0312f9fe-9566-40e4-8ceb-681703da27af", - "Infiltration": "", - "Position": { - "x": 63.6960144, - "y": 0.270000458, - "z": -55.2399979 - }, - "Rotation": 84.2096558, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 22, - "DelayToCanSpawnSec": 40, - "Id": "0364c889-0780-41d9-8cce-ac309fbb529e", - "Infiltration": "", - "Position": { - "x": -133.321, - "y": 0.6079955, - "z": -26.729 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneColumn", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 40, - "Id": "04579db6-ef1c-4d02-be02-032f4b838985", - "Infiltration": "", - "Position": { - "x": 39.257, - "y": 2.829, - "z": 200.375 - }, - "Rotation": 359.110931, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneConstruction", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 40, - "Id": "045df890-4270-4ff6-b632-b926d95acccc", - "Infiltration": "", - "Position": { - "x": 204.58, - "y": 6.91, - "z": 297.1 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "04d3fdcc-6cb7-4485-8e4c-c88ef2318690", - "Infiltration": "", - "Position": { - "x": 171.993011, - "y": 0.544002533, - "z": 153.186 - }, - "Rotation": 73.40837, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "05381357-3db8-406b-b007-e7290f406ede", - "Infiltration": "E6_1", - "Position": { - "x": -178.507, - "y": 2.451, - "z": 415.023 - }, - "Rotation": 11.8153534, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "055b9120-abe9-4455-a08b-9841bb1fb1e7", - "Infiltration": "E3_4", - "Position": { - "x": 184.824, - "y": 2.528, - "z": 186.987 - }, - "Rotation": 24.4516544, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "061e1b50-93bb-4d8e-8a78-79c6d4235b83", - "Infiltration": "E3_4", - "Position": { - "x": 100.71, - "y": -1.854, - "z": -162.53 - }, - "Rotation": 2.51932168, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "06e00b7c-c4b2-4b41-9b5f-f185b9caf444", - "Infiltration": "E3_4", - "Position": { - "x": 53.182, - "y": 4.531, - "z": -138.587 - }, - "Rotation": 270.557, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "07b43bcb-b19f-4009-8e7a-b646d1427c10", - "Infiltration": "", - "Position": { - "x": 58.914, - "y": 2.65034533, - "z": 324.237 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "07beeaca-f6b0-4ff1-ae20-dbbe9cfc0ca4", - "Infiltration": "E3_4", - "Position": { - "x": 53.22, - "y": 4.781, - "z": -130.649 - }, - "Rotation": 259.938782, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 43 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "08d42d8a-2c4d-4c8d-b23c-3e06b284df92", - "Infiltration": "E1_2", - "Position": { - "x": 232.64, - "y": 3.49, - "z": 409.53 - }, - "Rotation": 169.7296, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneConcordia_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "09e762e3-f015-40cf-958e-4cdab50a3384", - "Infiltration": "", - "Position": { - "x": 271.1, - "y": 3.526, - "z": 374.04 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0a1cae8d-6b53-40d2-a7e5-91771dc05803", - "Infiltration": "E6_1", - "Position": { - "x": -134.814, - "y": 3.058, - "z": 399.605 - }, - "Rotation": 271.2534, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0a95f5de-4fed-4aab-8381-b537a5415d88", - "Infiltration": "E5_6", - "Position": { - "x": -163.933, - "y": 3.158, - "z": 183.069 - }, - "Rotation": 74.27901, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneFactory", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 40, - "Id": "0ad67b7c-8bf9-4666-9796-bdcb12cd44cd", - "Infiltration": "", - "Position": { - "x": -164.56, - "y": 2.26, - "z": 291.57 - }, - "Rotation": 130.584167, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneColumn", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 40, - "Id": "0aea1cd2-c0d4-4aa5-a755-d4980deefa0e", - "Infiltration": "", - "Position": { - "x": 39.23, - "y": 2.872, - "z": 222.293 - }, - "Rotation": 359.110931, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0afff689-6beb-46a2-aece-4c1380e986fd", - "Infiltration": "E4_5", - "Position": { - "x": -59.838, - "y": 3.202, - "z": -147.273 - }, - "Rotation": 2.51925588, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneConcordiaParking", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 40, - "Id": "0b1dbcb2-f978-42d7-bdf6-5f2ae6177baf", - "Infiltration": "", - "Position": { - "x": 269.506, - "y": -1.227, - "z": 379.56 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 40, - "Id": "0bbeb406-a8e4-4c45-bbc3-555023319a9b", - "Infiltration": "", - "Position": { - "x": -50.196, - "y": 5.152, - "z": -31.695 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneHotel_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "0c6e07b3-3e37-4169-ad60-4d4a8a0c304a", - "Infiltration": "", - "Position": { - "x": -84.273, - "y": 1.464, - "z": 177.886 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "0d70b594-1e3b-4c84-b3bb-8dfd15a6f105", - "Infiltration": "", - "Position": { - "x": 224.564011, - "y": 0.5250015, - "z": 182.244 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSnipeStilo", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 40, - "Id": "0decbe7a-e53c-4756-adfc-b6b3bd57be51", - "Infiltration": "", - "Position": { - "x": -147.78, - "y": 14.9, - "z": -7.22999954 - }, - "Rotation": 11.7017088, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "0f5fc468-ee34-4417-b9f7-1eb488500bcd", - "Infiltration": "", - "Position": { - "x": 100.996, - "y": 2.6838336, - "z": 271.171021 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0fc1edd9-6234-49d5-b6f2-fdbca041de7a", - "Infiltration": "E2_3", - "Position": { - "x": 211.142, - "y": -1.221, - "z": 341.592 - }, - "Rotation": 4.729597, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "10a75815-d786-43e2-9639-6b94071433f8", - "Infiltration": "E3_4", - "Position": { - "x": 7.45797729, - "y": 1.77900016, - "z": 153.593964 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "111667a7-3ece-4abc-a025-93eae7d99923", - "Infiltration": "", - "Position": { - "x": 226.77002, - "y": 0.458999634, - "z": 218.89 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "119b220b-ec7f-41a8-bdb2-eeb831e2c17b", - "Infiltration": "E1_2", - "Position": { - "x": 12.6679993, - "y": 2.538, - "z": 456.494 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "12aec958-35b1-4808-810d-3a446152514c", - "Infiltration": "E6_1", - "Position": { - "x": -231.978, - "y": 2.312, - "z": 344.996 - }, - "Rotation": 16.7069, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "12bb197b-bc6b-449c-9cf1-54ed289a364b", - "Infiltration": "E3_4", - "Position": { - "x": 228.885, - "y": 4.007, - "z": 176.279 - }, - "Rotation": 243.713043, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "139af8b7-7e40-41b3-ac53-5a02e15a295d", - "Infiltration": "", - "Position": { - "x": 236.810013, - "y": 0.458999634, - "z": 216.9 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneColumn", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 40, - "Id": "14f8ecf6-8a2d-4372-a992-aa688bdd2a9e", - "Infiltration": "", - "Position": { - "x": 39.037, - "y": 2.848, - "z": 203.36 - }, - "Rotation": 359.110931, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneHotel_2", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 40, - "Id": "154171f2-bc80-49dc-abc2-d8f8dc500dc3", - "Infiltration": "", - "Position": { - "x": -74.66, - "y": 0.9370003, - "z": 75.15 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneHotel_2", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 40, - "Id": "156e4a8d-d22b-40f8-9b73-900e9a7452f4", - "Infiltration": "", - "Position": { - "x": -76.42, - "y": 0.9370003, - "z": 76.47 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1642625e-f60d-48fa-a83a-462639772442", - "Infiltration": "E4_5", - "Position": { - "x": -59.862, - "y": 3.737, - "z": -148.574 - }, - "Rotation": 2.51925588, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 40, - "Id": "17748101-4c7c-4dfc-b0f7-904b99959bd5", - "Infiltration": "", - "Position": { - "x": -47.515, - "y": 0.612, - "z": -67.681 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "181f7000-df70-4bc7-bff3-a709291c907f", - "Infiltration": "E3_4", - "Position": { - "x": 5.847992, - "y": 1.77900016, - "z": 153.694 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneConstruction", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 40, - "Id": "185bf0c6-463a-49f1-8075-8f48bdc9f50d", - "Infiltration": "", - "Position": { - "x": 215.331, - "y": 3.37095356, - "z": 331.588 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 42 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "193e004b-47e0-4a83-9346-c042cfdb0e0d", - "Infiltration": "E2_3", - "Position": { - "x": 208.555, - "y": 3.935, - "z": 296.639 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1a12fe62-5b4c-4569-9442-226daeb537be", - "Infiltration": "E2_3", - "Position": { - "x": 186.85, - "y": 3.529, - "z": 460.53 - }, - "Rotation": 134.938431, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1a739b38-2308-4cdf-9997-ed0a40f835d7", - "Infiltration": "E4_5", - "Position": { - "x": -44.833, - "y": 6.678, - "z": -114.215 - }, - "Rotation": 272.519379, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1ae5dc66-b54c-4584-bc24-174f5b3194ec", - "Infiltration": "E1_2", - "Position": { - "x": 15.6880035, - "y": 2.538, - "z": 455.654022 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1b431641-ac71-49e5-a807-7988e4799d44", - "Infiltration": "E2_3", - "Position": { - "x": 209.973, - "y": -1.221, - "z": 341.66 - }, - "Rotation": 4.729597, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1b65286c-52e8-48ef-a369-e89bfd0ab95e", - "Infiltration": "E3_4", - "Position": { - "x": -7.321991, - "y": 1.658, - "z": 149.903992 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1c5de52e-7857-41a4-8fa6-a0437a1046c1", - "Infiltration": "E5_6", - "Position": { - "x": -227.329, - "y": 5.26, - "z": 277.332 - }, - "Rotation": 25.0000076, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1c9382e9-e618-4ebe-9034-f53406add842", - "Infiltration": "E4_5", - "Position": { - "x": -58.206, - "y": 3.214, - "z": -146.784 - }, - "Rotation": 2.51925588, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1cb8c71d-cba3-4641-a415-b1832dd587df", - "Infiltration": "E3_4", - "Position": { - "x": -16.305, - "y": 2.763, - "z": -133.662 - }, - "Rotation": 92.51915, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSnipeStilo", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 40, - "Id": "1cf92628-65d1-4217-b59c-224284364c66", - "Infiltration": "", - "Position": { - "x": -132.87, - "y": 14.9, - "z": -10.3600006 - }, - "Rotation": 11.7017088, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1da69ad5-800f-4c52-a49c-83ad83567849", - "Infiltration": "E6_1", - "Position": { - "x": -136.856, - "y": 2.565, - "z": 399.57 - }, - "Rotation": 271.2534, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 21, - "DelayToCanSpawnSec": 40, - "Id": "1e4fc352-3e96-4811-8cf1-a50b60e9b7d5", - "Infiltration": "", - "Position": { - "x": -158.92, - "y": 0.74, - "z": -27.77 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 40, - "Id": "1f4c6216-b846-4666-86fa-9bf5ac1b54b2", - "Infiltration": "", - "Position": { - "x": 214.87001, - "y": -4.46999741, - "z": 30.41 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneHotel_2", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 40, - "Id": "1fa271eb-c22e-4e42-bb34-1428367909f5", - "Infiltration": "", - "Position": { - "x": -96.61, - "y": 0.9370003, - "z": 83.2299957 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1fa87642-c899-4952-b848-2401a677f05d", - "Infiltration": "E3_4", - "Position": { - "x": 227.794, - "y": 3.945, - "z": 174.694 - }, - "Rotation": 270.745667, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW01", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "1fb19a14-dc93-43ef-b701-479a362a5647", - "Infiltration": "", - "Position": { - "x": 60.7000122, - "y": 0.520000458, - "z": 169.49 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneFactory", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 40, - "Id": "202f0646-b477-4e45-a8a8-5959a1b802c8", - "Infiltration": "", - "Position": { - "x": -170.34, - "y": 2.26, - "z": 287.44 - }, - "Rotation": 130.584167, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "205c1c16-f3d6-4504-a1f0-5916e08fe58b", - "Infiltration": "E3_4", - "Position": { - "x": 232.682, - "y": -2.049, - "z": -103.148 - }, - "Rotation": 4.72974443, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "20a712ad-fd79-4983-89e4-5234075c9638", - "Infiltration": "E3_4", - "Position": { - "x": 221.598, - "y": 3.94900012, - "z": 175.266 - }, - "Rotation": 188.465591, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "20d71bb7-6e77-4e5b-99d4-34d76ee7b84b", - "Infiltration": "", - "Position": { - "x": 85.81, - "y": 5.4, - "z": 348.52 - }, - "Rotation": 150.2019, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "21de733a-84ef-4b78-aa96-c6f73c383f00", - "Infiltration": "", - "Position": { - "x": 235.6, - "y": 0.458999634, - "z": 213.8 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "222800ad-50c8-4c75-b94b-ff1ec3d807d0", - "Infiltration": "E1_2", - "Position": { - "x": 12.2680054, - "y": 2.538, - "z": 449.444 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneConcordiaParking", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 40, - "Id": "229d48d3-7c76-4e31-9915-378f24415d31", - "Infiltration": "", - "Position": { - "x": 256.02, - "y": -1.227, - "z": 357.65 - }, - "Rotation": 180, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneCard1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 40, - "Id": "22cecca7-d665-4c86-9447-43769d7bc357", - "Infiltration": "", - "Position": { - "x": 137.993011, - "y": -1.41999817, - "z": -55.086 - }, - "Rotation": 329.075928, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW01", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "22f77e01-a62e-48d0-8b4c-91b61244a341", - "Infiltration": "", - "Position": { - "x": 76.42502, - "y": -0.629997253, - "z": 86.182 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSnipeCarShowroom", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 40, - "Id": "25b34c1e-1071-42b0-9e4c-dc6135b20ca8", - "Infiltration": "", - "Position": { - "x": 55.02, - "y": 11.9036674, - "z": 297.38 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneCinema", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 40, - "Id": "2645fcda-b265-4ae4-abc4-745f23bfb036", - "Infiltration": "", - "Position": { - "x": -189.93, - "y": 8.76, - "z": 421.67 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "27a58c7b-bbe4-450f-b7fc-9232111ac811", - "Infiltration": "E6_1", - "Position": { - "x": -134.489, - "y": 2.515, - "z": 399.622 - }, - "Rotation": 271.2534, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2860e2ed-22f6-4163-b8e2-d64fcd051a7e", - "Infiltration": "E5_6", - "Position": { - "x": -176.75, - "y": 1.218, - "z": 105.23 - }, - "Rotation": 94.72969, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "287a00e5-afa8-4255-991d-598e2cc0f455", - "Infiltration": "E3_4", - "Position": { - "x": 231.865, - "y": -2.049, - "z": -106.136 - }, - "Rotation": 4.72974443, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "287bf35f-5cdc-44dc-97b6-c035d5054bfa", - "Infiltration": "E3_4", - "Position": { - "x": 6.354004, - "y": 1.77900016, - "z": 158.00296 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneHotel_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "2881f9ca-471c-4f18-beb7-45a0f178ab6f", - "Infiltration": "", - "Position": { - "x": -86.032, - "y": 1.464, - "z": 178.024 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "28cc9ecf-5756-497c-9e7f-32eb985f027c", - "Infiltration": "", - "Position": { - "x": 71.815, - "y": 2.701, - "z": 266.432 - }, - "Rotation": 93.85756, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "2962b45b-9335-48da-869d-bf579455f280", - "Infiltration": "", - "Position": { - "x": 164.554016, - "y": 0.544002533, - "z": 138.12 - }, - "Rotation": 73.40837, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 34 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2a0f649a-ad74-43ae-a6a9-26dd04f64eb0", - "Infiltration": "E5_6", - "Position": { - "x": -205.115, - "y": 3.367, - "z": 182.111 - }, - "Rotation": 4.729717, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2a63de9c-7537-41ca-9670-de45fba8892c", - "Infiltration": "E3_4", - "Position": { - "x": 187.061, - "y": 1.574, - "z": 189.557 - }, - "Rotation": 24.4516544, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneConstruction", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 40, - "Id": "2b34ce3d-efd4-4567-be57-f570135c65bb", - "Infiltration": "", - "Position": { - "x": 214.818, - "y": 3.37095356, - "z": 329.919 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2e02fd39-ee4a-4c26-bb44-12324b433a02", - "Infiltration": "E3_4", - "Position": { - "x": -7.441986, - "y": 1.65800035, - "z": 146.70401 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2e7b1c7a-a66e-4c90-9937-53a61ca5e7da", - "Infiltration": "E6_1", - "Position": { - "x": -179.339, - "y": 2.451, - "z": 416.352 - }, - "Rotation": 11.8153534, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2e904d20-0a47-458c-92e2-6f51d7b600dc", - "Infiltration": "E3_4", - "Position": { - "x": 261.511, - "y": -5.94, - "z": 49.977 - }, - "Rotation": 319.729767, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneColumn", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 40, - "Id": "306490d5-614d-4bd6-81e9-79d5d18332e4", - "Infiltration": "", - "Position": { - "x": -16.872, - "y": 2.633, - "z": 242.265 - }, - "Rotation": 158.789185, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "31802d49-5363-437c-86d4-bdf80b7d0e94", - "Infiltration": "E6_1", - "Position": { - "x": -176.596, - "y": 2.455, - "z": 466.984 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneHotel_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "31b03139-35c1-40c8-91cb-a367701ee0d8", - "Infiltration": "", - "Position": { - "x": -70.735, - "y": 1.464, - "z": 154.221008 - }, - "Rotation": 331.5, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "324de29c-ed55-45f0-8b62-5a6f125d89ee", - "Infiltration": "E2_3", - "Position": { - "x": 271.36, - "y": -1.16, - "z": 376.28 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneMvd", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 23, - "DelayToCanSpawnSec": 40, - "Id": "3256e08f-c8ba-48a5-a37c-589440e95266", - "Infiltration": "", - "Position": { - "x": -258.28, - "y": 2.86, - "z": 140.75 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "333d8134-55fa-4556-9214-59703d6fd4cf", - "Infiltration": "E4_5", - "Position": { - "x": -111.692, - "y": 0.659, - "z": -28.424 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 34 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "34f4b186-867c-431d-b706-d4114867c969", - "Infiltration": "E5_6", - "Position": { - "x": -203.631, - "y": 3.367, - "z": 180.776 - }, - "Rotation": 4.729717, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3563d32b-aae5-4f04-a95d-36d8455b42f0", - "Infiltration": "E3_4", - "Position": { - "x": 234.745, - "y": -2.049, - "z": -103.385 - }, - "Rotation": 4.72974443, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "35c84f0b-bdc1-4499-814d-f904a9dfe896", - "Infiltration": "E3_4", - "Position": { - "x": 102.07, - "y": -1.854, - "z": -158.58 - }, - "Rotation": 2.51932168, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "35f2a220-0007-455b-ac2d-a79a402ed0e1", - "Infiltration": "E6_1", - "Position": { - "x": -192.295, - "y": 3.137, - "z": 345.684 - }, - "Rotation": 16.7069, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneConcordia_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "36aea5ca-a3cd-494f-b215-7ebad42453c5", - "Infiltration": "", - "Position": { - "x": 201.178, - "y": 3.545, - "z": 401.783 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "379f1724-3244-4a26-a604-857607bab059", - "Infiltration": "E4_5", - "Position": { - "x": -150.644, - "y": 0.65, - "z": -63.383 - }, - "Rotation": 15.3466482, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3928558f-893e-4c30-a981-1a93e4ba9468", - "Infiltration": "E6_1", - "Position": { - "x": -182.94, - "y": 2.41, - "z": 413.56 - }, - "Rotation": 11.8153534, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "39637b62-6c87-4fee-bc32-446b3e76ad65", - "Infiltration": "E4_5", - "Position": { - "x": -152.333, - "y": 0.736, - "z": -66.574 - }, - "Rotation": 15.3466482, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3a49af12-a9d4-44fb-b6e1-241cfd48661f", - "Infiltration": "E2_3", - "Position": { - "x": 175.964, - "y": 3.093, - "z": 234.797 - }, - "Rotation": 356.824432, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3b54601a-2e4b-4991-988e-962f1ee45668", - "Infiltration": "E3_4", - "Position": { - "x": 1.82800293, - "y": 1.77900016, - "z": 155.083984 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3c5202ab-9df1-464d-bceb-f7b0c94978b3", - "Infiltration": "E6_1", - "Position": { - "x": -192.658, - "y": 4.993, - "z": 386.326 - }, - "Rotation": 190.496658, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3d6f0b05-6fa2-414a-8e6a-1c725ee7c98b", - "Infiltration": "E3_4", - "Position": { - "x": 52.732, - "y": 4.531, - "z": -135.649 - }, - "Rotation": 269.1392, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3da963bd-5ff6-4d70-ab3c-50dbc5291d93", - "Infiltration": "E4_5", - "Position": { - "x": -50.879, - "y": 0.668, - "z": -67.271 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 40, - "Id": "3db8e614-519e-4848-851c-760a101b1f23", - "Infiltration": "", - "Position": { - "x": 244.650009, - "y": -5.369999, - "z": 28.72 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3f2579e6-c7a4-46c3-8b3f-c5e46b2f2179", - "Infiltration": "E2_3", - "Position": { - "x": 185.6, - "y": 3.529, - "z": 459.37 - }, - "Rotation": 134.938431, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "40456b8a-17a5-48ec-acfc-fcaccffbb369", - "Infiltration": "E6_1", - "Position": { - "x": -235.154, - "y": 2.846, - "z": 345.06 - }, - "Rotation": 16.7069, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "415f3cfd-a781-4cce-af45-a6e5e540c2d8", - "Infiltration": "E1_2", - "Position": { - "x": 99.35, - "y": 2.76, - "z": 446.78 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneColumn", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "4196d6bb-4b89-4ef2-91e3-e82e20842b80", - "Infiltration": "", - "Position": { - "x": -15.846, - "y": 2.633, - "z": 232.6 - }, - "Rotation": 114.231476, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSnipeStilo", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 40, - "Id": "43007ffd-1e13-45a2-a1ff-826711e427c8", - "Infiltration": "", - "Position": { - "x": -161.81, - "y": 14.9, - "z": -4.299999 - }, - "Rotation": 11.7017088, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "434372f3-b06c-4ff2-bddd-ea5c49e64980", - "Infiltration": "E1_2", - "Position": { - "x": 155.767, - "y": 3.624, - "z": 428.614 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSnipeCard", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 40, - "Id": "43487182-ef1f-40e8-b1fa-02bc10c698fe", - "Infiltration": "", - "Position": { - "x": 41.18, - "y": 28.512, - "z": -20.71 - }, - "Rotation": 11.7017088, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSnipeBuilding", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 12, - "DelayToCanSpawnSec": 40, - "Id": "43ae42e9-dda2-4b49-ba08-9f65c2938075", - "Infiltration": "", - "Position": { - "x": -24.67, - "y": 21.1835, - "z": 228.13 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "449f9c89-4da0-4cce-a2d1-768eab547d90", - "Infiltration": "E1_2", - "Position": { - "x": -65.996, - "y": 2.699, - "z": 459.747 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4598a010-a486-47b8-8242-fd738fccb250", - "Infiltration": "E3_4", - "Position": { - "x": 270.52, - "y": -4.431, - "z": 88.67 - }, - "Rotation": 268.542847, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "459dcb35-edf8-4a0f-b8c3-292aed6e54f8", - "Infiltration": "E5_6", - "Position": { - "x": -242.312, - "y": 3.685, - "z": 242.94 - }, - "Rotation": 205, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "45ee04b7-c90a-45d9-a774-a2462823e1d9", - "Infiltration": "E1_2", - "Position": { - "x": 45.792, - "y": 2.717, - "z": 417.082 - }, - "Rotation": 241.253387, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "4605736c-cf1a-4d87-86b2-2e79ef9be905", - "Infiltration": "", - "Position": { - "x": 167.700012, - "y": -3.73999786, - "z": 29.57 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "461b6342-cc1c-4217-8d98-ddd3f56471ba", - "Infiltration": "E1_2", - "Position": { - "x": 157, - "y": 3.624, - "z": 430.76 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "489874fa-2e4b-4351-b54a-40785d13404f", - "Infiltration": "E3_4", - "Position": { - "x": 186.511, - "y": 1.574, - "z": 188.445 - }, - "Rotation": 24.4516544, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4954677b-e5db-40c3-a31a-991cf0078667", - "Infiltration": "E2_3", - "Position": { - "x": 186.79, - "y": 3.529, - "z": 454.4 - }, - "Rotation": 134.938431, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "49dbe3ee-602c-41ad-977b-03391cb6ef85", - "Infiltration": "E4_5", - "Position": { - "x": -106.422, - "y": 0.662, - "z": -29.223 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4a2321cc-5cff-43fb-9fd9-8503c30409b5", - "Infiltration": "E6_1", - "Position": { - "x": -231.985, - "y": 2.196, - "z": 342.49 - }, - "Rotation": 340.000031, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "4a9efa42-ff64-4c11-ae45-45a81138e501", - "Infiltration": "", - "Position": { - "x": 195.240021, - "y": 1.24000168, - "z": 221.27 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "4ae950be-2966-4fe7-8828-a5c8db249dd1", - "Infiltration": "", - "Position": { - "x": 172.87001, - "y": 0.544002533, - "z": 154.790009 - }, - "Rotation": 73.40837, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4afab3b8-1bf3-4a60-add4-c35c282330de", - "Infiltration": "E5_6", - "Position": { - "x": -243.129, - "y": 3.43, - "z": 240.565 - }, - "Rotation": 205, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneConstruction", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 40, - "Id": "4b26980e-06ac-478c-9c8f-2944b1df8c53", - "Infiltration": "", - "Position": { - "x": 204.5, - "y": 4.051, - "z": 297.93 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4be30299-8bd5-40a7-8ddb-567fcf24fe8e", - "Infiltration": "E3_4", - "Position": { - "x": -10.37, - "y": 2.763, - "z": -135.41 - }, - "Rotation": 92.51915, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneCard1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 40, - "Id": "4daed50e-63c1-40b8-8aac-652854043bb7", - "Infiltration": "", - "Position": { - "x": 144.930008, - "y": -1.41999817, - "z": -42.8000031 - }, - "Rotation": 329.075928, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4e394534-0f48-48d1-9eea-9f220a71ab7c", - "Infiltration": "E6_1", - "Position": { - "x": -180.504, - "y": 2.451, - "z": 419.05 - }, - "Rotation": 11.8153534, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4e6a55b9-afc8-43a5-8829-a975360bdd1d", - "Infiltration": "E3_4", - "Position": { - "x": 233.368, - "y": -2.049, - "z": -107.123 - }, - "Rotation": 4.72974443, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 40, - "Id": "4e7b02cf-f280-4adf-bf55-efba0ff91ab1", - "Infiltration": "", - "Position": { - "x": 243.63, - "y": -5.369999, - "z": 29.31 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4e876370-2396-4517-81c1-c535811d18e0", - "Infiltration": "E3_4", - "Position": { - "x": -2.321991, - "y": 1.65800035, - "z": 147.134 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 43 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4eac1ca9-b5e9-4152-8a37-1b6a9ceb31c0", - "Infiltration": "E1_2", - "Position": { - "x": 227.6, - "y": 3.351, - "z": 410.72 - }, - "Rotation": 169.7296, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4ef9cea7-5a05-48f7-a2f9-ec3d8c293e46", - "Infiltration": "E6_1", - "Position": { - "x": -175.222, - "y": 2.455, - "z": 468.656 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4f151837-42df-4901-a690-eb2a0e8da35b", - "Infiltration": "E4_5", - "Position": { - "x": -152.769, - "y": 9.669, - "z": -26.856 - }, - "Rotation": 2.51923227, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4f682901-0a40-4edf-a6c6-498a55dd3eb0", - "Infiltration": "E1_2", - "Position": { - "x": -61.464, - "y": 2.699, - "z": 457.351 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 22, - "DelayToCanSpawnSec": 40, - "Id": "4f6db5dd-430f-4630-91d5-062efb217391", - "Infiltration": "", - "Position": { - "x": -155.71, - "y": 0.74, - "z": -22.7799988 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4f865c11-d533-4fce-9833-fe41a6cb52af", - "Infiltration": "E3_4", - "Position": { - "x": 7.097992, - "y": 1.80700016, - "z": 159.374 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4fa6a8fd-fbae-4fb9-8a46-2fd88ac12e03", - "Infiltration": "E4_5", - "Position": { - "x": -150.592, - "y": 9.644, - "z": -23.594 - }, - "Rotation": 2.51923227, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4fb0d413-cf19-4580-8217-b2d6ca431e91", - "Infiltration": "E3_4", - "Position": { - "x": 7.289978, - "y": 1.77900016, - "z": 160.726959 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "5014556a-cb4b-42e5-b95d-35dc2d519fbd", - "Infiltration": "", - "Position": { - "x": 78.042, - "y": 2.837, - "z": 286.172 - }, - "Rotation": 86.38937, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 43 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "507e4e1d-a245-4f88-9f2b-6050cd4a6c38", - "Infiltration": "E1_2", - "Position": { - "x": 231.32, - "y": 3.49, - "z": 410.43 - }, - "Rotation": 169.7296, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneMvd", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 23, - "DelayToCanSpawnSec": 40, - "Id": "508ee6c4-a51c-42a4-b365-49dff28153e5", - "Infiltration": "", - "Position": { - "x": -253.98999, - "y": 3.09, - "z": 125.359993 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "513389c0-537c-4b78-8605-eb3a3bedc851", - "Infiltration": "E4_5", - "Position": { - "x": -47.652, - "y": 0.668, - "z": -65.516 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "51d31613-2013-4a87-911f-5b2fb4d44c25", - "Infiltration": "E1_2", - "Position": { - "x": 44.472, - "y": 2.717, - "z": 414.922 - }, - "Rotation": 241.253387, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "523ddb61-fa1c-460d-be68-4f7638f6d80d", - "Infiltration": "E3_4", - "Position": { - "x": 244.71, - "y": -3.21, - "z": -36.95 - }, - "Rotation": 259.729858, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "5343c1f2-9f3b-49c5-b70a-d4ae14b2f593", - "Infiltration": "", - "Position": { - "x": 170.02002, - "y": -3.73999786, - "z": 30.06 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneClimova", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 22, - "DelayToCanSpawnSec": 40, - "Id": "53d5357a-a058-4392-aaef-a53443c5d80f", - "Infiltration": "", - "Position": { - "x": -123.55, - "y": 5.102994, - "z": -31.5099983 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5419341d-08ed-4bee-bad9-a964af07ac11", - "Infiltration": "E6_1", - "Position": { - "x": -234.277, - "y": 2.196, - "z": 342.105 - }, - "Rotation": 16.7069, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneConcordia_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "54e4c97c-6be6-48be-80d7-d6c3ac3b0dd5", - "Infiltration": "", - "Position": { - "x": 200.801, - "y": 3.545, - "z": 405.031 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneConcordiaParking", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 40, - "Id": "5581eaa0-24fc-4470-9f22-28a83ac0c30f", - "Infiltration": "", - "Position": { - "x": 258.023, - "y": -1.227, - "z": 357.136 - }, - "Rotation": 180, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "55969eb0-e827-41db-974a-cd045ff773b4", - "Infiltration": "E2_3", - "Position": { - "x": 175.713, - "y": 3.172, - "z": 236.73 - }, - "Rotation": 356.824432, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 24, - "DelayToCanSpawnSec": 40, - "Id": "5631f698-bbc6-48ca-9794-b4f9ffaa844f", - "Infiltration": "", - "Position": { - "x": 144.582, - "y": 3.531, - "z": 357.876 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "566d2f6b-240c-47b2-a985-0868f5a20b38", - "Infiltration": "E4_5", - "Position": { - "x": -48.546, - "y": 0.668, - "z": -67.733 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "56ae82fe-7073-45e7-82bf-a94494b5a509", - "Infiltration": "E2_3", - "Position": { - "x": 179.062, - "y": 3.048, - "z": 233.031 - }, - "Rotation": 356.824432, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "587f4c37-b43e-4319-a238-f394bf59609d", - "Infiltration": "E5_6", - "Position": { - "x": -226.569, - "y": 5.26, - "z": 279.065 - }, - "Rotation": 25.0000076, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5b161871-7fe0-4764-925b-75a5d9320859", - "Infiltration": "E1_2", - "Position": { - "x": -65.728, - "y": 2.699, - "z": 457.559 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneHotel_2", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 40, - "Id": "5b82909f-dc67-4eda-9891-6dba11185f27", - "Infiltration": "", - "Position": { - "x": -80.18, - "y": 0.9370003, - "z": 74.08 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 40, - "Id": "5c0c1dfb-b30c-47c9-8363-d974cd2c64ea", - "Infiltration": "", - "Position": { - "x": -29.74, - "y": 5.15, - "z": -64.77 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5caf5e1b-0113-41fc-9867-007e37ffe906", - "Infiltration": "E3_4", - "Position": { - "x": 1.6579895, - "y": 1.77900016, - "z": 153.353973 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5cfd77db-4ab6-45ec-a4d4-a4a30c9e75ce", - "Infiltration": "E2_3", - "Position": { - "x": 211.905, - "y": -0.33, - "z": 343.2 - }, - "Rotation": 4.729597, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 40, - "Id": "5e71697b-66ad-4483-ae3d-a9833c72a56e", - "Infiltration": "", - "Position": { - "x": -50.974, - "y": 5.152, - "z": -29.5530014 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5e92a302-e46c-4acc-adc8-b349b40b5fd7", - "Infiltration": "E2_3", - "Position": { - "x": 272.018, - "y": -1.16, - "z": 375.369 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 40, - "Id": "5e94b930-e010-4351-adca-75983b52e6cc", - "Infiltration": "", - "Position": { - "x": -46.111, - "y": 0.616, - "z": -67.664 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "60ac962f-60e7-4049-b52b-bbcc48bd2a86", - "Infiltration": "E3_4", - "Position": { - "x": 257.34, - "y": -5.94, - "z": 50.955 - }, - "Rotation": 319.729767, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "61264e7e-0ca3-42ea-8537-fa9b655df5be", - "Infiltration": "E3_4", - "Position": { - "x": 170.335, - "y": -1.451, - "z": -129.286 - }, - "Rotation": 268.9683, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "61aba24c-79d9-445f-8a1c-f887b36a8417", - "Infiltration": "E1_2", - "Position": { - "x": 8.807999, - "y": 2.36800027, - "z": 455.754 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCinema", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 40, - "Id": "61c81abf-01bb-4bd2-ab66-8f5a814f0057", - "Infiltration": "", - "Position": { - "x": -52.284, - "y": -0.179458022, - "z": 386.267 - }, - "Rotation": 92.4, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneFactory", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 40, - "Id": "61d1d7d8-6ac0-4016-95da-ebe68c4744e3", - "Infiltration": "", - "Position": { - "x": -100.35, - "y": 2.32, - "z": 268.45 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW01", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "61f00796-7769-4b8c-bb50-403f4e402c5f", - "Infiltration": "", - "Position": { - "x": 76.02602, - "y": -0.629997253, - "z": 88.469 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW01", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "6255bec3-90bb-498e-bb37-1f5933f3a4f7", - "Infiltration": "", - "Position": { - "x": 114.480011, - "y": 0.920002, - "z": 189.07 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6255df32-b929-4e02-8db9-ddf69e716491", - "Infiltration": "E6_1", - "Position": { - "x": -188.923, - "y": 3.137, - "z": 340.446 - }, - "Rotation": 16.7069, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "62f5b14d-cb51-4529-b572-f5a8f5815bb5", - "Infiltration": "E3_4", - "Position": { - "x": 9.936005, - "y": 1.80700016, - "z": 160.441986 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6334d0e4-3651-4ed3-ba11-5dcb4a8ac4e6", - "Infiltration": "E5_6", - "Position": { - "x": -176.32, - "y": 1.218, - "z": 106.89 - }, - "Rotation": 94.72969, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneConstruction", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 40, - "Id": "63444352-4ee3-421d-a8c1-57ac5a7c6a73", - "Infiltration": "", - "Position": { - "x": 209.379, - "y": 4.051, - "z": 298.748 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 42 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6425842e-d951-4538-8b44-ab6fccfae4c4", - "Infiltration": "E2_3", - "Position": { - "x": 205.631, - "y": 3.935, - "z": 296.404 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneCard1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "644ed4d0-3425-4182-aa00-57d7e80bb6b5", - "Infiltration": "", - "Position": { - "x": 44.8300171, - "y": 0.270000458, - "z": -36.85 - }, - "Rotation": 309.888733, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneConcordiaParking", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 40, - "Id": "652f7306-0e6f-46d5-b5f4-d68c1c2ba7a7", - "Infiltration": "", - "Position": { - "x": 212.68, - "y": -1.22, - "z": 350.13 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneClimova", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 21, - "DelayToCanSpawnSec": 40, - "Id": "652ff695-e5d8-4116-ab84-2ede0f413783", - "Infiltration": "", - "Position": { - "x": -147.52, - "y": 0.13, - "z": -67.43 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "65894af8-198d-4e4a-ac91-315d3aaf72d4", - "Infiltration": "E6_1", - "Position": { - "x": -135.79, - "y": 2.34, - "z": 401.49 - }, - "Rotation": 271.2534, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneHotel_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "65b0fa2b-7240-46b5-ae78-0299d3db59a9", - "Infiltration": "", - "Position": { - "x": -71.95, - "y": 1.464, - "z": 154.769989 - }, - "Rotation": 331.5, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 24, - "DelayToCanSpawnSec": 40, - "Id": "66816fda-2ae8-4b0a-9452-3177cd74bcd5", - "Infiltration": "", - "Position": { - "x": 143.03, - "y": 3.52, - "z": 359.66 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "677581fc-5c9f-4e13-913d-e32798dfd61c", - "Infiltration": "E1_2", - "Position": { - "x": 12.1080017, - "y": 2.538, - "z": 450.534027 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneConstruction", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 40, - "Id": "67aaeb50-4931-4d58-98dc-2d0437e2f61f", - "Infiltration": "", - "Position": { - "x": 206.164, - "y": 6.932, - "z": 299.252 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneConcordia_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "6903453e-7bf1-414a-9b0c-bb7a6a9b01d4", - "Infiltration": "", - "Position": { - "x": 271.007, - "y": 3.526, - "z": 371.175 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "697b3ab2-3b1f-49d2-8682-ff9cef2632aa", - "Infiltration": "", - "Position": { - "x": 89.824, - "y": 2.6838336, - "z": 314.917 - }, - "Rotation": 187.999588, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 42 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "699750da-15c5-4b86-9997-7dc18be81b1c", - "Infiltration": "E2_3", - "Position": { - "x": 209.839, - "y": 3.935, - "z": 297.28 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6c27f4e5-06ad-4932-a056-b0c2c343d498", - "Infiltration": "E3_4", - "Position": { - "x": 258.622, - "y": -5.94, - "z": 48.843 - }, - "Rotation": 319.729767, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6c90c26e-cfca-4e75-986b-de60d0c7459c", - "Infiltration": "E2_3", - "Position": { - "x": 211.97, - "y": 0.444, - "z": 345.289 - }, - "Rotation": 4.729597, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6cfbccb6-7a27-4476-897d-049e95a5386b", - "Infiltration": "E2_3", - "Position": { - "x": 274.053, - "y": 4.782, - "z": 518.326 - }, - "Rotation": 236.6915, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6d99aad4-c884-48fe-ac03-6edbbdc51052", - "Infiltration": "E3_4", - "Position": { - "x": 106.65, - "y": -1.854, - "z": -162.6 - }, - "Rotation": 2.51932168, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneConcordia_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "6db0b08e-c99d-4652-ab28-cdabde2e580b", - "Infiltration": "", - "Position": { - "x": 271.827, - "y": 3.526, - "z": 369.477 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneCinema", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 40, - "Id": "6dd8ddac-8495-4faf-82c8-d1a44b785cba", - "Infiltration": "", - "Position": { - "x": -134.383, - "y": 2.545, - "z": 395.888 - }, - "Rotation": 180, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneHotel_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "6dfa9fb0-fdde-45cd-9ec1-685f4ba55936", - "Infiltration": "", - "Position": { - "x": -69.316, - "y": 1.464, - "z": 156.097 - }, - "Rotation": 331.5, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6e3ad315-21c1-4816-84f5-e6d5ad0568af", - "Infiltration": "E1_2", - "Position": { - "x": 10.3880005, - "y": 2.538, - "z": 457.094025 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 24, - "DelayToCanSpawnSec": 40, - "Id": "6e8ffcae-9065-4bec-8a45-1323f038d52a", - "Infiltration": "", - "Position": { - "x": 142.39, - "y": 3.52, - "z": 361.571 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6f685b3e-cf6a-4e34-8a6e-c5fee3b1308d", - "Infiltration": "E4_5", - "Position": { - "x": -157.981, - "y": 9.684, - "z": -26.729 - }, - "Rotation": 2.51923227, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6fa19d8b-0a96-4aa3-8441-9d9d66649d3c", - "Infiltration": "E6_1", - "Position": { - "x": -195.373, - "y": 4.992, - "z": 384.652 - }, - "Rotation": 190.496658, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 40, - "Id": "70d61a52-e9f7-4723-9def-9b74589114f2", - "Infiltration": "", - "Position": { - "x": -1.164, - "y": -3.71, - "z": -4.179001 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "71098951-d846-4225-a9bc-6b418505bdcc", - "Infiltration": "E2_3", - "Position": { - "x": 177.294, - "y": 3.093, - "z": 234.762 - }, - "Rotation": 356.824432, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "710a9d07-1e95-4c9d-9afa-8bcc668384af", - "Infiltration": "", - "Position": { - "x": 81.4, - "y": 2.757, - "z": 297.38 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "7111ac4a-289a-443a-95ce-78c53ebf65bf", - "Infiltration": "", - "Position": { - "x": 224.400009, - "y": 0.458999634, - "z": 219.96 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneFactory", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 40, - "Id": "71af2152-6961-4e52-b9c5-d6e8925766a6", - "Infiltration": "", - "Position": { - "x": -162, - "y": 2.26, - "z": 289.52 - }, - "Rotation": 130.584167, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "728e4433-9258-45dd-aa16-537bea125482", - "Infiltration": "", - "Position": { - "x": 251.740021, - "y": -1.06999969, - "z": 148.39 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7358f6b2-61ea-47db-8b99-e8ed4df5f93c", - "Infiltration": "E5_6", - "Position": { - "x": -161.686, - "y": 3.221, - "z": 180.655 - }, - "Rotation": 74.27901, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7433262f-ef82-43b6-b06e-a8c77ba35fd8", - "Infiltration": "E2_3", - "Position": { - "x": 211.022, - "y": 0.465, - "z": 346.075 - }, - "Rotation": 272.480042, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7476377d-3918-48b1-9a1c-e5b54b54b1ef", - "Infiltration": "E5_6", - "Position": { - "x": -225.555, - "y": 5.226, - "z": 282.178 - }, - "Rotation": 25.0000076, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "74effe05-4c97-43b5-aabe-7d21e692d290", - "Infiltration": "E5_6", - "Position": { - "x": -243.08, - "y": 3.685, - "z": 243.479 - }, - "Rotation": 205, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSnipeSW01", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 40, - "Id": "74fec939-e642-4552-b77f-6dde15bd3e3e", - "Infiltration": "", - "Position": { - "x": 89.28, - "y": 35.02, - "z": 101.34 - }, - "Rotation": 270, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneHotel_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "751c9d22-ec5d-4a08-878c-707fa1de6a87", - "Infiltration": "", - "Position": { - "x": -84.9, - "y": 1.464, - "z": 175.6 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "751ed8cb-d9c5-4c3a-ad31-7ae979f66316", - "Infiltration": "E3_4", - "Position": { - "x": -4.18898, - "y": 1.79799974, - "z": 148.65 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "75be936b-36ee-4cc4-8172-ef1298934a7d", - "Infiltration": "E3_4", - "Position": { - "x": -14.886, - "y": 2.763, - "z": -139.338 - }, - "Rotation": 92.51915, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "75ce069c-ef5a-4ae0-b129-7242d1464303", - "Infiltration": "E5_6", - "Position": { - "x": -162.757, - "y": 3.221, - "z": 177.965 - }, - "Rotation": 4.72961473, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7676ad3f-03fb-4038-8496-aa2de51085ba", - "Infiltration": "E5_6", - "Position": { - "x": -178.03, - "y": 1.218, - "z": 107.92 - }, - "Rotation": 94.72969, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "772342a5-99ea-4c96-977f-810d9837bdf9", - "Infiltration": "", - "Position": { - "x": 251.63, - "y": -1.06999969, - "z": 145.41 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneHotel_2", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 40, - "Id": "7755c05d-ebc4-46e3-9a64-36b7cb6a0004", - "Infiltration": "", - "Position": { - "x": -77.38, - "y": 0.9370003, - "z": 75.04 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneConcordia_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "77e51dcb-6def-4189-bc03-346d6f5dfb69", - "Infiltration": "", - "Position": { - "x": 207.76, - "y": 3.545, - "z": 404.55 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "78016165-ce25-4d02-95ff-722b489ed206", - "Infiltration": "", - "Position": { - "x": 173.44, - "y": -1.21999741, - "z": 57.7399979 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "783ff352-0728-4169-8f1e-42c2695ae52c", - "Infiltration": "E1_2", - "Position": { - "x": 158.33, - "y": 3.624, - "z": 428.53 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7869473c-17c2-4db8-ab57-c5a0546d5a69", - "Infiltration": "E4_5", - "Position": { - "x": -155.781, - "y": 9.671, - "z": -26.933 - }, - "Rotation": 2.51923227, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "789e2418-ed73-40b7-be6c-e3ed899e1a40", - "Infiltration": "E3_4", - "Position": { - "x": 244.86, - "y": -3.21, - "z": -40.06 - }, - "Rotation": 259.729858, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneHotel_2", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 40, - "Id": "791d24fb-58b0-42f5-99fa-22808dea06b0", - "Infiltration": "", - "Position": { - "x": -93.88, - "y": 0.9370003, - "z": 86.85 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "796cca85-8415-45d3-833c-c3fa8ca9bddb", - "Infiltration": "E4_5", - "Position": { - "x": -52.407, - "y": 0.668, - "z": -66.38 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneCinema", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 40, - "Id": "7971091e-99f8-4447-a39e-debba6500638", - "Infiltration": "", - "Position": { - "x": -135.394, - "y": 2.545, - "z": 399.657 - }, - "Rotation": 180, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 34 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "79a51362-4e5f-47ba-afaf-290b94f9cf9e", - "Infiltration": "E5_6", - "Position": { - "x": -206.343, - "y": 3.367, - "z": 180.998 - }, - "Rotation": 4.729717, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7da44254-8e5b-4118-ac6a-abcc0ae75548", - "Infiltration": "E6_1", - "Position": { - "x": -190.088, - "y": 3.137, - "z": 338.111 - }, - "Rotation": 16.7069, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7f644e0e-ba02-4107-a625-f38c4c31f714", - "Infiltration": "E3_4", - "Position": { - "x": 166.96, - "y": -1.451, - "z": -132.76 - }, - "Rotation": 268.9683, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneColumn", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "7fac5df5-82b9-449e-b7e4-b241a6abeba5", - "Infiltration": "", - "Position": { - "x": -16.71, - "y": 2.684, - "z": 238.5 - }, - "Rotation": 114.231476, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "7feb1fb6-35a3-4a7e-b601-6f7bb93678ce", - "Infiltration": "", - "Position": { - "x": 165.540009, - "y": -1.27999878, - "z": 106.77 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8246f7ef-a3d2-40e1-ba24-1388d889f5f6", - "Infiltration": "E1_2", - "Position": { - "x": -65.706, - "y": 2.699, - "z": 461.359 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8285cec6-97d0-431f-82ff-e57d864866ca", - "Infiltration": "E1_2", - "Position": { - "x": -31.202, - "y": 2.615, - "z": 465.022 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneHotel_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "83a14b06-b652-4ffb-ba34-809569d8fb5d", - "Infiltration": "", - "Position": { - "x": -87.68, - "y": 1.464, - "z": 178.296 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8464e389-d91c-45d4-9e99-5b61d5bcdc69", - "Infiltration": "E3_4", - "Position": { - "x": -4.34199524, - "y": 1.65800035, - "z": 151.643982 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "84983058-e647-4955-a40a-1efe6c6b959b", - "Infiltration": "E3_4", - "Position": { - "x": 245.03, - "y": -3.21, - "z": -38.56 - }, - "Rotation": 259.729858, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "8536e7fb-41b9-4bf3-ba73-dc0dc779ebe4", - "Infiltration": "", - "Position": { - "x": 173.77002, - "y": -1.21999741, - "z": 56.25 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "882227cc-5a26-41d8-9cb9-a0d8d10b8444", - "Infiltration": "E5_6", - "Position": { - "x": -227.27, - "y": 5.226, - "z": 282.533 - }, - "Rotation": 25.0000076, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneCard1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "8856f072-af58-4681-9d85-67747fdd940f", - "Infiltration": "", - "Position": { - "x": 38.52002, - "y": 0.11000061, - "z": -46.7979965 - }, - "Rotation": 309.888733, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneClimova", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 21, - "DelayToCanSpawnSec": 40, - "Id": "890d1bf3-071b-48f6-b241-c968af8c9bfa", - "Infiltration": "", - "Position": { - "x": -136.07, - "y": 0.13, - "z": -71.29 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "89342b83-2833-4b91-8ec9-5657095bd0b0", - "Infiltration": "E6_1", - "Position": { - "x": -191.392, - "y": 3.137, - "z": 344.702 - }, - "Rotation": 16.7069, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneCard1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 40, - "Id": "89c13411-d85b-4a57-a353-6abe09c131ae", - "Infiltration": "", - "Position": { - "x": 140.690018, - "y": -1.41999817, - "z": -51.709 - }, - "Rotation": 329.075928, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "89d6c4f6-9c38-4163-b3ac-ac926bf47b6f", - "Infiltration": "E5_6", - "Position": { - "x": -165.629, - "y": 3.158, - "z": 183.074 - }, - "Rotation": 74.27901, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8b0b1cf1-f045-4a53-bf61-6f14adc71f75", - "Infiltration": "E4_5", - "Position": { - "x": -151.106, - "y": 0.736, - "z": -66.902 - }, - "Rotation": 15.3466482, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8b2329e2-3502-4c63-b744-6f3065ff3530", - "Infiltration": "E4_5", - "Position": { - "x": -58.333, - "y": 3.214, - "z": -145.348 - }, - "Rotation": 2.51925588, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8b301a0d-e694-4f24-b938-32329a5084f5", - "Infiltration": "E3_4", - "Position": { - "x": 11.1879883, - "y": 1.78800011, - "z": 159.064 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSW01", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "8b30ae56-93f7-49c6-bba1-639213bca1dd", - "Infiltration": "", - "Position": { - "x": 79.89801, - "y": 0.8840027, - "z": 165.156 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "8b443b20-57e1-4d87-80e5-e4891e3995a2", - "Infiltration": "", - "Position": { - "x": 259.068024, - "y": -5.336998, - "z": 76.575 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8cec45df-ee6b-47bf-84f3-c3c4d38088a2", - "Infiltration": "E1_2", - "Position": { - "x": -61.886, - "y": 2.699, - "z": 461.654 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8e8fd66a-db92-49fd-9c82-2cd7a7ff1d5e", - "Infiltration": "E6_1", - "Position": { - "x": -136.26, - "y": 2.34, - "z": 402.74 - }, - "Rotation": 271.2534, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8eb7065a-df86-48c9-ace7-bc6e59372ad3", - "Infiltration": "E3_4", - "Position": { - "x": 214.21, - "y": 3.99899983, - "z": 172.474 - }, - "Rotation": 171.956467, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "8ec2c153-7918-41f5-926c-193cd886144d", - "Infiltration": "", - "Position": { - "x": 184.840012, - "y": -4.199997, - "z": 30.2 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8ee254ee-954f-4f9f-b04d-23abb8cecf7e", - "Infiltration": "E1_2", - "Position": { - "x": -31.017, - "y": 2.615, - "z": 466.544 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8f1d72e8-8dee-4a6b-b86c-412a0cca080c", - "Infiltration": "E3_4", - "Position": { - "x": 234.399, - "y": -2.049, - "z": -105.547 - }, - "Rotation": 4.72974443, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8faf7e0f-ba4a-4b7b-9ed7-642d84db17d2", - "Infiltration": "E4_5", - "Position": { - "x": -43.209, - "y": 6.7, - "z": -114.198 - }, - "Rotation": 272.519379, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "906d71d5-db71-47c1-8a58-0f48f58daea1", - "Infiltration": "E1_2", - "Position": { - "x": -32.585, - "y": 2.615, - "z": 466.542 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "91635471-4f27-4156-9801-9dbdf80f2970", - "Infiltration": "E5_6", - "Position": { - "x": -226.153, - "y": 5.226, - "z": 280.783 - }, - "Rotation": 25.0000076, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneClimova", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 21, - "DelayToCanSpawnSec": 40, - "Id": "9192c8e7-db7e-4e06-b21d-dbcc19b518a1", - "Infiltration": "", - "Position": { - "x": -153.62, - "y": 0.13, - "z": -64.64 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSnipeCard", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 40, - "Id": "92f91bd5-3f81-434d-8138-93106b553eba", - "Infiltration": "", - "Position": { - "x": 43.74, - "y": 28.512, - "z": -17.0099983 - }, - "Rotation": 11.7017088, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "93427305-4f03-44d6-8690-7c24dbbb4128", - "Infiltration": "E3_4", - "Position": { - "x": -4.271988, - "y": 1.65800035, - "z": 153.023987 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "934cdbef-b43f-4690-aa4a-b34dc193abd0", - "Infiltration": "E3_4", - "Position": { - "x": 99.03, - "y": -1.854, - "z": -158.78 - }, - "Rotation": 2.51932168, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "95453f5c-5ca5-405f-8872-ea088ca155c3", - "Infiltration": "E1_2", - "Position": { - "x": -32.607, - "y": 2.615, - "z": 465.087 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "97185451-3b24-4e74-baa1-6a706f09c520", - "Infiltration": "E3_4", - "Position": { - "x": 4.9119873, - "y": 1.77900016, - "z": 160.613983 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "97513a7b-d467-454a-8232-2e77f3e386ef", - "Infiltration": "E1_2", - "Position": { - "x": 9.087997, - "y": 2.568, - "z": 452.543976 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 40, - "Id": "977a32c1-58c1-48cd-89ce-5ed7005bf17a", - "Infiltration": "", - "Position": { - "x": -3.191, - "y": -3.71, - "z": -6.13499832 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneConcordiaParking", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 40, - "Id": "98b9afb9-fe15-4d48-8967-b1d47adea1d8", - "Infiltration": "", - "Position": { - "x": 208.592, - "y": -1.22, - "z": 350.427 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneConstruction", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 40, - "Id": "992d7410-2184-4b7c-b079-d16c572a4f50", - "Infiltration": "", - "Position": { - "x": 184.84, - "y": 3.41262436, - "z": 328.16 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "999c413b-05eb-4c30-a4ef-4e0c95c838ef", - "Infiltration": "E1_2", - "Position": { - "x": 18.5980072, - "y": 2.36800027, - "z": 456.764 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSnipeCinema", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 10, - "DelayToCanSpawnSec": 40, - "Id": "9a07d7bf-ce18-4a8f-99ab-34ecc4de2066", - "Infiltration": "", - "Position": { - "x": -166.71, - "y": 23.1993332, - "z": 390.43 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW01", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "9a413516-5be1-4aec-a95f-8888dfc8156d", - "Infiltration": "", - "Position": { - "x": 114.210007, - "y": 1.25, - "z": 192.06 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9a479113-f5ac-433e-aa4b-b6f6c6b8d5e4", - "Infiltration": "E4_5", - "Position": { - "x": -106.95, - "y": 0.662, - "z": -30.759 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9b4cc2e1-662c-4f96-af4f-f022527d9868", - "Infiltration": "E3_4", - "Position": { - "x": 167.909988, - "y": -1.451, - "z": -128.53 - }, - "Rotation": 268.9683, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 43 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9c57887e-d1c9-4e0f-94e6-558d49b96faf", - "Infiltration": "E1_2", - "Position": { - "x": 229.38, - "y": 3.37, - "z": 410.74 - }, - "Rotation": 169.7296, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "9cd18fce-5603-47fa-b65d-156ac3831471", - "Infiltration": "", - "Position": { - "x": 222.497009, - "y": 0.5250015, - "z": 182.676 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneColumn", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "9dae10d1-d98d-4d24-a3d1-4dbdbd950b51", - "Infiltration": "", - "Position": { - "x": -16.387, - "y": 2.633, - "z": 231.312 - }, - "Rotation": 114.231476, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9dd4bcc0-062e-45a4-9346-2b488ed4ad72", - "Infiltration": "E3_4", - "Position": { - "x": 10.3280029, - "y": 1.78800011, - "z": 156.053986 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneConcordiaParking", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 40, - "Id": "9e12f9ea-7135-43ec-b452-dd5367f4ad6d", - "Infiltration": "", - "Position": { - "x": 271.591, - "y": -1.227, - "z": 379.893 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneColumn", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 40, - "Id": "9e3921e7-bbaa-4e02-8129-e9efd26cdd7f", - "Infiltration": "", - "Position": { - "x": 38.39, - "y": 2.159, - "z": 194.976 - }, - "Rotation": 301.882233, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9e3be350-92e3-434b-befc-b12ccbb2af45", - "Infiltration": "E5_6", - "Position": { - "x": -244.442, - "y": 2.193, - "z": 237.972 - }, - "Rotation": 205, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 24, - "DelayToCanSpawnSec": 40, - "Id": "9ead0db7-f999-4582-a518-9bb612621df4", - "Infiltration": "", - "Position": { - "x": 147.22, - "y": 3.531, - "z": 358 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9f6cbe96-7d68-45bf-8f4b-4ccac2550961", - "Infiltration": "E1_2", - "Position": { - "x": 14.9980011, - "y": 2.568, - "z": 453.814 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "a029f0ad-07f0-48be-9cb2-99038e395964", - "Infiltration": "", - "Position": { - "x": 189.16, - "y": 1.670002, - "z": 206.87 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "a08fc7a4-eda9-4331-a2cf-b62215dc517d", - "Infiltration": "", - "Position": { - "x": 188.930023, - "y": 0.6000023, - "z": 195.19 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a0bca4c5-ae22-462c-9aa1-290ba3023b84", - "Infiltration": "E6_1", - "Position": { - "x": -230.641, - "y": 2.196, - "z": 342.45 - }, - "Rotation": 340.000031, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneCinema", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 40, - "Id": "a17e55c9-4a1c-4fa8-85a8-d87a26a3963e", - "Infiltration": "", - "Position": { - "x": -192.37, - "y": 8.76, - "z": 421.58 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 42 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a2afda58-3556-4186-aad7-72c7f34a1334", - "Infiltration": "E2_3", - "Position": { - "x": 211.085, - "y": 3.935, - "z": 297.4 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a3ab1bc5-47c5-4b00-a364-770d046ce559", - "Infiltration": "E4_5", - "Position": { - "x": -108.95, - "y": 0.662, - "z": -28.307 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 24, - "DelayToCanSpawnSec": 40, - "Id": "a4125a80-2cb6-499a-83ca-076543ef10ff", - "Infiltration": "", - "Position": { - "x": 142.932, - "y": 3.622, - "z": 357.98 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW01", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "a63229d5-341a-4635-9850-e5c64b3ffbed", - "Infiltration": "", - "Position": { - "x": 81.32602, - "y": 0.8840027, - "z": 163.591 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a6ac7812-b011-4b25-9b74-9743e79ad4ee", - "Infiltration": "E4_5", - "Position": { - "x": -111.445, - "y": 0.668, - "z": -30.917 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a6b0f695-68d1-480c-8f64-996725d71036", - "Infiltration": "E3_4", - "Position": { - "x": 168.3, - "y": -1.451, - "z": -130.72 - }, - "Rotation": 270.487122, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW01", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "a6c5a7ee-cf62-459b-b12c-736ffe3df693", - "Infiltration": "", - "Position": { - "x": 77.91002, - "y": 0.700000763, - "z": 165.45 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "a7d04223-058d-45b1-9d83-daa7f72d1993", - "Infiltration": "", - "Position": { - "x": 95.922, - "y": 2.684, - "z": 306.475 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "a7da54ab-17cd-4c31-bd7e-9b585c69c68f", - "Infiltration": "", - "Position": { - "x": 164.280014, - "y": 0.544002533, - "z": 136.68 - }, - "Rotation": 73.40837, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneConcordiaParking", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 40, - "Id": "a7f9760b-60ce-4f25-bb16-4bee3ce36964", - "Infiltration": "", - "Position": { - "x": 269.852, - "y": -1.227, - "z": 381.269 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a9bd8162-167c-40e5-9027-20a2fe5b6ef9", - "Infiltration": "E6_1", - "Position": { - "x": -195.641, - "y": 4.992, - "z": 387.005 - }, - "Rotation": 190.496658, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a9dffad6-bc0d-48ae-a314-acd62b128fd8", - "Infiltration": "E1_2", - "Position": { - "x": 45.106, - "y": 2.717, - "z": 413.596 - }, - "Rotation": 241.253387, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "aa9222f5-c4ee-4569-8e5e-7689d4bad545", - "Infiltration": "E1_2", - "Position": { - "x": 93.93, - "y": 2.579, - "z": 451.26 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ac155f80-d9a7-431b-8608-0e6e74287afd", - "Infiltration": "E2_3", - "Position": { - "x": 273.3, - "y": -1.16, - "z": 377.25 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneCinema", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 40, - "Id": "ac9ba776-03cd-4e17-acb3-89c9b5dfcef2", - "Infiltration": "", - "Position": { - "x": -194.21, - "y": 8.76, - "z": 423.09 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneColumn", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "ad1c216e-f87e-47c7-9b43-c29ffbc8667f", - "Infiltration": "", - "Position": { - "x": -12.53, - "y": 2.633, - "z": 231.915 - }, - "Rotation": 114.231476, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "ad520f4e-287f-4059-be3b-1966572cedbc", - "Infiltration": "", - "Position": { - "x": 260.210022, - "y": -1.199997, - "z": 130.040009 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ad71c83a-8552-468e-9bbb-7530d53b1cb0", - "Infiltration": "E3_4", - "Position": { - "x": 104.25, - "y": -1.854, - "z": -162.48 - }, - "Rotation": 2.51932168, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "adce64c7-8895-4530-bbd2-16644a35224a", - "Infiltration": "E2_3", - "Position": { - "x": 185.35, - "y": 3.529, - "z": 451.26 - }, - "Rotation": 134.938431, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ade8885f-b41b-4e5f-a31d-4a5ff0aef1e7", - "Infiltration": "E5_6", - "Position": { - "x": -162.386, - "y": 3.158, - "z": 182.139 - }, - "Rotation": 74.27901, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneHotel_2", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 40, - "Id": "adf8872a-3fa9-49ea-a987-467df258cc8e", - "Infiltration": "", - "Position": { - "x": -98.32, - "y": 0.9370003, - "z": 86.31 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "aea27585-1f8c-49dc-9524-88fe4e9f0bdd", - "Infiltration": "E1_2", - "Position": { - "x": 46.174, - "y": 2.717, - "z": 415.754 - }, - "Rotation": 241.253387, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "aeab5681-09ec-47fb-87d5-571b6e33522f", - "Infiltration": "E6_1", - "Position": { - "x": -181.525, - "y": 2.451, - "z": 415.068 - }, - "Rotation": 11.8153534, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "aeb13e1b-ba7b-4f2c-92a8-3d7120b32dbe", - "Infiltration": "E4_5", - "Position": { - "x": -50.789, - "y": 0.668, - "z": -65.073 - }, - "Rotation": 107.519135, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "af2c001e-a978-4c68-9acc-eac8709cdc7c", - "Infiltration": "E2_3", - "Position": { - "x": 177.514, - "y": 3.093, - "z": 236.545 - }, - "Rotation": 356.824432, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSnipeStilo", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 40, - "Id": "afeea4fe-da60-4cd1-b581-7174c5512baa", - "Infiltration": "", - "Position": { - "x": -119.24, - "y": 14.9, - "z": -12.25 - }, - "Rotation": 11.7017088, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b0126d65-ba76-45ad-b25e-32f4f3509904", - "Infiltration": "E3_4", - "Position": { - "x": 7.85800171, - "y": 1.81900012, - "z": 161.583984 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCinema", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 40, - "Id": "b03c51d3-b7d5-4396-bc7e-4a7565779381", - "Infiltration": "", - "Position": { - "x": -135.905, - "y": 2.545, - "z": 395.469 - }, - "Rotation": 180, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b049c6f8-afb9-42f9-9591-2f265fef2097", - "Infiltration": "E3_4", - "Position": { - "x": 5.34100342, - "y": 1.77900016, - "z": 156.336975 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b14d74dc-3024-493a-bc59-2f3fc244a185", - "Infiltration": "E3_4", - "Position": { - "x": 275.666, - "y": -4.431, - "z": 88.001 - }, - "Rotation": 275.694916, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneCard1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 40, - "Id": "b1716b16-358e-4b58-895a-cd1ddfda9a82", - "Infiltration": "", - "Position": { - "x": 70.99402, - "y": 0.270000458, - "z": -49.2839966 - }, - "Rotation": 84.2096558, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 40, - "Id": "b2b5342f-f667-418d-aaa4-f7aab268c6f0", - "Infiltration": "", - "Position": { - "x": 245.6, - "y": -5.68999863, - "z": 24.8699989 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b375b2e4-d13f-4e81-9b58-672da90131f0", - "Infiltration": "E4_5", - "Position": { - "x": -152.382, - "y": 0.663, - "z": -62.95 - }, - "Rotation": 15.3466482, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 40, - "Id": "b58a00d0-24b7-4fa0-b3a7-23bb58f45ea9", - "Infiltration": "", - "Position": { - "x": -31.626, - "y": 0.615, - "z": -59.596 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneConstruction", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 40, - "Id": "b6da4994-667e-4dae-8798-3806d046a8df", - "Infiltration": "", - "Position": { - "x": 215.231, - "y": 3.37095356, - "z": 330.802 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 40, - "Id": "b7562271-f090-46ce-9283-32efd4f8219b", - "Infiltration": "", - "Position": { - "x": -30.119, - "y": 0.691, - "z": -63.183 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "b76b0cfb-c86b-4d56-8ea0-b7e4fb70c7ee", - "Infiltration": "", - "Position": { - "x": 234.572021, - "y": 0.458999634, - "z": 215.794 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneConcordiaParking", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 40, - "Id": "b792db98-04f7-49ec-9ac7-10939d7c13b1", - "Infiltration": "", - "Position": { - "x": 210.467, - "y": -1.22, - "z": 351.635 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b96df3dc-23f2-4e1d-8a9a-9fbe05a94f47", - "Infiltration": "E3_4", - "Position": { - "x": 8.007996, - "y": 1.80700016, - "z": 157.963959 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 42 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bb776772-5164-40f4-984b-67ce81dc2e4b", - "Infiltration": "E2_3", - "Position": { - "x": 206.924, - "y": 3.935, - "z": 295.835 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneHotel_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "bd18f6c5-b92c-4749-96e6-773a4468eb70", - "Infiltration": "", - "Position": { - "x": -35.53, - "y": 1.464, - "z": 156.55 - }, - "Rotation": 50.4, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneConstruction", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 40, - "Id": "bd900053-2d23-4aa0-9259-535a936e0af1", - "Infiltration": "", - "Position": { - "x": 207.14, - "y": 4.051, - "z": 298.55 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bdf5a017-bab7-4abe-be10-4a1879de7662", - "Infiltration": "E6_1", - "Position": { - "x": -175.044, - "y": 2.455, - "z": 466.141 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "beb2e36c-7cfe-4b66-af93-bc22bb6d1d49", - "Infiltration": "", - "Position": { - "x": 186.52002, - "y": -4.37999725, - "z": 30.82 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW01", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "bfa6dec5-ec50-4b15-a823-78e95904fb5f", - "Infiltration": "", - "Position": { - "x": 75.69002, - "y": 0.5612259, - "z": 165.33 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c0247ccc-9087-47fc-8260-2d23ac5bbb5b", - "Infiltration": "E3_4", - "Position": { - "x": 259.911, - "y": -5.94, - "z": 52.289 - }, - "Rotation": 319.729767, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSnipeCinema", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 10, - "DelayToCanSpawnSec": 40, - "Id": "c0d22b84-22eb-4937-911b-bd020a0896eb", - "Infiltration": "", - "Position": { - "x": -166.03, - "y": 23.1993332, - "z": 410.85 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneCinema", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 40, - "Id": "c1c352d8-20ea-4d4b-a349-de50185cd3b7", - "Infiltration": "", - "Position": { - "x": -191.95, - "y": 8.76, - "z": 423.31 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c1e6eaa9-74de-4da9-ac49-62faf320c4ab", - "Infiltration": "E2_3", - "Position": { - "x": 185.446, - "y": 3.529, - "z": 456.849 - }, - "Rotation": 134.938431, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c2477145-0481-4d79-a1cb-5e13f6454478", - "Infiltration": "E5_6", - "Position": { - "x": -176.05, - "y": 1.218, - "z": 108.38 - }, - "Rotation": 94.72969, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneColumn", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 40, - "Id": "c2788494-4b1b-4462-a690-d338940786a1", - "Infiltration": "", - "Position": { - "x": -16.204, - "y": 2.633, - "z": 253.572 - }, - "Rotation": 111.727104, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c2a3cb3b-a64f-485b-bf2b-c14fc5ec3938", - "Infiltration": "E3_4", - "Position": { - "x": 50.602, - "y": 4.465, - "z": -134.514 - }, - "Rotation": 273.305542, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c36b37b1-e654-45b8-a921-4864d1a325a4", - "Infiltration": "E3_4", - "Position": { - "x": 3.79800415, - "y": 1.77900016, - "z": 153.68399 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "c3efd361-ba77-4b03-b250-36a9cdf3d57c", - "Infiltration": "", - "Position": { - "x": 82.266, - "y": 2.791, - "z": 266.358 - }, - "Rotation": 322.1663, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneFactory", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 40, - "Id": "c420fa47-d274-451a-933d-81242771a03d", - "Infiltration": "", - "Position": { - "x": -171.35, - "y": 2.36, - "z": 285.08 - }, - "Rotation": 130.584167, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "c4f99431-6392-40c5-8737-1b5332afc0cd", - "Infiltration": "", - "Position": { - "x": 101.45, - "y": 4.99, - "z": 312.85 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW01", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "c6345b94-6d0f-4a6b-a50b-ec1bbb22e402", - "Infiltration": "", - "Position": { - "x": 117.27002, - "y": 0.580001831, - "z": 188.66 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "c731aad9-1cc6-45d5-90ac-2c4747b725b3", - "Infiltration": "", - "Position": { - "x": 258.721, - "y": -5.336998, - "z": 77.856 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c736ae69-2631-4d51-b5ac-6a466c7c8dd8", - "Infiltration": "E3_4", - "Position": { - "x": 185.557, - "y": 1.574, - "z": 188.963 - }, - "Rotation": 24.4516544, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "c7f3fa28-80e6-45f3-9ace-6ade4e937035", - "Infiltration": "", - "Position": { - "x": 192.330017, - "y": 1.06999969, - "z": 221.81 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 34 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c8a3c9e4-7998-41fa-b311-9e9feb35588c", - "Infiltration": "E5_6", - "Position": { - "x": -204.056, - "y": 3.367, - "z": 179.404 - }, - "Rotation": 4.729717, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c8b04f3f-1f80-49a7-8530-3180b3ff71e9", - "Infiltration": "E3_4", - "Position": { - "x": 8.957977, - "y": 1.78800011, - "z": 157.02298 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneConcordia_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 40, - "Id": "c9a40002-42d3-429f-bc00-cefbeae602d5", - "Infiltration": "", - "Position": { - "x": 202.85, - "y": 3.545, - "z": 402.46 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 24, - "DelayToCanSpawnSec": 40, - "Id": "caa72953-e3fa-4dac-874c-ee5f4e14635d", - "Infiltration": "", - "Position": { - "x": 142.866, - "y": 3.622, - "z": 363.484 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneFactory", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 40, - "Id": "cceb9cac-d3d4-409e-a516-3604242f532c", - "Infiltration": "", - "Position": { - "x": -105.041, - "y": 2.32, - "z": 267.041016 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 40, - "Id": "cd4981a9-7fe0-4553-9b41-26a4b3b6596b", - "Infiltration": "", - "Position": { - "x": -36.052, - "y": 5.22, - "z": -64.392 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW01", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "cd6f8908-c870-4d10-a8e0-b213fe662301", - "Infiltration": "", - "Position": { - "x": 75.18001, - "y": -0.629997253, - "z": 92.28 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cdabcf05-fa38-4640-89a6-294133b99a5c", - "Infiltration": "E3_4", - "Position": { - "x": -2.40397644, - "y": 1.65800035, - "z": 149.22 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCinema", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 40, - "Id": "cdec5594-312a-47bc-a8ce-33abbfb7c4b3", - "Infiltration": "", - "Position": { - "x": -139.949, - "y": 2.545, - "z": 401.048 - }, - "Rotation": 180, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cec675dc-0443-44f1-90bb-61b0fc25b2fc", - "Infiltration": "E1_2", - "Position": { - "x": -2.63198853, - "y": 1.65800035, - "z": 154.414 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cf94127f-36e9-4222-80fe-21168a27bee1", - "Infiltration": "E3_4", - "Position": { - "x": 244.576, - "y": -3.21, - "z": -41.784 - }, - "Rotation": 259.729858, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cfa21779-49ad-49b5-ae7a-33bc0bd0f620", - "Infiltration": "E1_2", - "Position": { - "x": 98.71, - "y": 2.76, - "z": 450.63 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneConcordiaParking", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 40, - "Id": "cfc54492-4723-49f0-ae66-dc7b98b5be4a", - "Infiltration": "", - "Position": { - "x": 257.73, - "y": -1.227, - "z": 359.39 - }, - "Rotation": 180, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cfdbef81-7026-4035-af30-b22d33815b18", - "Infiltration": "E4_5", - "Position": { - "x": -153.903, - "y": 0.654, - "z": -64.471 - }, - "Rotation": 15.3466482, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneCard1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 40, - "Id": "cfe52d4d-3c94-4a43-a1f5-fd21852f5b8a", - "Infiltration": "", - "Position": { - "x": 126.700012, - "y": -1.41999817, - "z": -27.66 - }, - "Rotation": 64.55609, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneHotel_1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "cff247be-d051-48ed-9861-cc92b7e6ec09", - "Infiltration": "", - "Position": { - "x": -70.471, - "y": 1.464, - "z": 152.372009 - }, - "Rotation": 331.5, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d0bcc73b-7a8c-49d4-b715-1841f401cd51", - "Infiltration": "E4_5", - "Position": { - "x": -59.728, - "y": 4.488, - "z": -149.696 - }, - "Rotation": 2.51925588, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d193cee0-4e4f-486a-a8cc-26834fd64b1a", - "Infiltration": "E6_1", - "Position": { - "x": -176.548, - "y": 2.455, - "z": 468.992 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d4125c7a-6690-405b-ad08-ab66c3aa6d85", - "Infiltration": "E4_5", - "Position": { - "x": -42.942, - "y": 6.67, - "z": -115.674 - }, - "Rotation": 272.519379, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneMvd", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 23, - "DelayToCanSpawnSec": 40, - "Id": "d48f7e27-357b-48a5-b82c-0739be4b18d8", - "Infiltration": "", - "Position": { - "x": -254.2, - "y": 3.47, - "z": 149.62999 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d4dcb5bb-9231-4404-b0ba-3544e0f5f240", - "Infiltration": "E3_4", - "Position": { - "x": -13.868, - "y": 2.763, - "z": -132.861 - }, - "Rotation": 92.51915, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 40, - "Id": "d7acecde-c167-4c8c-b176-4bf56401de07", - "Infiltration": "", - "Position": { - "x": -2.675, - "y": -3.71, - "z": -4.22299957 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d7b6bcfb-eaeb-42e0-a63f-69cf5c2f9d33", - "Infiltration": "E3_4", - "Position": { - "x": 53.22, - "y": 4.531, - "z": -132.52 - }, - "Rotation": 277.088135, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d7f21299-b53b-48e4-984e-6aa9f81a5a88", - "Infiltration": "E6_1", - "Position": { - "x": -193.63, - "y": 3.137, - "z": 346.516 - }, - "Rotation": 16.7069, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d86d8ead-2302-4817-858e-74fa428a244e", - "Infiltration": "E3_4", - "Position": { - "x": 216.25, - "y": 3.97299981, - "z": 174.019 - }, - "Rotation": 179.878723, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d87780be-c25b-44b0-8340-27714ea6d4d0", - "Infiltration": "E5_6", - "Position": { - "x": -174.294, - "y": 1.218, - "z": 107.643 - }, - "Rotation": 94.72969, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "da0cccb8-0123-4e04-b765-f31434dc56a6", - "Infiltration": "E6_1", - "Position": { - "x": -195.947, - "y": 4.993, - "z": 389.306 - }, - "Rotation": 190.496658, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "daaa4a02-1f51-460b-bdf8-29b3bd2c838b", - "Infiltration": "E3_4", - "Position": { - "x": 2.25097656, - "y": 1.82900012, - "z": 158.871979 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "dae85c43-6039-4755-bfe0-c0a3de2a9f3b", - "Infiltration": "E2_3", - "Position": { - "x": 272, - "y": -1.16, - "z": 374.65 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "db356917-3655-4cb0-8e01-47eb593510e0", - "Infiltration": "E4_5", - "Position": { - "x": -149.896, - "y": 9.669, - "z": -27.344 - }, - "Rotation": 2.51923227, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 40, - "Id": "db7bc1bb-113e-46a5-b900-a3381d24e458", - "Infiltration": "", - "Position": { - "x": -31.45, - "y": 0.6080003, - "z": -70.643 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 43 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "dbdc91e7-8a95-4cb6-abf0-9d5de4ee1da0", - "Infiltration": "E1_2", - "Position": { - "x": 226.23, - "y": 3.351, - "z": 410.5 - }, - "Rotation": 169.7296, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "dd8b106c-8f50-4e33-bb3b-39388c0eab41", - "Infiltration": "E1_2", - "Position": { - "x": 43.754, - "y": 2.717, - "z": 416.533 - }, - "Rotation": 241.253387, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneHotel_2", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 40, - "Id": "dda96941-f096-45db-aab1-70014c1fd191", - "Infiltration": "", - "Position": { - "x": -96.1, - "y": 0.9370003, - "z": 87 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ddca1267-6caa-4986-bd13-0ed29a81e6d2", - "Infiltration": "E3_4", - "Position": { - "x": 10.1600037, - "y": 1.78800011, - "z": 158.207977 - }, - "Rotation": 335.685852, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "de0cd670-1399-475e-afca-036ff914ad5c", - "Infiltration": "E3_4", - "Position": { - "x": 268.66, - "y": -4.431, - "z": 88.95 - }, - "Rotation": 278.758, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneColumn", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 40, - "Id": "de658a62-65ad-4157-bd1d-282609a69eea", - "Infiltration": "", - "Position": { - "x": 39.309, - "y": 2.816, - "z": 220.356 - }, - "Rotation": 359.110931, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "df295b85-971d-4e9e-8239-018033690b5b", - "Infiltration": "E2_3", - "Position": { - "x": 274.105, - "y": -1.16, - "z": 376.208 - }, - "Rotation": 334.7296, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneConcordiaParking", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 40, - "Id": "df358bcd-eed4-444d-ac33-927a95ba26a5", - "Infiltration": "", - "Position": { - "x": 271.213, - "y": -1.227, - "z": 378.527 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "df949703-1471-4367-a395-3afa78fcf886", - "Infiltration": "E3_4", - "Position": { - "x": 0.79800415, - "y": 1.65800035, - "z": 155.874 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneCinema", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 40, - "Id": "e168ad79-0ccc-4616-ad6a-7b26fc40b4a8", - "Infiltration": "", - "Position": { - "x": -141.018, - "y": 2.545, - "z": 400.981 - }, - "Rotation": 180, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneConcordiaParking", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 40, - "Id": "e1f4341e-2e35-421d-97ef-9e96f53287af", - "Infiltration": "", - "Position": { - "x": 203.155, - "y": -1.227, - "z": 405.033 - }, - "Rotation": 99.85764, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneFactory", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 40, - "Id": "e25ed85f-57e7-484b-8c84-0787599de8e0", - "Infiltration": "", - "Position": { - "x": -103.881, - "y": 2.32, - "z": 267.981018 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "e37f3a6f-de1c-4a0e-a19f-bd3c037ea3a2", - "Infiltration": "", - "Position": { - "x": 165.540009, - "y": -1.27999878, - "z": 106.77 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "e3b68329-464d-4afd-b229-6e2dc607ce7f", - "Infiltration": "", - "Position": { - "x": 101.469, - "y": 2.676, - "z": 290.25 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e3b84d57-bdd7-4e38-ac5f-62dad937e572", - "Infiltration": "E6_1", - "Position": { - "x": -193.902, - "y": 4.993, - "z": 389.207 - }, - "Rotation": 190.496658, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW01", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 40, - "Id": "e3bc0dbe-e558-459d-93af-b30a39eb66d6", - "Infiltration": "", - "Position": { - "x": 75.3500061, - "y": -0.6969986, - "z": 90.2299957 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e401a964-689a-464e-8b66-c485933f9c0d", - "Infiltration": "E1_2", - "Position": { - "x": 226.23, - "y": 3.351, - "z": 410.5 - }, - "Rotation": 169.7296, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e5c87107-42a5-4019-a437-ef8f6d703122", - "Infiltration": "E2_3", - "Position": { - "x": 273.202, - "y": 4.781, - "z": 516.697 - }, - "Rotation": 236.6915, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e5da63fb-4d33-4ebb-a621-dd414deecab5", - "Infiltration": "E1_2", - "Position": { - "x": 14.447998, - "y": 2.568, - "z": 455.404022 - }, - "Rotation": 177.4608, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 34 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e5e1d18b-da5b-4d2d-a445-54bd9117eee7", - "Infiltration": "E5_6", - "Position": { - "x": -203.697, - "y": 3.367, - "z": 182.271 - }, - "Rotation": 4.729717, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e6509e2d-3b03-4079-8904-c499dc2efba4", - "Infiltration": "E2_3", - "Position": { - "x": 274.738, - "y": 4.782, - "z": 517.334 - }, - "Rotation": 236.6915, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e751b2f9-4919-40d1-8877-b9c4bcbf5435", - "Infiltration": "E2_3", - "Position": { - "x": 275.417, - "y": 4.782, - "z": 516.126 - }, - "Rotation": 236.6915, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneCard1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 40, - "Id": "e76e50a4-3455-4ccb-b48e-5b8d65b438a6", - "Infiltration": "", - "Position": { - "x": 143.030014, - "y": -1.41999817, - "z": -36.03 - }, - "Rotation": 329.075928, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSnipeCard", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 40, - "Id": "e7bda50d-1f02-4340-b070-1a1224f9a29c", - "Infiltration": "", - "Position": { - "x": 65.73, - "y": 28.512, - "z": -16.0600014 - }, - "Rotation": 11.7017088, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneConcordiaParking", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 40, - "Id": "e85c5ac2-720b-4583-a635-3694f4d3fa48", - "Infiltration": "", - "Position": { - "x": 273.069, - "y": -1.227, - "z": 375.708 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e8b8754b-c2a7-4563-be0f-74bc4b34cdee", - "Infiltration": "E3_4", - "Position": { - "x": 277.164, - "y": -4.431, - "z": 87.967 - }, - "Rotation": 266.614441, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 40, - "Id": "e8fe4d28-96eb-465b-ad08-da508a650316", - "Infiltration": "", - "Position": { - "x": -50.032, - "y": 5.22, - "z": -62.1 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 19, - "DelayToCanSpawnSec": 40, - "Id": "ea38f7d1-c46d-4d3d-9c87-46f96a244456", - "Infiltration": "", - "Position": { - "x": 216.150009, - "y": -4.46999741, - "z": 30.71 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ea574eed-cdcd-4448-801b-a8398cc6b8df", - "Infiltration": "E1_2", - "Position": { - "x": 154.142, - "y": 3.624, - "z": 428.129 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "eb7f978a-0ef0-4d97-9b95-a4e7d214b321", - "Infiltration": "", - "Position": { - "x": 164.554016, - "y": 0.544002533, - "z": 138.12 - }, - "Rotation": 73.40837, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "eb9c6017-661e-409c-9bb6-ec997683109d", - "Infiltration": "E6_1", - "Position": { - "x": -173.311, - "y": 2.455, - "z": 467.431 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ecafbe6f-9432-4728-b829-4a2f6530364d", - "Infiltration": "E2_3", - "Position": { - "x": 272.043, - "y": 4.773, - "z": 516.173 - }, - "Rotation": 236.6915, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 40, - "Id": "ecbbd00f-bea1-4402-a9af-648cb8f1a36e", - "Infiltration": "", - "Position": { - "x": 76.327, - "y": 2.838, - "z": 288.368 - }, - "Rotation": 264.516571, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 22, - "DelayToCanSpawnSec": 40, - "Id": "ecf814ba-b286-47e9-ad9d-fa5d2774eff7", - "Infiltration": "", - "Position": { - "x": -159.77, - "y": 0.74, - "z": -21.0299988 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneHotel_2", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 40, - "Id": "eda9eef3-2654-4281-b8d5-5a24679c63dc", - "Infiltration": "", - "Position": { - "x": -109.617, - "y": 1.464, - "z": 73.128 - }, - "Rotation": 162.1, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneCard1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 40, - "Id": "edab5daf-ca3c-450d-85d1-2a89a2840fe2", - "Infiltration": "", - "Position": { - "x": 57.3770142, - "y": 0.270000458, - "z": -55.4929962 - }, - "Rotation": 309.888733, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "edd5229f-7229-4ef0-9093-daaac227f875", - "Infiltration": "E3_4", - "Position": { - "x": 272.319, - "y": -4.493, - "z": 87.688 - }, - "Rotation": 272.633484, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSnipeCarShowroom", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 90 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 40, - "Id": "ef480bb8-3011-4504-ba7b-6e60f9e8f4f1", - "Infiltration": "", - "Position": { - "x": 58.61, - "y": 11.9036674, - "z": 309.91 - }, - "Rotation": 90, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ef5737c8-b0f7-4db9-a986-4206aea8fbb1", - "Infiltration": "E4_5", - "Position": { - "x": -42.919, - "y": 6.677, - "z": -117.171 - }, - "Rotation": 272.519379, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f0113a3b-12cd-4801-ad39-c5ebc9578d38", - "Infiltration": "E3_4", - "Position": { - "x": -2.44697571, - "y": 1.65800035, - "z": 151.275 - }, - "Rotation": 3.67021, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneConcordiaParking", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 40, - "Id": "f2c496a8-ecb7-41d4-b04c-60a2577e430b", - "Infiltration": "", - "Position": { - "x": 210.91, - "y": -1.22, - "z": 350.161 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f2e231e6-a45f-4f2a-a220-eb2fb3acd888", - "Infiltration": "E1_2", - "Position": { - "x": 91.666, - "y": 2.579, - "z": 450.023 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f2f4ba88-575b-41f9-b1e4-7f611a152dd9", - "Infiltration": "E3_4", - "Position": { - "x": -10.48, - "y": 2.763, - "z": -137.96 - }, - "Rotation": 92.51915, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneCard1", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 40, - "Id": "f34df586-086d-47f1-9e41-186199b6cbdd", - "Infiltration": "", - "Position": { - "x": 43.5800171, - "y": 0.270000458, - "z": -43.65 - }, - "Rotation": 309.888733, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "f37bc5a2-f959-4fed-97fb-703e942daa3a", - "Infiltration": "", - "Position": { - "x": 256.983, - "y": -5.336998, - "z": 77.123 - }, - "Rotation": 278.614166, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneFactory", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 40, - "Id": "f3ab0915-8eda-4702-bfd9-9fb761da24f2", - "Infiltration": "", - "Position": { - "x": -101.15, - "y": 2.32, - "z": 269.47 - }, - "Rotation": 353.8347, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f3b6a67b-2630-487a-aec0-56062d52e87e", - "Infiltration": "E3_4", - "Position": { - "x": 186.308, - "y": 1.65, - "z": 186.469 - }, - "Rotation": 24.4516544, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneStilo", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 40, - "Id": "f5c74f01-7de2-4a64-91f5-1781066dca6a", - "Infiltration": "", - "Position": { - "x": -32.96, - "y": 0.6080003, - "z": -69.863 - }, - "Rotation": 8.731616, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f61dc8f4-8ab8-4a1b-9771-8c4d26568769", - "Infiltration": "E3_4", - "Position": { - "x": 9.347992, - "y": 1.77900016, - "z": 153.493988 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f6b9cd44-6c11-4c17-ac58-897b2af338ac", - "Infiltration": "E1_2", - "Position": { - "x": 155.154, - "y": 3.624, - "z": 430.339 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f6cc8fe9-efc2-4b01-bd68-87565e068436", - "Infiltration": "E1_2", - "Position": { - "x": -29.893, - "y": 2.615, - "z": 465.548 - }, - "Rotation": 181.253433, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "f8a2b471-d0d2-4582-a20a-229dbd9fb883", - "Infiltration": "", - "Position": { - "x": 207.360016, - "y": 1.170002, - "z": 190.41 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneConcordiaParking", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 40, - "Id": "f963f1e2-d0d6-453d-b6f6-e0d6db9dfe6b", - "Infiltration": "", - "Position": { - "x": 259.267, - "y": -1.227, - "z": 358.498 - }, - "Rotation": 180, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "f9885491-30ff-42d2-816b-a9b01e0728b3", - "Infiltration": "", - "Position": { - "x": 187.990021, - "y": 1.78000259, - "z": 191.28 - }, - "Rotation": 101.827583, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fb27922a-bde1-4d4e-8d54-2bebcc0985d4", - "Infiltration": "E1_2", - "Position": { - "x": 95.66, - "y": 2.65, - "z": 448.81 - }, - "Rotation": 169.729568, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneColumn", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 14, - "DelayToCanSpawnSec": 40, - "Id": "fbc5976c-a95e-4fdf-8f0e-4e003bb9553b", - "Infiltration": "", - "Position": { - "x": 38.27, - "y": 2.159, - "z": 196.95 - }, - "Rotation": 301.882233, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneSW00", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 55 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 40, - "Id": "fbd80e0a-5159-44cd-98c4-d38df11908aa", - "Infiltration": "", - "Position": { - "x": 164.554016, - "y": 0.544002533, - "z": 138.12 - }, - "Rotation": 73.40837, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fc8c0d11-fecf-4e65-9b95-ec8afe78073d", - "Infiltration": "E3_4", - "Position": { - "x": 244.69, - "y": -3.21, - "z": -35.49 - }, - "Rotation": 259.729858, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "ZoneClimova", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 21, - "DelayToCanSpawnSec": 40, - "Id": "fca34cfa-fb20-4e4a-a530-eb53bbc0da2e", - "Infiltration": "", - "Position": { - "x": -155.72, - "y": 0.13, - "z": -58.1299973 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 30 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fd538d06-6c39-4b38-8386-c45d0ed446b1", - "Infiltration": "E4_5", - "Position": { - "x": -46.121, - "y": 6.062, - "z": -114.006 - }, - "Rotation": 272.519379, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fd6734ed-6ba8-423b-8a7b-2943f31c6527", - "Infiltration": "E3_4", - "Position": { - "x": 3.097992, - "y": 1.77900016, - "z": 155.593964 - }, - "Rotation": 57.23363, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fe07dac4-1e9e-4ec8-9a4a-aef4c2fbe6aa", - "Infiltration": "E5_6", - "Position": { - "x": -242.591, - "y": 3.685, - "z": 242.089 - }, - "Rotation": 205, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fe111b2d-c512-47e8-b233-8b34d46d4595", - "Infiltration": "E3_4", - "Position": { - "x": 260.742, - "y": -5.94, - "z": 48.666 - }, - "Rotation": 319.729767, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fe3633fa-5a3d-46f1-9c56-8f30c2b61cc1", - "Infiltration": "E3_4", - "Position": { - "x": 170.078, - "y": -1.451, - "z": -132.837 - }, - "Rotation": 268.9683, - "Sides": [ - "All" - ] - } - ], - "UnixDateTime": 1621511450, - "_Id": "5714dc692459777137212e12", - "doors": [], - "exit_access_time": 40, - "exit_count": 1, - "exit_time": 2, - "exits": [ - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "E6_1,E1_2", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "E1", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "E2_3,E1_2", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "E2", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "E2_3,E3_4", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "E3", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "E4_5,E3_4", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "E4", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "E4_5,E5_6", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "E5", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 0, - "ChancePVE": 0, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "E6_1,E5_6", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "E6", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 50, - "ChancePVE": 50, - "Count": 5000, - "CountPVE": 5000, - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "EventAvailable": false, - "ExfiltrationTime": 60, - "ExfiltrationTimePVE": 60, - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "E7_car", - "PassageRequirement": "TransferItem", - "PlayersCount": 4, - "PlayersCountPVE": 4, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Item" - }, - { - "Chance": 40, - "ChancePVE": 40, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "E8_yard", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "EventAvailable": false, - "ExfiltrationTime": 6, - "ExfiltrationTimePVE": 6, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "E9_sniper", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "E1_2,E6_1,E2_3,E3_4,E4_5,E5_6,E6_1", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "SharedTimer", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Exit_E10_coop", - "PassageRequirement": "ScavCooperation", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Cooperate" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "E6_1,E5_6", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "E7", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "E6_1,E5_6", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "E8", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - } - ], - "filter_ex": [], - "limits": [ - { - "items": [ - "64d4b23dc1b37504b41ac2b6" - ], - "max": 1, - "min": 1 - } - ], - "matching_min_seconds": 60, - "sav_summon_seconds": 60, - "tmp_location_field_remove_me": 0, - "transits": [ - { - "activateAfterSec": 60, - "active": true, - "conditions": "STR_TRANSIT_3_COND", - "description": "STR_TRANSIT_3_DESC", - "id": 3, - "location": "Sandbox_high", - "name": "STR_TRANSIT_3", - "target": "65b8d6f5cdde2479cb2a3125", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": true, - "conditions": "STR_TRANSIT_4_COND", - "description": "STR_TRANSIT_4_DESC", - "id": 4, - "location": "Interchange", - "name": "STR_TRANSIT_4", - "target": "5714dbc024597771384a510d", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": true, - "conditions": "STR_TRANSIT_5_COND", - "description": "STR_TRANSIT_5_DESC", - "id": 5, - "location": "laboratory", - "name": "STR_TRANSIT_5", - "target": "5b0fc42d86f7744a585f9105", - "time": 30 - } - ], - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "waves": [ - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "ZoneSW00", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 0, - "slots_max": 4, - "slots_min": 3, - "time_max": -1, - "time_min": -1 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "ZoneCarShowroom", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 1, - "slots_max": 3, - "slots_min": 2, - "time_max": -1, - "time_min": -1 - }, - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "ZoneStilo", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 2, - "slots_max": 4, - "slots_min": 3, - "time_max": -1, - "time_min": -1 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "ZoneSnipeStilo", - "WildSpawnType": "marksman", - "isPlayers": false, - "number": 3, - "slots_max": 1, - "slots_min": 1, - "time_max": -1, - "time_min": -1 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "ZoneCard1", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 4, - "slots_max": 4, - "slots_min": 2, - "time_max": -1, - "time_min": -1 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "ZoneSnipeCard", - "WildSpawnType": "marksman", - "isPlayers": false, - "number": 5, - "slots_max": 1, - "slots_min": 1, - "time_max": -1, - "time_min": -1 - }, - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "ZoneHotel_1", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 6, - "slots_max": 3, - "slots_min": 2, - "time_max": -1, - "time_min": -1 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "ZoneSnipeBuilding", - "WildSpawnType": "marksman", - "isPlayers": false, - "number": 7, - "slots_max": 1, - "slots_min": 1, - "time_max": -1, - "time_min": -1 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "ZoneSnipeSW01", - "WildSpawnType": "marksman", - "isPlayers": false, - "number": 8, - "slots_max": 1, - "slots_min": 1, - "time_max": -1, - "time_min": -1 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "ZoneSW01", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 9, - "slots_max": 4, - "slots_min": 1, - "time_max": -1, - "time_min": -1 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "ZoneConstruction", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 10, - "slots_max": 4, - "slots_min": 1, - "time_max": -1, - "time_min": -1 - }, - { - "BotPreset": "normal", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "ZoneHotel_2", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 11, - "slots_max": 3, - "slots_min": 2, - "time_max": -1, - "time_min": -1 - }, - { - "BotPreset": "hard", - "BotSide": "Savage", - "SpawnMode": [ - "regular", - "pve" - ], - "SpawnPoints": "ZoneConcordia_1", - "WildSpawnType": "assault", - "isPlayers": false, - "number": 12, - "slots_max": 4, - "slots_min": 2, - "time_max": -1, - "time_min": -1 - } - ] -} diff --git a/project/assets/database/locations/tarkovstreets/looseLoot.json b/project/assets/database/locations/tarkovstreets/looseLoot.json deleted file mode 100644 index 9076210e..00000000 --- a/project/assets/database/locations/tarkovstreets/looseLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:21117c43b0701b4f771f296be632b029d7f82f4ccbc8ac74b9357cbc6eed4730 -size 78314853 diff --git a/project/assets/database/locations/tarkovstreets/staticAmmo.json b/project/assets/database/locations/tarkovstreets/staticAmmo.json deleted file mode 100644 index d1356732..00000000 --- a/project/assets/database/locations/tarkovstreets/staticAmmo.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:261055640705bb176d4d00662fc16bf268a76ad1b184162779897814e0274ece -size 11328 diff --git a/project/assets/database/locations/tarkovstreets/staticContainers.json b/project/assets/database/locations/tarkovstreets/staticContainers.json deleted file mode 100644 index f18c0689..00000000 --- a/project/assets/database/locations/tarkovstreets/staticContainers.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:61619d3e51c0450994b059d95c23528156c3f2cd1fec0c6cb94197ad6284c591 -size 603202 diff --git a/project/assets/database/locations/tarkovstreets/staticLoot.json b/project/assets/database/locations/tarkovstreets/staticLoot.json deleted file mode 100644 index dbd651a4..00000000 --- a/project/assets/database/locations/tarkovstreets/staticLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e23a79619b48a2a91ea458f4032c883e7f026811baa478d8649e5336e1eb1ac9 -size 578809 diff --git a/project/assets/database/locations/tarkovstreets/statics.json b/project/assets/database/locations/tarkovstreets/statics.json deleted file mode 100644 index 94694685..00000000 --- a/project/assets/database/locations/tarkovstreets/statics.json +++ /dev/null @@ -1,3992 +0,0 @@ -{ - "containersGroups": { - "random_NE_02_1": { - "minContainers": 2, - "maxContainers": 3 - }, - "random_NE_02_3": { - "minContainers": 2, - "maxContainers": 3 - }, - "random_containers_other_ne02": { - "minContainers": 9, - "maxContainers": 10 - }, - "NEED_TO_BE_FIXED_NW_01": { - "minContainers": 3, - "maxContainers": 4 - }, - "City_NW_01_Cardinal_indoor_rand": { - "minContainers": 4, - "maxContainers": 6 - }, - "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor": { - "minContainers": 26, - "maxContainers": 27 - }, - "City_NW_02_Tetris_indoor_rand": { - "minContainers": 7, - "maxContainers": 9 - }, - "LOOTABLE_DRAFT_City_NW_03_Klimova_1a_indoor": { - "minContainers": 3, - "maxContainers": 4 - }, - "City_Roads_Primorskiy": { - "minContainers": 14, - "maxContainers": 16 - }, - "LOOTABLE_DRAFT_City_NW_02_courtyard": { - "minContainers": 0, - "maxContainers": 0 - }, - "LOOTABLE_DRAFT_City_Roads_Underground": { - "minContainers": 4, - "maxContainers": 6 - }, - "Jaeger_Stashes(9)": { - "minContainers": 16, - "maxContainers": 19 - }, - "containers_Leo": { - "minContainers": 3, - "maxContainers": 5 - }, - "City_SE_01_Lenina_74_indoor_rand": { - "minContainers": 11, - "maxContainers": 14 - }, - "City_SE_01_Pinewood_Hotel_indoor": { - "minContainers": 28, - "maxContainers": 32 - }, - "NEED_TO_BE_FIXED_SE01": { - "minContainers": 4, - "maxContainers": 6 - }, - "City_SE_02_Malevicha_5_indoor_rand": { - "minContainers": 10, - "maxContainers": 12 - }, - "City_SE_02_Nikitskaya_6_indoor": { - "minContainers": 1, - "maxContainers": 3 - }, - "City_SE_02_Primorskiy_51_indoor_rand": { - "minContainers": 4, - "maxContainers": 5 - }, - "City_SE_02_Nikitskaya_8_Indoor": { - "minContainers": 1, - "maxContainers": 2 - }, - "NEED_TO_BE_FIXED_SE02": { - "minContainers": 13, - "maxContainers": 15 - }, - "City_SE_03_Square_Gagarina": { - "minContainers": 4, - "maxContainers": 6 - }, - "City_SE_03_Square_Pushkina": { - "minContainers": 0, - "maxContainers": 2 - }, - "City_SE_03_Cinema_indoor": { - "minContainers": 14, - "maxContainers": 16 - }, - "City_SE_04_Nizhnyaya_Sadovaya_2_indoor_rand": { - "minContainers": 6, - "maxContainers": 7 - }, - "New Containers": { - "minContainers": 13, - "maxContainers": 15 - }, - "City_SW_01_B_Zmeiskiy_6_indoor_rand": { - "minContainers": 11, - "maxContainers": 13 - }, - "LOOTABLE_DRAFT_City_SW_01_B_School_30_scontainer_bagsport_N2_3": { - "minContainers": 0, - "maxContainers": 2 - }, - "City_SW01_General": { - "minContainers": 50, - "maxContainers": 70 - }, - "LOOTABLE_DRAFT_City_SW_01_B_School_30_scontainer_medbagN1_5": { - "minContainers": 0, - "maxContainers": 3 - }, - "City_SW_02_Razvedchikov_7_indoor_rand": { - "minContainers": 5, - "maxContainers": 6 - }, - "SW02_group_city": { - "minContainers": 100, - "maxContainers": 120 - }, - "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor": { - "minContainers": 9, - "maxContainers": 12 - }, - "LOOTABLE_DRAFT_SW_05_B_Razvedchikov_4_indoor": { - "minContainers": 3, - "maxContainers": 5 - }, - "NEED_TO_BE_FIXED1": { - "minContainers": 3, - "maxContainers": 4 - } - }, - "containers": { - "container_City_SE_01_courtyard_A_00000": { - "groupId": "" - }, - "container_City_SE_04_courtyard_00001": { - "groupId": "" - }, - "container_City_SE_04_courtyard_00000": { - "groupId": "" - }, - "container_City_SE_04_courtyard_00002": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00063": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00065": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00037": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00036": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00034": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00035": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00064": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00067": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00066": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00055": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00054": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00056": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00057": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00059": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00058": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00060": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00061": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00032": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00033": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00031": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00030": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00052": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00053": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00051": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00050": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00071": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00029": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00043": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00074": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00072": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00080": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00042": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00069": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00070": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00097": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00082": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00028": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00062": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00026": { - "groupId": "random_NE_02_1" - }, - "container_City_NE_02_DesignStuff_00023": { - "groupId": "random_NE_02_1" - }, - "container_City_NE_02_DesignStuff_00045": { - "groupId": "random_NE_02_3" - }, - "container_City_NE_02_DesignStuff_00027": { - "groupId": "random_NE_02_1" - }, - "container_City_NE_02_DesignStuff_00021": { - "groupId": "random_NE_02_1" - }, - "container_City_NE_02_DesignStuff_00018": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00047": { - "groupId": "random_NE_02_3" - }, - "container_City_NE_02_DesignStuff_00008": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00009": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00017": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00022": { - "groupId": "random_NE_02_1" - }, - "container_City_NE_02_DesignStuff_00007": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00049": { - "groupId": "random_NE_02_3" - }, - "container_City_NE_02_DesignStuff_00019": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00012": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00016": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00005": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00006": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00014": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00004": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00011": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00020": { - "groupId": "random_NE_02_1" - }, - "container_City_NE_02_DesignStuff_00003": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00013": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00002": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00001": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00015": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00025": { - "groupId": "random_NE_02_1" - }, - "container_City_NE_02_DesignStuff_00068": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00076": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00105": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00048": { - "groupId": "random_NE_02_3" - }, - "container_City_NE_02_DesignStuff_00044": { - "groupId": "random_NE_02_3" - }, - "container_City_NE_02_DesignStuff_00046": { - "groupId": "random_NE_02_3" - }, - "container_City_NE_02_DesignStuff_00083": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00098": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00093": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00099": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00089": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00091": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00092": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00094": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00103": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00085": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00081": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00040": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00102": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00079": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00100": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00075": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00101": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00087": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00096": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00041": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00078": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00086": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00090": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00095": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00039": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00104": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00088": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00084": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00073": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00000": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00010": { - "groupId": "random_containers_other_ne02" - }, - "container_City_NE_02_DesignStuff_00077": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00038": { - "groupId": "" - }, - "container_City_NE_02_DesignStuff_00024": { - "groupId": "random_NE_02_1" - }, - "container_City_NW_01_DesignStuff_00028": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00029": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00027": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00026": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00021": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00020": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00018": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00019": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00038": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00037": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00035": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00036": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00094": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00095": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00093": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00092": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00059": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00060": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00062": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00061": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00067": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00068": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00070": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00069": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00055": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00056": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00058": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00057": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00090": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00089": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00087": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00088": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00042": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00041": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00039": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00040": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00066": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00065": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00063": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00064": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00023": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00022": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00024": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00025": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00071": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00072": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00074": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00073": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00048": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00047": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00049": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00050": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00052": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00051": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00053": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00054": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00081": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00080": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00082": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00083": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00032": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00031": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00033": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00034": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00045": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00046": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00044": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00043": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00120": { - "groupId": "NEED_TO_BE_FIXED_NW_01" - }, - "container_City_NW_01_DesignStuff_00076": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00012": { - "groupId": "City_NW_01_Cardinal_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00013": { - "groupId": "City_NW_01_Cardinal_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00010": { - "groupId": "City_NW_02_Tetris_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00113": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00016": { - "groupId": "City_NW_01_Cardinal_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00014": { - "groupId": "City_NW_01_Cardinal_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00112": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00099": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00011": { - "groupId": "City_NW_01_Cardinal_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00015": { - "groupId": "City_NW_01_Cardinal_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00100": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00006": { - "groupId": "City_NW_02_Tetris_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00009": { - "groupId": "City_NW_02_Tetris_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00001": { - "groupId": "City_NW_02_Tetris_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00002": { - "groupId": "City_NW_02_Tetris_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00017": { - "groupId": "City_NW_01_Cardinal_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00121": { - "groupId": "NEED_TO_BE_FIXED_NW_01" - }, - "container_City_NW_01_DesignStuff_00122": { - "groupId": "NEED_TO_BE_FIXED_NW_01" - }, - "container_City_NW_01_DesignStuff_00086": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00104": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00030": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00075": { - "groupId": "" - }, - "container_City_NW_01_DesignStuff_00000": { - "groupId": "City_NW_02_Tetris_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00115": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00005": { - "groupId": "City_NW_02_Tetris_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00003": { - "groupId": "City_NW_02_Tetris_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00102": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00008": { - "groupId": "City_NW_02_Tetris_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00004": { - "groupId": "City_NW_02_Tetris_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00007": { - "groupId": "City_NW_02_Tetris_indoor_rand" - }, - "container_City_NW_01_DesignStuff_00085": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00096": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00109": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00105": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00103": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00091": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00108": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00077": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00116": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00097": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00110": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00106": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00114": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00078": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00101": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00084": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00107": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00079": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00098": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00111": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00118": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00119": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_01_DesignStuff_00117": { - "groupId": "LOOTABLE_DRAFT_City_NW_01_Cardinal_indoor" - }, - "container_City_NW_03_DesignStuff_00003": { - "groupId": "LOOTABLE_DRAFT_City_NW_03_Klimova_1a_indoor" - }, - "container_City_NW_03_DesignStuff_00002": { - "groupId": "LOOTABLE_DRAFT_City_NW_03_Klimova_1a_indoor" - }, - "container_City_NW_03_DesignStuff_00001": { - "groupId": "LOOTABLE_DRAFT_City_NW_03_Klimova_1a_indoor" - }, - "container_City_NW_03_DesignStuff_00000": { - "groupId": "LOOTABLE_DRAFT_City_NW_03_Klimova_1a_indoor" - }, - "container_City_Roads_DesignStuff_00016": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00006": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00046": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00027": { - "groupId": "LOOTABLE_DRAFT_City_NW_02_courtyard" - }, - "container_City_Roads_DesignStuff_00009": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00017": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00018": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00030": { - "groupId": "LOOTABLE_DRAFT_City_NW_02_courtyard" - }, - "container_City_Roads_DesignStuff_00019": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00032": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00008": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00031": { - "groupId": "LOOTABLE_DRAFT_City_NW_02_courtyard" - }, - "container_City_Roads_DesignStuff_00047": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00029": { - "groupId": "LOOTABLE_DRAFT_City_NW_02_courtyard" - }, - "container_City_Roads_DesignStuff_00010": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00028": { - "groupId": "LOOTABLE_DRAFT_City_NW_02_courtyard" - }, - "container_City_Roads_DesignStuff_00066": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00055": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00059": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00056": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00065": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00078": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00069": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00063": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00061": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00051": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00060": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00075": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00076": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00053": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00073": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00050": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00067": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00064": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00077": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00052": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00057": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00068": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00072": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00054": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00058": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00062": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00070": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00080": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00071": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00079": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00074": { - "groupId": "Jaeger_Stashes(9)" - }, - "container_City_Roads_DesignStuff_00088": { - "groupId": "containers_Leo" - }, - "container_City_Roads_DesignStuff_00038": { - "groupId": "LOOTABLE_DRAFT_City_Roads_Underground" - }, - "container_City_Roads_DesignStuff_00085": { - "groupId": "containers_Leo" - }, - "container_City_Roads_DesignStuff_00034": { - "groupId": "LOOTABLE_DRAFT_City_Roads_Underground" - }, - "container_City_Roads_DesignStuff_00087": { - "groupId": "containers_Leo" - }, - "container_City_Roads_DesignStuff_00086": { - "groupId": "containers_Leo" - }, - "container_City_Roads_DesignStuff_00037": { - "groupId": "LOOTABLE_DRAFT_City_Roads_Underground" - }, - "container_City_Roads_DesignStuff_00083": { - "groupId": "containers_Leo" - }, - "container_City_Roads_DesignStuff_00082": { - "groupId": "containers_Leo" - }, - "container_City_Roads_DesignStuff_00081": { - "groupId": "containers_Leo" - }, - "container_City_Roads_DesignStuff_00012": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00044": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00045": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00033": { - "groupId": "LOOTABLE_DRAFT_City_Roads_Underground" - }, - "container_City_Roads_DesignStuff_00036": { - "groupId": "LOOTABLE_DRAFT_City_Roads_Underground" - }, - "container_City_Roads_DesignStuff_00084": { - "groupId": "containers_Leo" - }, - "container_City_Roads_DesignStuff_00042": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00040": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00043": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00041": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00000": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00005": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00089": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00014": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00049": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00002": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00026": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00003": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00048": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00004": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00015": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00035": { - "groupId": "LOOTABLE_DRAFT_City_Roads_Underground" - }, - "container_City_Roads_DesignStuff_00039": { - "groupId": "LOOTABLE_DRAFT_City_Roads_Underground" - }, - "container_City_Roads_DesignStuff_00021": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00011": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00020": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00013": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00022": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00001": { - "groupId": "" - }, - "container_City_Roads_DesignStuff_00025": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00024": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00023": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_Roads_DesignStuff_00007": { - "groupId": "City_Roads_Primorskiy" - }, - "container_City_SE_01_DesignStuff_00030": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00029": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00031": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00032": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00027": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00028": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00026": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00025": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00033": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00052": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00065": { - "groupId": "" - }, - "container_City_SE_01_DesignStuff_00046": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00015": { - "groupId": "" - }, - "container_City_SE_01_DesignStuff_00035": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00066": { - "groupId": "" - }, - "container_City_SE_01_DesignStuff_00049": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00056": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00040": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00045": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00060": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00042": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00013": { - "groupId": "City_SE_01_Lenina_74_indoor_rand" - }, - "container_City_SE_01_DesignStuff_00059": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00004": { - "groupId": "City_SE_01_Lenina_74_indoor_rand" - }, - "container_City_SE_01_DesignStuff_00058": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00012": { - "groupId": "City_SE_01_Lenina_74_indoor_rand" - }, - "container_City_SE_01_DesignStuff_00043": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00054": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00002": { - "groupId": "City_SE_01_Lenina_74_indoor_rand" - }, - "container_City_SE_01_DesignStuff_00044": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00014": { - "groupId": "City_SE_01_Lenina_74_indoor_rand" - }, - "container_City_SE_01_DesignStuff_00057": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00001": { - "groupId": "City_SE_01_Lenina_74_indoor_rand" - }, - "container_City_SE_01_DesignStuff_00051": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00006": { - "groupId": "City_SE_01_Lenina_74_indoor_rand" - }, - "container_City_SE_01_DesignStuff_00039": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00041": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00055": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00003": { - "groupId": "City_SE_01_Lenina_74_indoor_rand" - }, - "container_City_SE_01_DesignStuff_00037": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00077": { - "groupId": "" - }, - "container_City_SE_01_DesignStuff_00075": { - "groupId": "" - }, - "container_City_SE_01_DesignStuff_00069": { - "groupId": "NEED_TO_BE_FIXED_SE01" - }, - "container_City_SE_01_DesignStuff_00070": { - "groupId": "NEED_TO_BE_FIXED_SE01" - }, - "container_City_SE_01_DesignStuff_00071": { - "groupId": "NEED_TO_BE_FIXED_SE01" - }, - "container_City_SE_01_DesignStuff_00074": { - "groupId": "NEED_TO_BE_FIXED_SE01" - }, - "container_City_SE_01_DesignStuff_00072": { - "groupId": "NEED_TO_BE_FIXED_SE01" - }, - "container_City_SE_01_DesignStuff_00017": { - "groupId": "" - }, - "container_City_SE_01_DesignStuff_00067": { - "groupId": "NEED_TO_BE_FIXED_SE01" - }, - "container_City_SE_01_DesignStuff_00073": { - "groupId": "NEED_TO_BE_FIXED_SE01" - }, - "container_City_SE_01_DesignStuff_00068": { - "groupId": "NEED_TO_BE_FIXED_SE01" - }, - "container_City_SE_01_DesignStuff_00036": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00019": { - "groupId": "" - }, - "container_City_SE_01_DesignStuff_00038": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00022": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00021": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00023": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00076": { - "groupId": "" - }, - "container_City_SE_01_DesignStuff_00020": { - "groupId": "" - }, - "container_City_SE_01_DesignStuff_00018": { - "groupId": "" - }, - "container_City_SE_01_DesignStuff_00050": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00011": { - "groupId": "City_SE_01_Lenina_74_indoor_rand" - }, - "container_City_SE_01_DesignStuff_00047": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00053": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00024": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00064": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00063": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00048": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00061": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00034": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00062": { - "groupId": "City_SE_01_Pinewood_Hotel_indoor" - }, - "container_City_SE_01_DesignStuff_00009": { - "groupId": "City_SE_01_Lenina_74_indoor_rand" - }, - "container_City_SE_01_DesignStuff_00010": { - "groupId": "City_SE_01_Lenina_74_indoor_rand" - }, - "container_City_SE_01_DesignStuff_00007": { - "groupId": "City_SE_01_Lenina_74_indoor_rand" - }, - "container_City_SE_01_DesignStuff_00008": { - "groupId": "City_SE_01_Lenina_74_indoor_rand" - }, - "container_City_SE_01_DesignStuff_00000": { - "groupId": "City_SE_01_Lenina_74_indoor_rand" - }, - "container_City_SE_01_DesignStuff_00005": { - "groupId": "City_SE_01_Lenina_74_indoor_rand" - }, - "container_City_SE_01_DesignStuff_00016": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00089": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00088": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00086": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00087": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00043": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00044": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00042": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00041": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00032": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00031": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00029": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00030": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00026": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00025": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00027": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00028": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00093": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00050": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00049": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00047": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00048": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00101": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00099": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00069": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00070": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00072": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00071": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00040": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00039": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00037": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00038": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00065": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00066": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00068": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00067": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00076": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00075": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00073": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00074": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00053": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00054": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00052": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00051": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00098": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00035": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00036": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00034": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00033": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00097": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00100": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00021": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00060": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00012": { - "groupId": "City_SE_02_Malevicha_5_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00120": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00020": { - "groupId": "City_SE_02_Primorskiy_51_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00055": { - "groupId": "City_SE_02_Nikitskaya_6_indoor" - }, - "container_City_SE_02_DesignStuff_00010": { - "groupId": "City_SE_02_Malevicha_5_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00007": { - "groupId": "City_SE_02_Malevicha_5_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00000": { - "groupId": "City_SE_02_Malevicha_5_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00057": { - "groupId": "City_SE_02_Nikitskaya_6_indoor" - }, - "container_City_SE_02_DesignStuff_00008": { - "groupId": "City_SE_02_Malevicha_5_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00001": { - "groupId": "City_SE_02_Malevicha_5_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00084": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00005": { - "groupId": "City_SE_02_Malevicha_5_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00006": { - "groupId": "City_SE_02_Malevicha_5_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00011": { - "groupId": "City_SE_02_Malevicha_5_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00003": { - "groupId": "City_SE_02_Malevicha_5_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00004": { - "groupId": "City_SE_02_Malevicha_5_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00091": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00064": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00002": { - "groupId": "City_SE_02_Malevicha_5_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00063": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00108": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00013": { - "groupId": "City_SE_02_Malevicha_5_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00009": { - "groupId": "City_SE_02_Malevicha_5_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00112": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00046": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00018": { - "groupId": "City_SE_02_Primorskiy_51_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00115": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00016": { - "groupId": "City_SE_02_Primorskiy_51_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00095": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00104": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00107": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00106": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00092": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00094": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00096": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00105": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00102": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00103": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00062": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00061": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00045": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00116": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00111": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00119": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00022": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00113": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00056": { - "groupId": "City_SE_02_Nikitskaya_6_indoor" - }, - "container_City_SE_02_DesignStuff_00109": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00019": { - "groupId": "City_SE_02_Primorskiy_51_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00015": { - "groupId": "City_SE_02_Primorskiy_51_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00017": { - "groupId": "City_SE_02_Primorskiy_51_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00085": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00090": { - "groupId": "NEED_TO_BE_FIXED_SE02" - }, - "container_City_SE_02_DesignStuff_00078": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00081": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00079": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00083": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00024": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00082": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00077": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00023": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00080": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00059": { - "groupId": "City_SE_02_Nikitskaya_8_Indoor" - }, - "container_City_SE_02_DesignStuff_00058": { - "groupId": "City_SE_02_Nikitskaya_8_Indoor" - }, - "container_City_SE_02_DesignStuff_00110": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00014": { - "groupId": "City_SE_02_Malevicha_5_indoor_rand" - }, - "container_City_SE_02_DesignStuff_00118": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00114": { - "groupId": "" - }, - "container_City_SE_02_DesignStuff_00117": { - "groupId": "" - }, - "container_City_SE_03_DesignStuff_00012": { - "groupId": "" - }, - "container_City_SE_03_DesignStuff_00015": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00001": { - "groupId": "City_SE_03_Square_Gagarina" - }, - "container_City_SE_03_DesignStuff_00019": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00023": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00005": { - "groupId": "City_SE_03_Square_Gagarina" - }, - "container_City_SE_03_DesignStuff_00033": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00000": { - "groupId": "City_SE_03_Square_Gagarina" - }, - "container_City_SE_03_DesignStuff_00032": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00024": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00025": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00016": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00026": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00031": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00030": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00021": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00010": { - "groupId": "" - }, - "container_City_SE_03_DesignStuff_00002": { - "groupId": "City_SE_03_Square_Gagarina" - }, - "container_City_SE_03_DesignStuff_00022": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00035": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00027": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00036": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00008": { - "groupId": "City_SE_03_Square_Gagarina" - }, - "container_City_SE_03_DesignStuff_00028": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00020": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00034": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00029": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00007": { - "groupId": "City_SE_03_Square_Gagarina" - }, - "container_City_SE_03_DesignStuff_00003": { - "groupId": "City_SE_03_Square_Gagarina" - }, - "container_City_SE_03_DesignStuff_00009": { - "groupId": "" - }, - "container_City_SE_03_DesignStuff_00014": { - "groupId": "City_SE_03_Square_Pushkina" - }, - "container_City_SE_03_DesignStuff_00013": { - "groupId": "City_SE_03_Square_Pushkina" - }, - "container_City_SE_03_DesignStuff_00006": { - "groupId": "City_SE_03_Square_Gagarina" - }, - "container_City_SE_03_DesignStuff_00017": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00038": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00037": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00004": { - "groupId": "City_SE_03_Square_Gagarina" - }, - "container_City_SE_03_DesignStuff_00018": { - "groupId": "City_SE_03_Cinema_indoor" - }, - "container_City_SE_03_DesignStuff_00011": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00017": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00016": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00018": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00019": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00009": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00008": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00010": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00011": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00013": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00012": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00014": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00015": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00003": { - "groupId": "City_SE_04_Nizhnyaya_Sadovaya_2_indoor_rand" - }, - "container_City_SE_04_DesignStuff_00002": { - "groupId": "City_SE_04_Nizhnyaya_Sadovaya_2_indoor_rand" - }, - "container_City_SE_04_DesignStuff_00001": { - "groupId": "City_SE_04_Nizhnyaya_Sadovaya_2_indoor_rand" - }, - "container_City_SE_04_DesignStuff_00005": { - "groupId": "City_SE_04_Nizhnyaya_Sadovaya_2_indoor_rand" - }, - "container_City_SE_04_DesignStuff_00000": { - "groupId": "City_SE_04_Nizhnyaya_Sadovaya_2_indoor_rand" - }, - "container_City_SE_04_DesignStuff_00004": { - "groupId": "City_SE_04_Nizhnyaya_Sadovaya_2_indoor_rand" - }, - "container_City_SE_04_DesignStuff_00006": { - "groupId": "City_SE_04_Nizhnyaya_Sadovaya_2_indoor_rand" - }, - "container_City_SE_04_DesignStuff_00007": { - "groupId": "City_SE_04_Nizhnyaya_Sadovaya_2_indoor_rand" - }, - "container_City_SE_04_DesignStuff_00026": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00025": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00021": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00027": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00020": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00028": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00029": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00022": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00023": { - "groupId": "" - }, - "container_City_SE_04_DesignStuff_00024": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00098": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00169": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00170": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00172": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00171": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00161": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00118": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00209": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00315": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00316": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00318": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00317": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00271": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00226": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00225": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00223": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00224": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00205": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00204": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00206": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00207": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00282": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00283": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00281": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00280": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00257": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00137": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00138": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00136": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00135": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00320": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00175": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00176": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00174": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00173": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00210": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00141": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00122": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00121": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00123": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00124": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00278": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00279": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00277": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00276": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00295": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00294": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00296": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00297": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00306": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00305": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00307": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00308": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00313": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00314": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00312": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00311": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00101": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00189": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00188": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00186": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00187": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00163": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00112": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00113": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00115": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00114": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00285": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00284": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00286": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00287": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00109": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00108": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00110": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00111": { - "groupId": "" - }, - "Lootable_00009": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00229": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00230": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00228": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00227": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00233": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00234": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00232": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00231": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00177": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00178": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00198": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00199": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00197": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00196": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00180": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00179": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00201": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00200": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00202": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00203": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00130": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00292": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00293": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00291": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00290": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00164": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00218": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00217": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00215": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00216": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00237": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00238": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00236": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00235": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00220": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00219": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00221": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00222": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00099": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00248": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00247": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00249": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00250": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00140": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00182": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00181": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00183": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00184": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00244": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00243": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00245": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00246": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00239": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00240": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00242": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00241": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00267": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00128": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00127": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00125": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00126": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00107": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00106": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00104": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00105": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00252": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00251": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00253": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00254": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00273": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00272": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00274": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00275": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00162": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00154": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00289": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00261": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00260": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00258": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00259": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00134": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00167": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00116": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00102": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00299": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00139": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00132": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00120": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00321": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00131": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00255": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00103": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00117": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00165": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00166": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00195": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00133": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00078": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00070": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00340": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00009": { - "groupId": "City_SW_01_B_Zmeiskiy_6_indoor_rand" - }, - "container_City_SW_01_A_DesignStuff_00347": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00332": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00042": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00003": { - "groupId": "City_SW_01_B_Zmeiskiy_6_indoor_rand" - }, - "container_City_SW_01_A_DesignStuff_00343": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00077": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00002": { - "groupId": "City_SW_01_B_Zmeiskiy_6_indoor_rand" - }, - "container_City_SW_01_A_DesignStuff_00327": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00029": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00083": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00345": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00062": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00344": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00059": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00043": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00326": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00044": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00341": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00333": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00068": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00146": { - "groupId": "LOOTABLE_DRAFT_City_SW_01_B_School_30_scontainer_bagsport_N2_3" - }, - "container_City_SW_01_A_DesignStuff_00051": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00030": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00045": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00088": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00329": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00065": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00075": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00023": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00330": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00084": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00092": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00067": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00076": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00014": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00331": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00346": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00147": { - "groupId": "LOOTABLE_DRAFT_City_SW_01_B_School_30_scontainer_bagsport_N2_3" - }, - "container_City_SW_01_A_DesignStuff_00061": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00071": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00064": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00091": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00325": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00057": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00148": { - "groupId": "LOOTABLE_DRAFT_City_SW_01_B_School_30_scontainer_bagsport_N2_3" - }, - "container_City_SW_01_A_DesignStuff_00328": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00040": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00024": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00053": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00027": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00000": { - "groupId": "City_SW_01_B_Zmeiskiy_6_indoor_rand" - }, - "container_City_SW_01_A_DesignStuff_00052": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00348": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00011": { - "groupId": "City_SW_01_B_Zmeiskiy_6_indoor_rand" - }, - "container_City_SW_01_A_DesignStuff_00342": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00007": { - "groupId": "City_SW_01_B_Zmeiskiy_6_indoor_rand" - }, - "container_City_SW_01_A_DesignStuff_00032": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00006": { - "groupId": "City_SW_01_B_Zmeiskiy_6_indoor_rand" - }, - "container_City_SW_01_A_DesignStuff_00058": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00054": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00066": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00152": { - "groupId": "LOOTABLE_DRAFT_City_SW_01_B_School_30_scontainer_medbagN1_5" - }, - "container_City_SW_01_A_DesignStuff_00081": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00153": { - "groupId": "LOOTABLE_DRAFT_City_SW_01_B_School_30_scontainer_medbagN1_5" - }, - "container_City_SW_01_A_DesignStuff_00028": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00074": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00056": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00349": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00047": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00048": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00097": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00085": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00350": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00055": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00031": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00072": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00336": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00335": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00352": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00089": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00020": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00337": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00012": { - "groupId": "City_SW_01_B_Zmeiskiy_6_indoor_rand" - }, - "container_City_SW_01_A_DesignStuff_00013": { - "groupId": "City_SW_01_B_Zmeiskiy_6_indoor_rand" - }, - "container_City_SW_01_A_DesignStuff_00060": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00010": { - "groupId": "City_SW_01_B_Zmeiskiy_6_indoor_rand" - }, - "container_City_SW_01_A_DesignStuff_00334": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00063": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00008": { - "groupId": "City_SW_01_B_Zmeiskiy_6_indoor_rand" - }, - "container_City_SW_01_A_DesignStuff_00354": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00069": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00338": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00353": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00041": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00022": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00096": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00264": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00213": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00214": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00263": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00309": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00265": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00266": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00142": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00168": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00185": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00100": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00300": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00144": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00208": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00288": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00143": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00129": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00001": { - "groupId": "City_SW_01_B_Zmeiskiy_6_indoor_rand" - }, - "container_City_SW_01_A_DesignStuff_00150": { - "groupId": "LOOTABLE_DRAFT_City_SW_01_B_School_30_scontainer_medbagN1_5" - }, - "container_City_SW_01_A_DesignStuff_00093": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00073": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00149": { - "groupId": "LOOTABLE_DRAFT_City_SW_01_B_School_30_scontainer_medbagN1_5" - }, - "container_City_SW_01_A_DesignStuff_00151": { - "groupId": "LOOTABLE_DRAFT_City_SW_01_B_School_30_scontainer_medbagN1_5" - }, - "container_City_SW_01_A_DesignStuff_00036": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00035": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00049": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00046": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00037": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00034": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00019": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00193": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00302": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00322": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00157": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00017": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00158": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00155": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00194": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00145": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00268": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00016": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00119": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00018": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00310": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00301": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00304": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00190": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00156": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00159": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00269": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00262": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00160": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00319": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00256": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00192": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00015": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00298": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00303": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00191": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00212": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00026": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00025": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00211": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00270": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00090": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00095": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00021": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00082": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00079": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00080": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00033": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00087": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00086": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00039": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00351": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00339": { - "groupId": "New Containers" - }, - "container_City_SW_01_A_DesignStuff_00050": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00038": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00323": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00094": { - "groupId": "City_SW01_General" - }, - "container_City_SW_01_A_DesignStuff_00005": { - "groupId": "City_SW_01_B_Zmeiskiy_6_indoor_rand" - }, - "container_City_SW_01_A_DesignStuff_00324": { - "groupId": "" - }, - "container_City_SW_01_A_DesignStuff_00004": { - "groupId": "City_SW_01_B_Zmeiskiy_6_indoor_rand" - }, - "container_City_SW_02_DesignStuff_00275": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00274": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00276": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00277": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00245": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00244": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00242": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00243": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00223": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00222": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00220": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00221": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00267": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00266": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00268": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00269": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00177": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00229": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00228": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00226": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00227": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00179": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00247": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00246": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00248": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00249": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00175": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00176": { - "groupId": "" - }, - "Lootable_00002": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00271": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00270": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00272": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00273": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00264": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00265": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00263": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00262": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00241": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00240": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00238": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00239": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00180": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00213": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00212": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00214": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00215": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00289": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00290": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00288": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00287": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00218": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00219": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00217": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00216": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00283": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00284": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00286": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00285": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00188": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00189": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00187": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00186": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00201": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00181": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00259": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00258": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00260": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00261": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00197": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00196": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00194": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00195": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00231": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00230": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00232": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00233": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00178": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00250": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00251": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00253": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00252": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00255": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00254": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00256": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00257": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00237": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00236": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00234": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00235": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00183": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00182": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00184": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00185": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00174": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00291": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00170": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00293": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00171": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00173": { - "groupId": "" - }, - "Lootable_00072": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00003": { - "groupId": "City_SW_02_Razvedchikov_7_indoor_rand" - }, - "container_City_SW_02_DesignStuff_00093": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00051": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00007": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00094": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00071": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00050": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00076": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00165": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00044": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00148": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00117": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00049": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00124": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00113": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00149": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00120": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00147": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00123": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00056": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00006": { - "groupId": "City_SW_02_Razvedchikov_7_indoor_rand" - }, - "container_City_SW_02_DesignStuff_00085": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00163": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00054": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00004": { - "groupId": "City_SW_02_Razvedchikov_7_indoor_rand" - }, - "container_City_SW_02_DesignStuff_00161": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00160": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00065": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00073": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00068": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00092": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00001": { - "groupId": "City_SW_02_Razvedchikov_7_indoor_rand" - }, - "container_City_SW_02_DesignStuff_00070": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00111": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00053": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00114": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00052": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00045": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00072": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00122": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00112": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00151": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00005": { - "groupId": "City_SW_02_Razvedchikov_7_indoor_rand" - }, - "container_City_SW_02_DesignStuff_00086": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00008": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00154": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00055": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00000": { - "groupId": "City_SW_02_Razvedchikov_7_indoor_rand" - }, - "container_City_SW_02_DesignStuff_00145": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00097": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00166": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00281": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00282": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00058": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00087": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00110": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00069": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00167": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00013": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00037": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00035": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00141": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00033": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00028": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00020": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00029": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00021": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00034": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00016": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00134": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00142": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00136": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00017": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00038": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00036": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00131": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00130": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00128": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00027": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00030": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00135": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00129": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00138": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00014": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00133": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00026": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00032": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00132": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00025": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00031": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00024": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00015": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00019": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00137": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00023": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00140": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00018": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00022": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00139": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00224": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00280": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00279": { - "groupId": "" - }, - "Lootable_00004": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00278": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00203": { - "groupId": "" - }, - "Lootable_00010": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00209": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00105": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00040": { - "groupId": "SW02_group_city" - }, - "00012": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00210": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00107": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00292": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00106": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00202": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00057": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00002": { - "groupId": "City_SW_02_Razvedchikov_7_indoor_rand" - }, - "n1": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00009": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00126": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00012": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00125": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00011": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00127": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00010": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00192": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00225": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00205": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00169": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00168": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00204": { - "groupId": "" - }, - "container_Test_for_export_00001": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00191": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00190": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00172": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00206": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00207": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00077": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00116": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00143": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00099": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00082": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00115": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00064": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00152": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00062": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00043": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00098": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00079": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00063": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00089": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00061": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00041": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00153": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00156": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00046": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00102": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00104": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00162": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00083": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00042": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00088": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00090": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00157": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00081": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00158": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00144": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00100": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00078": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00103": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00080": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00039": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00119": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00109": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00155": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00159": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00095": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00118": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00074": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00060": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00108": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00164": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00096": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00075": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00059": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00211": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00091": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00208": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00121": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00193": { - "groupId": "" - }, - "container_City_SW_02_DesignStuff_00146": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00150": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00084": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00047": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00067": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00066": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00101": { - "groupId": "SW02_group_city" - }, - "container_City_SW_02_DesignStuff_00048": { - "groupId": "SW02_group_city" - }, - "Lootable_00006": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "Lootable_00005": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "Lootable_00007": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "Lootable_00008": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "container_City_SW_04_DesignStuff_00012": { - "groupId": "" - }, - "container_City_SW_04_DesignStuff_00000": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "container_City_SW_04_DesignStuff_00011": { - "groupId": "" - }, - "container_City_SW_04_DesignStuff_00013": { - "groupId": "" - }, - "container_City_SW_04_DesignStuff_00002": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "container_City_SW_04_DesignStuff_00014": { - "groupId": "" - }, - "container_City_SW_04_DesignStuff_00008": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "container_City_SW_04_DesignStuff_00009": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "container_City_SW_04_DesignStuff_00005": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "container_City_SW_04_DesignStuff_00003": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "container_City_SW_04_DesignStuff_00010": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "container_City_SW_04_DesignStuff_00004": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "Lootable_00003": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "container_City_SW_04_DesignStuff_00007": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "container_City_SW_04_DesignStuff_00001": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "container_City_SW_04_DesignStuff_00006": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "container_Test_for_export_00002": { - "groupId": "LOOTABLE_DRAFT_City_SW_04_Primorskiy_58_str1_indoor" - }, - "Lootable_00001": { - "groupId": "NEED_TO_BE_FIXED1" - }, - "Lootable_00000": { - "groupId": "NEED_TO_BE_FIXED1" - }, - "container_City_SW_05_DesignStuff_00003": { - "groupId": "LOOTABLE_DRAFT_SW_05_B_Razvedchikov_4_indoor" - }, - "container_City_SW_05_DesignStuff_00004": { - "groupId": "LOOTABLE_DRAFT_SW_05_B_Razvedchikov_4_indoor" - }, - "container_City_SW_05_DesignStuff_00000": { - "groupId": "LOOTABLE_DRAFT_SW_05_B_Razvedchikov_4_indoor" - }, - "container_Test_for_export_00000": { - "groupId": "LOOTABLE_DRAFT_SW_05_B_Razvedchikov_4_indoor" - }, - "container_City_SW_05_DesignStuff_00007": { - "groupId": "NEED_TO_BE_FIXED1" - }, - "container_City_SW_05_DesignStuff_00008": { - "groupId": "NEED_TO_BE_FIXED1" - }, - "container_City_SW_05_DesignStuff_00001": { - "groupId": "LOOTABLE_DRAFT_SW_05_B_Razvedchikov_4_indoor" - }, - "container_City_SW_05_DesignStuff_00002": { - "groupId": "LOOTABLE_DRAFT_SW_05_B_Razvedchikov_4_indoor" - }, - "container_City_SW_05_DesignStuff_00005": { - "groupId": "LOOTABLE_DRAFT_SW_05_B_Razvedchikov_4_indoor" - }, - "container_City_SW_05_DesignStuff_00006": { - "groupId": "LOOTABLE_DRAFT_SW_05_B_Razvedchikov_4_indoor" - } - } -} \ No newline at end of file diff --git a/project/assets/database/locations/terminal/base.json b/project/assets/database/locations/terminal/base.json deleted file mode 100644 index a76462f1..00000000 --- a/project/assets/database/locations/terminal/base.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "Enabled": true, - "Locked": true, - "Insurance": false, - "SafeLocation": false, - "Name": "Terminal", - "Scene": { - "path": "", - "rcid": "" - }, - "Area": 0, - "RequiredPlayerLevel": 0, - "MinPlayers": 6, - "MaxPlayers": 9, - "exit_count": 0, - "exit_access_time": 0, - "exit_time": 0, - "IconX": 280, - "IconY": 160, - "waves": [ - { - "number": 0, - "time_min": 1, - "time_max": 2, - "slots_min": 3, - "slots_max": 6, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "easy", - "isPlayers": false, - "WildSpawnType": "assault" - }, - { - "number": 1, - "time_min": 10, - "time_max": 12, - "slots_min": 3, - "slots_max": 5, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "easy", - "isPlayers": false, - "WildSpawnType": "assault" - } - ], - "limits": [], - "AveragePlayTime": 100, - "AveragePlayerLevel": 10, - "escape_time_limit": 0, - "Rules": "Normal", - "IsSecret": false, - "doors": [], - "tmp_location_field_remove_me": 0, - "MinDistToExitPoint": 0, - "MaxDistToFreePoint": 900, - "MinDistToFreePoint": 10, - "MaxBotPerZone": 0, - "OpenZones": "", - "OcculsionCullingEnabled": false, - "GlobalLootChanceModifier": 0, - "OldSpawn": true, - "NewSpawn": false, - "BotMax": 0, - "BotStart": 0, - "BotStop": 0, - "BotMaxTimePlayer": 0, - "BotSpawnTimeOnMin": 0, - "BotSpawnTimeOnMax": 0, - "BotSpawnTimeOffMin": 0, - "BotSpawnTimeOffMax": 0, - "BotMaxPlayer": 0, - "BotEasy": 0, - "BotNormal": 0, - "BotHard": 0, - "BotImpossible": 0, - "BotAssault": 0, - "BotMarksman": 0, - "DisabledScavExits": "", - "AccessKeys": [], - "UnixDateTime": 0, - "users_gather_seconds": 0, - "users_spawn_seconds_n": 0, - "users_spawn_seconds_n2": 0, - "users_summon_seconds": 0, - "sav_summon_seconds": 0, - "matching_min_seconds": 0, - "MinMaxBots": [], - "BotLocationModifier": { - "AccuracySpeed": 0, - "Scattering": 0, - "GainSight": 0, - "MarksmanAccuratyCoef": 0, - "VisibleDistance": 0 - }, - "exits": [], - "DisabledForScav": false, - "BossLocationSpawn": [], - "SpawnPointParams": [], - "maxItemCountInLocation": [], - "Id": "Terminal", - "_Id": "5704e5a4d2720bb45b8b4567", - "Loot": [], - "Banners": [ - { - "id": "5464e0404bdc2d2a708b4567", - "pic": { - "path": "CONTENT/banners/banner_usec.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT/banners/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "5464c4344bdc2d98698b4567", - "pic": { - "path": "CONTENT/banners/banner_hotkeys_1.png", - "rcid": "RCID_hotkeys_1" - } - } - ] -} \ No newline at end of file diff --git a/project/assets/database/locations/town/base.json b/project/assets/database/locations/town/base.json deleted file mode 100644 index 31f1fbf0..00000000 --- a/project/assets/database/locations/town/base.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "Enabled": false, - "Locked": true, - "Insurance": false, - "SafeLocation": false, - "Name": "Town", - "Scene": { - "path": "", - "rcid": "" - }, - "Area": 0, - "RequiredPlayerLevel": 0, - "MinPlayers": 6, - "MaxPlayers": 9, - "exit_count": 0, - "exit_access_time": 0, - "exit_time": 0, - "IconX": 72, - "IconY": 413, - "waves": [ - { - "number": 0, - "time_min": 1, - "time_max": 2, - "slots_min": 3, - "slots_max": 6, - "SpawnPoints": "", - "BotSide": "Usec", - "BotPreset": "hard", - "WildSpawnType": "assault", - "isPlayers": false - }, - { - "number": 1, - "time_min": 10, - "time_max": 12, - "slots_min": 3, - "slots_max": 5, - "SpawnPoints": "", - "BotSide": "Savage", - "BotPreset": "normal", - "WildSpawnType": "assault", - "isPlayers": false - } - ], - "limits": [], - "AveragePlayTime": 100, - "AveragePlayerLevel": 10, - "escape_time_limit": 0, - "Rules": "Normal", - "IsSecret": false, - "doors": [], - "tmp_location_field_remove_me": 0, - "MinDistToExitPoint": 0, - "MaxDistToFreePoint": 900, - "MinDistToFreePoint": 10, - "MaxBotPerZone": 0, - "OpenZones": "", - "OcculsionCullingEnabled": false, - "GlobalLootChanceModifier": 0, - "OldSpawn": true, - "NewSpawn": false, - "BotMax": 0, - "BotStart": 0, - "BotStop": 0, - "BotMaxTimePlayer": 0, - "BotSpawnTimeOnMin": 0, - "BotSpawnTimeOnMax": 0, - "BotSpawnTimeOffMin": 0, - "BotSpawnTimeOffMax": 0, - "BotMaxPlayer": 0, - "BotEasy": 0, - "BotNormal": 0, - "BotHard": 0, - "BotImpossible": 0, - "BotAssault": 0, - "BotMarksman": 0, - "DisabledScavExits": "", - "AccessKeys": [], - "UnixDateTime": 0, - "users_gather_seconds": 0, - "users_spawn_seconds_n": 0, - "users_spawn_seconds_n2": 0, - "users_summon_seconds": 0, - "sav_summon_seconds": 0, - "matching_min_seconds": 0, - "MinMaxBots": [], - "BotLocationModifier": { - "AccuracySpeed": 0, - "Scattering": 0, - "GainSight": 0, - "MarksmanAccuratyCoef": 0, - "VisibleDistance": 0 - }, - "exits": [], - "DisabledForScav": false, - "BossLocationSpawn": [], - "SpawnPointParams": [], - "maxItemCountInLocation": [], - "Id": "Town", - "_Id": "5704e47ed2720bb35b8b4568", - "Loot": [], - "Banners": [ - { - "id": "5464e0454bdc2d06708b4567", - "pic": { - "path": "CONTENT/banners/banner_bear.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT/banners/banner_scavraider.jpg", - "rcid": "" - } - } - ] -} \ No newline at end of file diff --git a/project/assets/database/locations/woods/allExtracts.json b/project/assets/database/locations/woods/allExtracts.json deleted file mode 100644 index 85273350..00000000 --- a/project/assets/database/locations/woods/allExtracts.json +++ /dev/null @@ -1,462 +0,0 @@ -[ - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "House,Old Station", - "EventAvailable": false, - "ExfiltrationTime": 20.0, - "ExfiltrationTimePVE": 20.0, - "ExfiltrationType": "SharedTimer", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Factory Gate", - "PassageRequirement": "ScavCooperation", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Cooperate", - "Side": "Coop" - }, - { - "Chance": 66.0, - "ChancePVE": 66.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "House", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "RUAF Gate", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 66.0, - "ChancePVE": 66.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "House", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "ZB-016", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 66.0, - "ChancePVE": 66.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Old Station", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "ZB-014", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "House", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "UN Roadblock", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 5000, - "CountPve": 0, - "EntryPoints": "House,Old Station", - "EventAvailable": false, - "ExfiltrationTime": 60.0, - "ExfiltrationTimePVE": 60.0, - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "South V-Ex", - "PassageRequirement": "TransferItem", - "PlayersCount": 4, - "PlayersCountPVE": 4, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_Item", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "Old Station", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Outskirts", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "House", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "un-sec", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "House,Old Station", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "wood_sniper_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Pmc" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Outskirts", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Outskirts Water", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Dead Man's Place", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "The Boat", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Scav House", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "East Gate", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Mountain Stash", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "West Border", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "Old Station", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "UN Roadblock", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - }, - { - "Chance": 100.0, - "ChancePVE": 100.0, - "Count": 0, - "CountPve": 0, - "EntryPoints": "", - "EventAvailable": false, - "ExfiltrationTime": 8.0, - "ExfiltrationTimePVE": 8.0, - "ExfiltrationType": "Individual", - "Id": "", - "MinTime": 0.0, - "MinTimePVE": 0.0, - "MaxTime": 0.0, - "MaxTimePVE": 0.0, - "Name": "RUAF Roadblock", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "", - "Side": "Scav" - } -] \ No newline at end of file diff --git a/project/assets/database/locations/woods/base.json b/project/assets/database/locations/woods/base.json deleted file mode 100644 index e8bde77a..00000000 --- a/project/assets/database/locations/woods/base.json +++ /dev/null @@ -1,10410 +0,0 @@ -{ - "AccessKeys": [], - "AccessKeysPvE": [], - "AirdropParameters": [ - { - "AirdropPointDeactivateDistance": 50, - "MinPlayersCountToSpawnAirdrop": 6, - "PlaneAirdropChance": 0.25, - "PlaneAirdropCooldownMax": 800, - "PlaneAirdropCooldownMin": 700, - "PlaneAirdropEnd": 1200, - "PlaneAirdropMax": 1, - "PlaneAirdropStartMax": 900, - "PlaneAirdropStartMin": 300, - "UnsuccessfulTryPenalty": 600 - } - ], - "Area": 0, - "AveragePlayTime": 25, - "AveragePlayerLevel": 15, - "Banners": [ - { - "id": "5803a58524597710ca36fcb2", - "pic": { - "path": "CONTENT/banners/banner_terragroup.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT/banners/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "64c0ad6af99768b777048f4e", - "pic": { - "path": "CONTENT/banners/banner_emissary.jpg", - "rcid": "" - } - } - ], - "BossLocationSpawn": [ - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "0", - "BossEscortDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossName": "bossPartisan", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": true, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "PARTISAN_TRIGGER", - "TriggerName": "botEvent" - }, - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "2", - "BossEscortDifficult": "normal", - "BossEscortType": "exUsec", - "BossName": "bossKnight", - "BossPlayer": false, - "BossZone": "ZoneScavBase2", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": true, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": [ - { - "BossEscortAmount": "1", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerBigPipe" - }, - { - "BossEscortAmount": "1", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerBirdEye" - }, - { - "BossEscortAmount": "0", - "BossEscortDifficult": [ - "normal" - ], - "BossEscortType": "followerGluharScout" - } - ], - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 30, - "BossDifficult": "normal", - "BossEscortAmount": "2", - "BossEscortDifficult": "normal", - "BossEscortType": "followerKojaniy", - "BossName": "bossKojaniy", - "BossPlayer": false, - "BossZone": "ZoneWoodCutter", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 15, - "BossDifficult": "normal", - "BossEscortAmount": "4", - "BossEscortDifficult": "normal", - "BossEscortType": "sectantWarrior", - "BossName": "sectantPriest", - "BossPlayer": false, - "BossZone": "ZoneMiniHouse,ZoneBrokenVill", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "regular", - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcUSEC", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,2,2,2,1,1,1,1,1,0,2", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 50, - "BossDifficult": "normal", - "BossEscortAmount": "0,0,2,2,2,1,1,1,1,1,0,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcBEAR", - "BossPlayer": false, - "BossZone": "", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 75, - "BossDifficult": "normal", - "BossEscortAmount": "0,1,2", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBEAR", - "BossName": "pmcUSEC", - "BossPlayer": false, - "BossZone": "ZoneBigRocks", - "Delay": 0, - "DependKarma": false, - "DependKarmaPVE": false, - "ForceSpawn": false, - "IgnoreMaxBots": true, - "RandomTimeSpawn": false, - "SpawnMode": [ - "pve" - ], - "Supports": null, - "Time": -1, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 5, - "BossDifficult": "normal", - "BossEscortAmount": "3,4", - "BossEscortDifficult": "normal", - "BossEscortType": "arenaFighterEvent", - "BossName": "arenaFighterEvent", - "BossPlayer": false, - "BossZone": "ZoneMiniHouse,ZoneClearVill,ZoneRoad,ZoneBrokenVill,ZoneScavBase2", - "RandomTimeSpawn": false, - "Supports": [], - "Time": -1 - } - ], - "BotAssault": 80, - "BotEasy": 10, - "BotHard": 40, - "BotImpossible": 0, - "BotLocationModifier": { - "AccuracySpeed": 1, - "AdditionalHostilitySettings": [ - { - "AlwaysEnemies": [ - "pmcBot", - "exUsec", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar", - "bossKnight" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 75, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcBEAR", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcUSEC" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 90, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - }, - { - "AlwaysEnemies": [ - "pmcBot", - "bossBully", - "bossBoar", - "bossTagilla", - "bossKilla", - "bossKojaniy", - "bossSanitar", - "bossKolontay", - "bossGluhar" - ], - "AlwaysFriends": [ - "bossZryachiy", - "followerZryachiy", - "peacefullZryachiyEvent", - "ravangeZryachiyEvent", - "gifter" - ], - "BearEnemyChance": 90, - "BearPlayerBehaviour": "ChancedEnemies", - "BotRole": "pmcUSEC", - "ChancedEnemies": [ - { - "EnemyChance": 70, - "Role": "assault" - }, - { - "EnemyChance": 70, - "Role": "marksman" - }, - { - "EnemyChance": 75, - "Role": "pmcBEAR" - }, - { - "EnemyChance": 15, - "Role": "exUsec" - }, - { - "EnemyChance": 15, - "Role": "bossKnight" - } - ], - "Neutral": [ - "sectantPriest", - "sectantWarrior" - ], - "SavagePlayerBehaviour": "Warn", - "UsecEnemyChance": 75, - "UsecPlayerBehaviour": "ChancedEnemies", - "Warn": [ - "sectactPriestEvent" - ] - } - ], - "DistToActivate": 265, - "DistToActivatePvE": 265, - "DistToPersueAxemanCoef": 1.1, - "DistToSleep": 300, - "DistToSleepPvE": 300, - "GainSight": 1, - "KhorovodChance": 0, - "MagnetPower": 44, - "MarksmanAccuratyCoef": 1, - "MaxExfiltrationTime": 1800, - "MinExfiltrationTime": 1200, - "Scattering": 1, - "VisibleDistance": 1 - }, - "BotMarksman": 20, - "BotMax": 17, - "BotMaxPlayer": 9, - "BotMaxPvE": 30, - "BotMaxTimePlayer": 1000, - "BotNormal": 50, - "BotSpawnCountStep": 4, - "BotSpawnPeriodCheck": 15, - "BotSpawnTimeOffMax": 30, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOnMax": 320, - "BotSpawnTimeOnMin": 260, - "BotStart": 10, - "BotStartPlayer": 200, - "BotStop": 1900, - "Description": "The Priozersk Natural Reserve was recently included into the list of state-protected wildlife reserves of the North-Western Federal District.", - "DisabledForScav": false, - "DisabledScavExits": "", - "EnableCoop": true, - "Enabled": true, - "EscapeTimeLimit": 40, - "EscapeTimeLimitCoop": 30, - "EscapeTimeLimitPVE": 40, - "Events": { - "Halloween2024": { - "CrowdAttackBlockRadius": 100, - "CrowdAttackSpawnParams": [ - { - "Difficulty": "easy", - "Role": "infectedAssault", - "Weight": 30 - }, - { - "Difficulty": "normal", - "Role": "infectedAssault", - "Weight": 110 - }, - { - "Difficulty": "hard", - "Role": "infectedAssault", - "Weight": 40 - }, - { - "Difficulty": "easy", - "Role": "infectedPmc", - "Weight": 15 - }, - { - "Difficulty": "normal", - "Role": "infectedPmc", - "Weight": 55 - }, - { - "Difficulty": "hard", - "Role": "infectedPmc", - "Weight": 20 - }, - { - "Difficulty": "easy", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedCivil", - "Weight": 0 - }, - { - "Difficulty": "easy", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "normal", - "Role": "infectedLaborant", - "Weight": 0 - }, - { - "Difficulty": "hard", - "Role": "infectedLaborant", - "Weight": 0 - } - ], - "CrowdCooldownPerPlayerSec": 300, - "CrowdsLimit": 2, - "InfectedLookCoeff": 2, - "InfectionPercentage": 0, - "MaxCrowdAttackSpawnLimit": 18, - "MinInfectionPercentage": 0, - "MinSpawnDistToPlayer": 50, - "TargetPointSearchRadiusLimit": 200, - "ZombieCallDeltaRadius": 20, - "ZombieCallPeriodSec": 1, - "ZombieCallRadiusLimit": 200, - "ZombieMultiplier": 5 - } - }, - "ForceOnlineRaidInPVE": false, - "GenerateLocalLootCache": true, - "GlobalContainerChanceModifier": 1, - "GlobalLootChanceModifier": 0.4, - "GlobalLootChanceModifierPvE": 0.95, - "IconX": 460, - "IconY": 660, - "Id": "Woods", - "Insurance": true, - "IsSecret": false, - "Locked": false, - "Loot": [], - "MatchMakerMinPlayersByWaitTime": [ - { - "minPlayers": 7, - "time": 60 - }, - { - "minPlayers": 6, - "time": 70 - }, - { - "minPlayers": 5, - "time": 120 - }, - { - "minPlayers": 4, - "time": 180 - }, - { - "minPlayers": 3, - "time": 250 - }, - { - "minPlayers": 2, - "time": 330 - }, - { - "minPlayers": 1, - "time": 420 - } - ], - "MaxBotPerZone": 4, - "MaxCoopGroup": 14, - "MaxDistToFreePoint": 200, - "MaxPlayers": 14, - "MinDistToExitPoint": 30, - "MinDistToFreePoint": 50, - "MinMaxBots": [], - "MinPlayerLvlAccessKeys": 0, - "MinPlayers": 10, - "Name": "Woods", - "NewSpawn": true, - "NewSpawnForPlayers": true, - "NonWaveGroupScenario": { - "Chance": 50, - "Enabled": true, - "MaxToBeGroup": 3, - "MinToBeGroup": 2 - }, - "OcculsionCullingEnabled": false, - "OfflineNewSpawn": true, - "OfflineOldSpawn": true, - "OldSpawn": true, - "OpenZones": "ZoneClearVill,ZoneHouse,ZoneScavBase2,ZoneHouse,ZoneWoodCutter,ZoneBigRocks,ZoneRoad,ZoneHighRocks,ZoneMiniHouse,ZoneBigRocks", - "PlayersRequestCount": -1, - "PmcMaxPlayersInGroup": 5, - "Preview": { - "path": "", - "rcid": "" - }, - "RequiredPlayerLevelMax": 100, - "RequiredPlayerLevelMin": 0, - "Rules": "Normal", - "SafeLocation": false, - "ScavMaxPlayersInGroup": 4, - "Scene": { - "path": "maps/woods_preset.bundle", - "rcid": "woods.scenespreset.asset" - }, - "SpawnPointParams": [ - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "007293cc-b2a3-4b23-a094-f0b2c77535e0", - "Infiltration": "House", - "Position": { - "x": 370.670044, - "y": 17.26, - "z": -595.6699 - }, - "Rotation": 268.42, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "01c489a9-a17c-45e0-9c42-803173881056", - "Infiltration": "House", - "Position": { - "x": 487.358643, - "y": -18.7443466, - "z": 331.25 - }, - "Rotation": 229.460022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "027273fa-04bc-48d1-acfb-74f008bb196c", - "Infiltration": "Old Station", - "Position": { - "x": 365.905029, - "y": 13.94, - "z": -698.06604 - }, - "Rotation": 325.167175, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneStoneBunker", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "032dd801-3804-49ed-b9ea-6deee2001c19", - "Infiltration": "", - "Position": { - "x": -275.781982, - "y": 7.47265148, - "z": -417.592 - }, - "Rotation": 5.71200657, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneWoodCutter", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 4, - "Id": "03507eb9-59cd-4b95-b257-d42b6dc5f204", - "Infiltration": "", - "Position": { - "x": 94.85, - "y": 6.81406, - "z": -203.72 - }, - "Rotation": 283.99, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "046ca3c7-3af3-4557-a5c3-c98262ced461", - "Infiltration": "Old Station", - "Position": { - "x": -275.98, - "y": -1.08744955, - "z": 334.3 - }, - "Rotation": 213.64, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "04ae9885-e3b2-4713-bd7c-36f59351c47f", - "Infiltration": "House", - "Position": { - "x": 410.780029, - "y": -5.35236, - "z": 13.3900146 - }, - "Rotation": 263.1, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneMiniHouse", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 171 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "057ba3ae-3fb0-4517-8f7c-a9520fc87072", - "Infiltration": "", - "Position": { - "x": 375.81, - "y": -1.05202746, - "z": -115.25 - }, - "Rotation": 310.84, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0629d023-ea80-45cb-8376-9ea211e740f9", - "Infiltration": "Old Station", - "Position": { - "x": -63.1000061, - "y": 9.763999, - "z": -587.319946 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "06f65382-5ecf-4852-9020-5b37c432331f", - "Infiltration": "Old Station", - "Position": { - "x": -420.16, - "y": 12.174, - "z": -509.619965 - }, - "Rotation": 14.210001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0739b113-2c10-47b2-b86c-6674f6ce92dd", - "Infiltration": "Old Station", - "Position": { - "x": -277.37, - "y": -1.50234556, - "z": 329.74 - }, - "Rotation": 200.38, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "078c67f6-5e64-4c48-b9b2-5e6c1042fe83", - "Infiltration": "House", - "Position": { - "x": 368.650024, - "y": -1.62831867, - "z": -81.73999 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "08189e53-2a0a-4cf8-830e-75aa54e1bab5", - "Infiltration": "Old Station", - "Position": { - "x": -522.77, - "y": -2.59466934, - "z": 218.57 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0ba5301a-df26-49b5-8ee5-61bd0c1bd808", - "Infiltration": "Old Station", - "Position": { - "x": -615, - "y": 14.66, - "z": -328.990021 - }, - "Rotation": 44.72, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneWoodCutter", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 4, - "Id": "0bb21a14-ace2-4f7e-b634-a43b86b05358", - "Infiltration": "", - "Position": { - "x": -63.79, - "y": 19.15763, - "z": -233.02002 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0ced4119-d0aa-481e-9c45-e93fc820a41f", - "Infiltration": "Old Station", - "Position": { - "x": -519.45, - "y": 12.6323347, - "z": -156.300018 - }, - "Rotation": 125.579994, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneMiniHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 145 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "0d2d4dbb-f650-4ed1-bbea-a029541a3f66", - "Infiltration": "", - "Position": { - "x": 348.79, - "y": -0.9134421, - "z": -155.92 - }, - "Rotation": 335.01, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0dd1d014-6642-4a75-a496-242dd44a855b", - "Infiltration": "House", - "Position": { - "x": 518.410034, - "y": -20.94, - "z": 264.3 - }, - "Rotation": 216.79, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneClearVill", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "0f3f06e1-f010-4d02-a126-b97a98aedd7b", - "Infiltration": "", - "Position": { - "x": -517.32, - "y": 14.9372711, - "z": -365.990021 - }, - "Rotation": 106.22, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "100d945d-1da3-434e-9a45-5d07c64bc296", - "Infiltration": "Old Station", - "Position": { - "x": -420.16, - "y": 11.2839994, - "z": -519.410034 - }, - "Rotation": 14.210001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "1208bd00-24de-4947-810a-74b4a79d852f", - "Infiltration": "", - "Position": { - "x": -174.909973, - "y": 13.6224213, - "z": -649.87 - }, - "Rotation": 62.2, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "12565a8d-e7c3-44fb-b7f9-4085b98bc50f", - "Infiltration": "", - "Position": { - "x": -538.41, - "y": 7.11805344, - "z": 157.71 - }, - "Rotation": 76.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "158e0a94-64fb-4555-afa0-90109713db91", - "Infiltration": "Old Station", - "Position": { - "x": -265.82, - "y": 10.58, - "z": -632.22 - }, - "Rotation": 14.210001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneStoneBunker", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "172b6f37-9e66-4e07-857a-35004ce753b1", - "Infiltration": "", - "Position": { - "x": -312.915039, - "y": 14.3026514, - "z": -431.189 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "17d3fee1-d9bb-4950-80bd-44cd33b12e50", - "Infiltration": "House", - "Position": { - "x": 231.43, - "y": 26.17, - "z": -314.429962 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1804b780-85a9-4eff-a465-82e2fbb88f0c", - "Infiltration": "Old Station", - "Position": { - "x": -354.73, - "y": 0.950922132, - "z": 239.63 - }, - "Rotation": 129.42, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneWoodCutter", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 10, - "DelayToCanSpawnSec": 4, - "Id": "1912ece1-fa7f-4802-8788-d025cbb8db55", - "Infiltration": "", - "Position": { - "x": 90.27, - "y": -15.8248549, - "z": 116.15 - }, - "Rotation": 190.98, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "191b6c5a-0fb7-40b2-95b4-3a33397eb872", - "Infiltration": "Old Station", - "Position": { - "x": -54.1099854, - "y": 8.883999, - "z": -579.439941 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneClearVill", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "19d5d7e7-53f2-496f-bdd7-c62dd40e16f5", - "Infiltration": "", - "Position": { - "x": -439.399963, - "y": 15.3167744, - "z": -334.679962 - }, - "Rotation": 287.409973, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneHighRocks", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 150 - } - }, - "CorePointId": 6, - "DelayToCanSpawnSec": 1700, - "Id": "19e5a0cc-239b-4d3b-a4cc-1e5cfd71f61d", - "Infiltration": "", - "Position": { - "x": -140.8, - "y": 61.4642448, - "z": -206.84 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneClearVill", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "1a189d11-f56f-4d44-ab00-eecdf630b805", - "Infiltration": "", - "Position": { - "x": -416.2, - "y": 12.9368525, - "z": -468.799957 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneUsecBase", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 4, - "Id": "1a6dfbac-9ca3-42e6-b8bd-8dc5ecc047bd", - "Infiltration": "", - "Position": { - "x": 299.011, - "y": 23.1686516, - "z": -457.402 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1aaa922d-7f31-433a-8457-075f9886600b", - "Infiltration": "Old Station", - "Position": { - "x": -26.996, - "y": 22.998, - "z": -308.717 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1b3e5b5b-a6cc-4702-8b79-d00183af37b6", - "Infiltration": "House", - "Position": { - "x": 370.959961, - "y": -1.82308924, - "z": -73.28 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1baafdd1-e250-453c-94b3-f842c87f4b8a", - "Infiltration": "Old Station", - "Position": { - "x": -23.294, - "y": 22.997, - "z": -308.203 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1c102540-4777-4cd4-bb36-b28d7b0b9bf9", - "Infiltration": "House", - "Position": { - "x": 443.007935, - "y": -20.52517, - "z": 364.0982 - }, - "Rotation": 228.71, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1c6ea7b6-4a93-4a2a-95d0-90c980b00ffb", - "Infiltration": "Old Station", - "Position": { - "x": -518.69, - "y": 7.2753315, - "z": 145.43 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1dfb41ff-4233-47ba-8db1-054dd7923906", - "Infiltration": "Old Station", - "Position": { - "x": -331.468018, - "y": 18.5271835, - "z": -138.725983 - }, - "Rotation": 33.6, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "20d815ea-be95-4cab-bdc7-098d88d6578c", - "Infiltration": "", - "Position": { - "x": -130.029968, - "y": 9.618751, - "z": -726.5499 - }, - "Rotation": 29.94, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "20ee24e5-1db9-4191-9ba5-444ff4207f2b", - "Infiltration": "House", - "Position": { - "x": 366.900024, - "y": 18.19, - "z": -598.199951 - }, - "Rotation": 268.42, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "219c81c4-5e06-4abe-b971-61728edafde9", - "Infiltration": "House", - "Position": { - "x": 226.43, - "y": -8.698159, - "z": 197.5 - }, - "Rotation": 193.25, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "21c4f855-6ada-4784-aec5-797f78732ed8", - "Infiltration": "House", - "Position": { - "x": 282.47, - "y": -1.44, - "z": -62.81 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneHouse", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 4, - "Id": "24591071-69d8-4756-83cc-c3e4be5fb086", - "Infiltration": "", - "Position": { - "x": 318.82, - "y": -8.43767452, - "z": 352.05 - }, - "Rotation": 151.22, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2533a3ec-8812-4546-9e44-d19ae093ef6b", - "Infiltration": "House", - "Position": { - "x": 230.143, - "y": 26.9, - "z": -320.142 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 4, - "Id": "255e4ae3-d1bd-4814-b2c1-cfe5f9f72c66", - "Infiltration": "", - "Position": { - "x": 463.69, - "y": -12.1854525, - "z": 115.73 - }, - "Rotation": 282.6, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneScavBase2", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "262b8df9-e07d-4b84-b694-58f0b6b6036b", - "Infiltration": "", - "Position": { - "x": 101.130005, - "y": 15.5523014, - "z": -761.98 - }, - "Rotation": 165.36, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2685c5c9-9bde-40c1-bbc2-3a0f3b024106", - "Infiltration": "Old Station", - "Position": { - "x": 61.22003, - "y": 9.033999, - "z": -657.75 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "275dba7d-7524-4588-9426-45e7f925a08a", - "Infiltration": "", - "Position": { - "x": -203.55, - "y": 1.13691711, - "z": 417.31 - }, - "Rotation": 157.57, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "27af1a16-c5d5-40df-867c-b02e875319fc", - "Infiltration": "", - "Position": { - "x": -171.68, - "y": 14.8065891, - "z": -617.699951 - }, - "Rotation": 120.210007, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "280011ca-3526-431d-af3d-67fb6312ee98", - "Infiltration": "House", - "Position": { - "x": 418.410034, - "y": -6.196, - "z": 14.2999878 - }, - "Rotation": 262.49, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2915d180-1de7-42a6-a6da-1cf2de15e78c", - "Infiltration": "House", - "Position": { - "x": 465.959961, - "y": -15.0385733, - "z": 176.27 - }, - "Rotation": 239.859985, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "2a31cc36-9d1e-47a6-a492-f8f05e9511f1", - "Infiltration": "", - "Position": { - "x": -155.220032, - "y": 18.26294, - "z": -620.36 - }, - "Rotation": 120.210007, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2b2b5b1e-0bfd-4316-af38-bbefa25ac3b2", - "Infiltration": "House", - "Position": { - "x": 280.780029, - "y": -11.9072313, - "z": 319.279022 - }, - "Rotation": 255.300018, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "2c2c2b74-5af6-4a64-8902-4b1648fab13f", - "Infiltration": "", - "Position": { - "x": -152.96, - "y": 0.37342453, - "z": 434.83 - }, - "Rotation": 218.52, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "2c407662-ea7d-4069-b555-cad2e5ec6716", - "Infiltration": "", - "Position": { - "x": -174.460022, - "y": 9.385831, - "z": -713.929932 - }, - "Rotation": 29.94, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2d7f7e41-7f75-4d8f-be43-b025bb5078b3", - "Infiltration": "Old Station", - "Position": { - "x": -525.07, - "y": -2.56085658, - "z": 216 - }, - "Rotation": 261.12, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2e52ceb4-5491-4a44-bfe4-a658f87271ff", - "Infiltration": "Old Station", - "Position": { - "x": -539.87, - "y": -1.18963408, - "z": 294.67 - }, - "Rotation": 68.9, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "2e5a6aa2-5b59-4f79-a30e-c7cfeef35138", - "Infiltration": "", - "Position": { - "x": -86.8900146, - "y": 7.94821644, - "z": -752.65 - }, - "Rotation": 29.94, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBigRocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "30578df3-b13d-4b6e-b6d5-0005a0e9c9c3", - "Infiltration": "", - "Position": { - "x": -103.43, - "y": 23.2189789, - "z": -214.55 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneWoodCutter", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 4, - "Id": "31291952-9354-42d4-a38e-8857ae10117b", - "Infiltration": "", - "Position": { - "x": 25.57, - "y": 11.3200827, - "z": -226.610016 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "319279a1-ec16-4d6e-8c87-3382938823f7", - "Infiltration": "Old Station", - "Position": { - "x": -30.652, - "y": 23.19, - "z": -306.602 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "31d3dd12-a1c0-4e5f-a840-ccad3ad9f472", - "Infiltration": "House", - "Position": { - "x": 466.76, - "y": -14.9067125, - "z": 174.25 - }, - "Rotation": 239.859985, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3245f7f0-21a2-457f-ae32-562f7955d4ae", - "Infiltration": "Old Station", - "Position": { - "x": -92.95001, - "y": -1.12518787, - "z": 385.31 - }, - "Rotation": 224.32, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneScavBase2", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "32fe4cb8-82bc-43b2-8796-7fa31dde15c8", - "Infiltration": "", - "Position": { - "x": 103.950012, - "y": 17.6159382, - "z": -757.72 - }, - "Rotation": 165.36, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneClearVill", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "334671d7-7451-4b42-afd8-eb268405696f", - "Infiltration": "", - "Position": { - "x": -414.220032, - "y": 16.6903229, - "z": -362.91 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "342bd347-016e-485a-b0b1-f573b8c31b21", - "Infiltration": "House", - "Position": { - "x": 388.49, - "y": 13.16, - "z": -407.26004 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3463a539-969d-4c3a-aba7-b350a07a6bc5", - "Infiltration": "Old Station", - "Position": { - "x": -492.41, - "y": 20.5913486, - "z": -50.23001 - }, - "Rotation": 53.04, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneStoneBunker", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "3494860c-fa14-4c78-a9eb-db07eb4bdd0e", - "Infiltration": "", - "Position": { - "x": -266.508, - "y": 6.881651, - "z": -406.316 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "34bec394-d71c-4044-9627-479a1f144060", - "Infiltration": "", - "Position": { - "x": -532.56, - "y": -0.4881611, - "z": 254.2 - }, - "Rotation": 83.36, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneScavBase2", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "35be8146-9b37-4b8b-8b7d-9a7e521ec1c7", - "Infiltration": "", - "Position": { - "x": 157.48999, - "y": 24.37865, - "z": -690.61 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "366cec0b-e96a-4706-a8c3-2fada6801993", - "Infiltration": "Old Station", - "Position": { - "x": -523.6, - "y": 9.853999, - "z": 93.04001 - }, - "Rotation": 130.67, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "37535e74-a10a-40c7-b8cf-1416a95b48ba", - "Infiltration": "", - "Position": { - "x": -155.17, - "y": -2.07000065, - "z": 181.17 - }, - "Rotation": 212.4, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "37c509be-831c-4525-9559-1fd711478a21", - "Infiltration": "", - "Position": { - "x": -130.62, - "y": 13.0453444, - "z": -623.1699 - }, - "Rotation": 120.210007, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "38280e0c-af89-4081-ab01-5f1494074317", - "Infiltration": "House", - "Position": { - "x": 464.75, - "y": -14.7679729, - "z": 174.27 - }, - "Rotation": 239.859985, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "38481684-83d2-4a25-98d9-e8fc9fb925c4", - "Infiltration": "Old Station", - "Position": { - "x": -330.93, - "y": 20.0108814, - "z": -142.31 - }, - "Rotation": 33.42, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "38df9752-76f3-4206-a46b-d279db55aee3", - "Infiltration": "Old Station", - "Position": { - "x": -512.942, - "y": 12.0778894, - "z": -149.892 - }, - "Rotation": 125.579994, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3977d085-4fa2-45dd-a341-ddb0fa55c06d", - "Infiltration": "Old Station", - "Position": { - "x": -408.96, - "y": 12.584, - "z": -513.01 - }, - "Rotation": 14.210001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 4, - "Id": "3991850d-4fb1-43e7-bb26-1d4bc86dc460", - "Infiltration": "", - "Position": { - "x": 442.53, - "y": -17.47189, - "z": 261.18 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "3a3b94ca-4e46-4d97-98be-cf152b5729ea", - "Infiltration": "", - "Position": { - "x": -526.84, - "y": -2.522231, - "z": 216.27 - }, - "Rotation": 76.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "3c343ce9-5222-4764-8719-6b9109335993", - "Infiltration": "", - "Position": { - "x": -158.7, - "y": -4.339999, - "z": 296.5 - }, - "Rotation": 212.4, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3d17ca8d-3e08-498c-8bcd-01f909c91c19", - "Infiltration": "Old Station", - "Position": { - "x": -361.25, - "y": 1.0406611, - "z": 237.99 - }, - "Rotation": 129.42, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3e8f83ba-7706-49ac-b19c-20f90da1309a", - "Infiltration": "Old Station", - "Position": { - "x": -256.11, - "y": 27.93854, - "z": -203.92099 - }, - "Rotation": 9.03, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneWoodCutter", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 65 - } - }, - "CorePointId": 10, - "DelayToCanSpawnSec": 4, - "Id": "3fb18f94-b71e-4dd0-b771-03a98275f496", - "Infiltration": "", - "Position": { - "x": 63.2168045, - "y": -7.55134869, - "z": 35.2158127 - }, - "Rotation": 190.98, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneClearVill", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "40b4cb72-8a28-4514-8c86-b2330d05a72c", - "Infiltration": "", - "Position": { - "x": -413.12, - "y": 16.0042686, - "z": -350.740021 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "410307e8-cd43-45b4-8fb7-45a576f4f293", - "Infiltration": "Old Station", - "Position": { - "x": -611.92, - "y": 14.7, - "z": -331.79 - }, - "Rotation": 44.72, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "42e95473-0b1f-4351-b137-77b9e351479f", - "Infiltration": "", - "Position": { - "x": -109.97, - "y": -12.87, - "z": 240.99 - }, - "Rotation": 212.4, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "43598be9-9042-4e06-8ee9-11a3d346d570", - "Infiltration": "Old Station", - "Position": { - "x": -63.6699829, - "y": 9.714, - "z": -581.03 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneClearVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "46eb8ea0-4c92-4551-893e-7000f43fdb37", - "Infiltration": "", - "Position": { - "x": -544.32, - "y": 11.0081148, - "z": -438.939972 - }, - "Rotation": 72.46, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneScavBase2", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "4aca5e29-3ce4-409e-8bb1-43883f8f1cf3", - "Infiltration": "", - "Position": { - "x": 135.88, - "y": 8.4578495, - "z": -664.99 - }, - "Rotation": 165.36, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneStoneBunker", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "4bc6a11c-a9c7-4224-a1a4-3757a25459a5", - "Infiltration": "", - "Position": { - "x": -308.169983, - "y": 13.8386507, - "z": -411.28 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4bef69e6-18dd-4c33-8b74-39eba90908cd", - "Infiltration": "Old Station", - "Position": { - "x": -256.58, - "y": 10.61, - "z": -637.5499 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneUsecBase", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 4, - "Id": "4d66b2d2-7c6c-4681-ac43-87e46751f1f6", - "Infiltration": "", - "Position": { - "x": 311.259979, - "y": 16.8186512, - "z": -538.23 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4e02d667-c158-421c-9dba-2d5465895a05", - "Infiltration": "Old Station", - "Position": { - "x": -223.47, - "y": 3.73, - "z": 99.92 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4ed8f2c4-7b26-473c-b6ee-1489a374285f", - "Infiltration": "House", - "Position": { - "x": 414.25, - "y": -5.71355152, - "z": 12.9500122 - }, - "Rotation": 268.46, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "506b435f-09b7-4abe-9da4-47e0f15632c6", - "Infiltration": "Old Station", - "Position": { - "x": -254.19, - "y": 28.1779785, - "z": -207.9 - }, - "Rotation": 25.38, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5074c052-55d3-4e9f-b8aa-7e29555f79f7", - "Infiltration": "House", - "Position": { - "x": 279.77002, - "y": -12.3185291, - "z": 314.4 - }, - "Rotation": 242.98999, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneWoodCutter", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 80 - } - }, - "CorePointId": 10, - "DelayToCanSpawnSec": 4, - "Id": "52226f32-afb0-4e86-abfc-d2575d413f6d", - "Infiltration": "", - "Position": { - "x": 87.7668, - "y": -15.89571, - "z": 114.385811 - }, - "Rotation": 190.98, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "52bd721f-80ea-4c6d-ae97-af9379180a91", - "Infiltration": "House", - "Position": { - "x": 418.01, - "y": -6.10511827, - "z": 11.9400024 - }, - "Rotation": 256.93, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "53bc3938-f77c-413f-acd6-9d453925f152", - "Infiltration": "Old Station", - "Position": { - "x": -334.61, - "y": 20.316, - "z": -140.883 - }, - "Rotation": 51.83, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneStoneBunker", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "56185e61-f949-4f55-9ebf-00ce210b1378", - "Infiltration": "", - "Position": { - "x": -272.866028, - "y": 23.9226513, - "z": -497.731 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "57b4786d-ee61-4c7f-b6ef-94467e39a3cf", - "Infiltration": "Old Station", - "Position": { - "x": -260.32, - "y": 11.27, - "z": -631.89 - }, - "Rotation": 14.210001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "58351d4d-3b8e-4ea5-8453-9c67c6e8964d", - "Infiltration": "Old Station", - "Position": { - "x": -525.09, - "y": -2.59466934, - "z": 218.24 - }, - "Rotation": 295.64, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "583d3cc8-2a34-461c-9ec7-0376e23f4e72", - "Infiltration": "House", - "Position": { - "x": 283.31, - "y": -0.82, - "z": -48.99 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "597eb4f4-df3d-45e6-8742-25a8198390bf", - "Infiltration": "", - "Position": { - "x": -108.480011, - "y": 10.130621, - "z": -609.9 - }, - "Rotation": 152.43, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5beb21e5-df5f-4db0-b607-202cb7a62ecf", - "Infiltration": "Old Station", - "Position": { - "x": 59.18402, - "y": 8.883999, - "z": -659.509033 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneScavBase2", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 45 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "5d297c94-555f-4489-9f9e-71f340575be3", - "Infiltration": "", - "Position": { - "x": 280.36, - "y": 8.309144, - "z": -674.51 - }, - "Rotation": 238.74, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneStoneBunker", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "5d2e328c-b4dc-4de5-93b8-35a2755459eb", - "Infiltration": "", - "Position": { - "x": -267.229, - "y": 24.6826515, - "z": -489.117035 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5e748beb-9aae-41f8-be21-500441518972", - "Infiltration": "Old Station", - "Position": { - "x": -90.1000061, - "y": -0.499712944, - "z": 377.36 - }, - "Rotation": 224.32, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneHouse", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 4, - "Id": "6091f54e-d9a5-43fe-a773-b2445ff82a8e", - "Infiltration": "", - "Position": { - "x": 443.48, - "y": -11.4372435, - "z": 84.1300049 - }, - "Rotation": 295.57, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneMiniHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 155 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "64b54bbb-7bc0-42ec-b8aa-9372870e39bf", - "Infiltration": "", - "Position": { - "x": 187.1, - "y": 3.37974882, - "z": -149.559982 - }, - "Rotation": 323.97998, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneScavBase2", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "64bc1359-c4af-40fd-9590-e464a049a894", - "Infiltration": "", - "Position": { - "x": 269.67, - "y": 17.0124722, - "z": -758.63 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "65756485-8a47-49c0-9d70-6452e3b32f7c", - "Infiltration": "", - "Position": { - "x": 9.660004, - "y": 15.707283, - "z": -780.569946 - }, - "Rotation": 10.29, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6767b1b7-da32-4b62-90f0-0d44712a642b", - "Infiltration": "Old Station", - "Position": { - "x": 370.773, - "y": 13.9, - "z": -700.119 - }, - "Rotation": 323.3954, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "69378f13-ba17-464e-8875-618e6219d7e5", - "Infiltration": "Old Station", - "Position": { - "x": -28.461, - "y": 22.91, - "z": -302.726 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "69a4318c-7522-4738-877a-099b3733ae23", - "Infiltration": "House", - "Position": { - "x": 369.829956, - "y": 17.62, - "z": -597.53 - }, - "Rotation": 268.42, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "69c6da14-8dae-4c58-a826-59df5093a19d", - "Infiltration": "Old Station", - "Position": { - "x": -359.34, - "y": 0.9434962, - "z": 236.44 - }, - "Rotation": 129.42, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6aef3e62-3a74-4d9b-a168-d3520f740ba2", - "Infiltration": "Old Station", - "Position": { - "x": -413.22, - "y": 11.7039995, - "z": -522.429932 - }, - "Rotation": 14.210001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "6b20ac35-6306-4c28-b1bb-a489aa4d9852", - "Infiltration": "", - "Position": { - "x": -528.91, - "y": 2.366396, - "z": 233.67 - }, - "Rotation": 76.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6bd2a586-6792-435c-bad3-9c96e140ca7d", - "Infiltration": "House", - "Position": { - "x": 441.848938, - "y": -20.5251675, - "z": 366.63916 - }, - "Rotation": 240.480011, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "6d19b6a0-d1d5-4fb2-879e-4a25e8858232", - "Infiltration": "", - "Position": { - "x": -231.18, - "y": 1.145359, - "z": 400.86 - }, - "Rotation": 157.57, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneUsecBase", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 4, - "Id": "6df80f13-0e3c-4864-8e19-56a0e4dbf589", - "Infiltration": "", - "Position": { - "x": 310.521, - "y": 22.96865, - "z": -523.037964 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneClearVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 4, - "Id": "6dfc97f8-d2e3-4c7f-95e3-4527540e817d", - "Infiltration": "", - "Position": { - "x": -507, - "y": 24.63865, - "z": -276.79 - }, - "Rotation": 287.409973, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "702b7612-f1a2-4531-8090-aca235a70c7d", - "Infiltration": "House", - "Position": { - "x": 283.31, - "y": -0.82, - "z": -53.2 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "70885532-6518-405f-aeb0-ee7a7f10ea46", - "Infiltration": "Old Station", - "Position": { - "x": -491.46, - "y": 20.58425, - "z": -45.23001 - }, - "Rotation": 53.04, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7149b906-da38-46dd-8fc3-6b4d8aca5ad8", - "Infiltration": "House", - "Position": { - "x": 443.87, - "y": -20.4460011, - "z": 362.51 - }, - "Rotation": 230.000015, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "724edbcc-6b53-4a10-ad37-cbe56cd0ab2d", - "Infiltration": "", - "Position": { - "x": -52.23999, - "y": 7.8534317, - "z": -763.9 - }, - "Rotation": 29.94, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneStoneBunker", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 20 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "72ddb177-424b-476d-bf42-6ed7fe8d955a", - "Infiltration": "", - "Position": { - "x": -271.730042, - "y": 7.44465065, - "z": -418.514984 - }, - "Rotation": 5.71200657, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneUsecBase", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 4, - "Id": "75d93744-fa1f-4578-9bd1-ab2f7c5b2a3f", - "Infiltration": "", - "Position": { - "x": 312.039978, - "y": 22.96865, - "z": -487.319977 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "75fe2cc6-b21e-437d-a629-1b56a98d37b3", - "Infiltration": "Old Station", - "Position": { - "x": -229.05, - "y": 3.77, - "z": 105.45 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "76582ea6-095f-494d-83b8-c9335ba3f14f", - "Infiltration": "Old Station", - "Position": { - "x": 59.8300171, - "y": 8.794, - "z": -654.540039 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "7659728c-89ba-4cc6-9746-a9d64252c068", - "Infiltration": "", - "Position": { - "x": -171.64, - "y": 1.03652763, - "z": 432.26 - }, - "Rotation": 169.16, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "77c55b59-7bb5-4e16-96e5-68e6655ac439", - "Infiltration": "", - "Position": { - "x": 366.78, - "y": 1.09509182, - "z": 0.550003052 - }, - "Rotation": 295.57, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "77d9c02e-6167-4823-97b0-f7de30a9a95b", - "Infiltration": "House", - "Position": { - "x": 368.599976, - "y": 16.83, - "z": -588.059937 - }, - "Rotation": 268.42, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "78682e7d-3f65-4b8d-a33c-a6defd5070d8", - "Infiltration": "House", - "Position": { - "x": 418.45, - "y": -6.083662, - "z": 9.01001 - }, - "Rotation": 276.02, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBigRocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "78ccf1f5-0e41-4e62-97ed-d23830a8f053", - "Infiltration": "", - "Position": { - "x": -199.91, - "y": 33.53726, - "z": -193.46 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "794c2ad7-29fa-4faf-8bcf-649c8925444a", - "Infiltration": "Old Station", - "Position": { - "x": 367.12, - "y": 13.2439995, - "z": -703 - }, - "Rotation": 306.008484, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBigRocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "79f29915-48cb-4c15-bc9f-731d045ad6cd", - "Infiltration": "", - "Position": { - "x": -181.32, - "y": 34.0571442, - "z": -164.09 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7a929379-fe61-411a-87b8-aa1184e7f2b6", - "Infiltration": "Old Station", - "Position": { - "x": -540.68, - "y": -1.05729878, - "z": 297.02 - }, - "Rotation": 78.41, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneScavBase2", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "7bf663d3-4424-401a-b15a-2897ba1939ec", - "Infiltration": "", - "Position": { - "x": 281.7, - "y": 8.236985, - "z": -668.62 - }, - "Rotation": 238.74, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7c7544d9-4e2f-4fb4-b967-9136e4441a71", - "Infiltration": "Old Station", - "Position": { - "x": -273.26, - "y": -1.596011, - "z": 333.25 - }, - "Rotation": 195.7, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7d90e1b9-5aa1-4dcb-80ef-37ffcd141528", - "Infiltration": "Old Station", - "Position": { - "x": -615.8, - "y": 14.69, - "z": -333.949982 - }, - "Rotation": 66.96001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneStoneBunker", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "7f6b5546-a76b-4e24-8de5-bd3c1923d89b", - "Infiltration": "", - "Position": { - "x": -256.77002, - "y": 26.77865, - "z": -448.29 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7f756f8e-6458-4d82-9135-ef4cc7dbc861", - "Infiltration": "House", - "Position": { - "x": 283.38, - "y": -0.82, - "z": -45.99 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneClearVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "7fb51fcf-9c23-4661-b63b-cb24d6890db5", - "Infiltration": "", - "Position": { - "x": -561.09, - "y": 15.2086506, - "z": -355.310028 - }, - "Rotation": 287.409973, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "802d0076-1a65-4fcd-9fd7-ae20620d06cd", - "Infiltration": "Old Station", - "Position": { - "x": -252.109985, - "y": 27.04601, - "z": -205.009979 - }, - "Rotation": 18.05, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "812b6e88-b248-4050-ab3c-5557b7987b0f", - "Infiltration": "", - "Position": { - "x": -84.17999, - "y": 8.84712, - "z": -607.78 - }, - "Rotation": 181.14, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 4, - "Id": "81cd4f09-7616-4d57-ae6d-cc7b5dd17a18", - "Infiltration": "", - "Position": { - "x": 457.29, - "y": -10.9947557, - "z": 97.48999 - }, - "Rotation": 295.57, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "831704c9-39ca-4b9c-a23f-c1f4a05f326b", - "Infiltration": "Old Station", - "Position": { - "x": -334.02, - "y": 17.5681324, - "z": -136.199982 - }, - "Rotation": 47.6100044, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneStoneBunker", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "837436e1-5893-4567-9eba-71a199c5ef03", - "Infiltration": "", - "Position": { - "x": -317.18, - "y": 14.5686512, - "z": -429.819977 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "850f44fe-ea49-4c84-91b3-5f31c6b14c5f", - "Infiltration": "Old Station", - "Position": { - "x": -27, - "y": 22.94, - "z": -305.6 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneScavBase2", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "85278afc-3be8-4a9a-8d26-b2b06f5e160b", - "Infiltration": "", - "Position": { - "x": 280.46, - "y": 7.95858765, - "z": -665.38 - }, - "Rotation": 238.74, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneWoodCutter", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 4, - "Id": "87ce9791-7263-4972-9ffb-88dcef06cf07", - "Infiltration": "", - "Position": { - "x": -12.2900009, - "y": 13.7992649, - "z": -229.31 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneMiniHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 249.4 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "87ecc7b1-28bb-4f5e-88ca-33436351d266", - "Infiltration": "", - "Position": { - "x": 355.3, - "y": -0.345851064, - "z": -91.5099945 - }, - "Rotation": 199.23, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 250 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "894a51be-7631-48fc-87d0-92fd1e28192e", - "Infiltration": "", - "Position": { - "x": -39.3000031, - "y": -13.4976988, - "z": 348.37 - }, - "Rotation": 212.4, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneWoodCutter", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "8a07ccb2-7f11-47e4-b7f5-38fce9ef899a", - "Infiltration": "", - "Position": { - "x": 135.05, - "y": 8.544661, - "z": -174.15 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8b03a106-108f-44e0-a41f-a71118cb8268", - "Infiltration": "Old Station", - "Position": { - "x": -93.54001, - "y": -0.8849347, - "z": 382.53 - }, - "Rotation": 224.32, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8b1af5ad-6d84-4fdb-8538-be150c5584da", - "Infiltration": "Old Station", - "Position": { - "x": -490.46, - "y": 20.6721783, - "z": -46.98999 - }, - "Rotation": 53.04, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8d19978a-28a9-4c15-8b1d-9bf51695f401", - "Infiltration": "House", - "Position": { - "x": 282.66, - "y": -1.34, - "z": -59.17 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8efb8386-e830-48c3-98ad-088f8fbfbebd", - "Infiltration": "House", - "Position": { - "x": 226.487976, - "y": -8.280846, - "z": 198.979 - }, - "Rotation": 144.47, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "922c0b4f-5177-448b-8ab3-b8df4f82aa12", - "Infiltration": "Old Station", - "Position": { - "x": -418.82, - "y": 11.874, - "z": -515.23 - }, - "Rotation": 14.210001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "928f1dd2-4769-47c0-9803-77d7911e98e7", - "Infiltration": "House", - "Position": { - "x": 368.87, - "y": -1.64707971, - "z": -67.45999 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9332f801-241b-4383-b8cb-25c6278888e1", - "Infiltration": "Old Station", - "Position": { - "x": -519.41, - "y": 7.2753315, - "z": 154.59 - }, - "Rotation": 188.21, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBigRocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "93e28c74-ff82-4757-acf2-a516574ca785", - "Infiltration": "", - "Position": { - "x": -131.71, - "y": 28.4982586, - "z": -197.84 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9426259b-9067-4fd2-96e9-2a308454a98a", - "Infiltration": "Old Station", - "Position": { - "x": -517.55, - "y": 7.2753315, - "z": 153.66983 - }, - "Rotation": 185.28, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "94f47e76-1904-4586-a4d0-eaa230cc0f50", - "Infiltration": "Old Station", - "Position": { - "x": -509.56, - "y": 11.9674416, - "z": -147.490021 - }, - "Rotation": 125.579994, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "9670bfdc-1f5f-414e-8d52-801a5c23cb9a", - "Infiltration": "", - "Position": { - "x": 2.75, - "y": 14.7908974, - "z": -777.28 - }, - "Rotation": 10.29, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "96da11d4-0ae2-4067-913a-3babf0428392", - "Infiltration": "", - "Position": { - "x": -441.5, - "y": 0.238876343, - "z": 344.8 - }, - "Rotation": 164.48, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "97782b53-27e6-4943-b75f-7f5bd18703f3", - "Infiltration": "Old Station", - "Position": { - "x": -538.64, - "y": -0.9594319, - "z": 297.58 - }, - "Rotation": 97.42, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneClearVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 4, - "Id": "97eebe9d-fabe-444e-bb97-509aeb5a8038", - "Infiltration": "", - "Position": { - "x": -473.3, - "y": 22.0786514, - "z": -218.390015 - }, - "Rotation": 287.409973, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneScavBase2", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "986f2100-4f4e-494d-ba84-408cf0ab4e0d", - "Infiltration": "", - "Position": { - "x": 96.41, - "y": 14.954258, - "z": -761.12 - }, - "Rotation": 165.36, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "98e02682-9632-467d-97da-ccfdacca967c", - "Infiltration": "House", - "Position": { - "x": 229.969971, - "y": -7.79950571, - "z": 200.65 - }, - "Rotation": 139.58, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneStoneBunker", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "9b0ca4ef-e3d7-4e9c-a405-459164577b44", - "Infiltration": "", - "Position": { - "x": -294.37, - "y": 13.7586508, - "z": -419.759979 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneClearVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 4, - "Id": "9ba27b0d-5676-4a78-9910-11f32903c0b5", - "Infiltration": "", - "Position": { - "x": -442.600037, - "y": 15.3186512, - "z": -180.740021 - }, - "Rotation": 287.409973, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 192.6 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "9bc88a9d-842a-4198-9be2-e9c869989a46", - "Infiltration": "", - "Position": { - "x": -94.08, - "y": -1.31425381, - "z": 387.77 - }, - "Rotation": 192.91, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9ca380ef-e31f-45e4-b832-f49c4e266795", - "Infiltration": "Old Station", - "Position": { - "x": -252.25, - "y": 27.46981, - "z": -207.4 - }, - "Rotation": 25.48, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneUsecBase", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 4, - "Id": "9caecf22-4b61-4744-bb33-4662a04b5071", - "Infiltration": "", - "Position": { - "x": 299.449982, - "y": 12.6146507, - "z": -565.998047 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneClearVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "9d66306c-cbd1-4a2d-8a48-43b5555d5a2d", - "Infiltration": "", - "Position": { - "x": -416.220032, - "y": 15.7661858, - "z": -434.29 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9ec89724-0285-4ffc-9ba7-0e1b0912410c", - "Infiltration": "Old Station", - "Position": { - "x": -27.986, - "y": 23.098, - "z": -310.713 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "9ef38d71-b41b-4320-ad27-c346c0a709f9", - "Infiltration": "", - "Position": { - "x": -55.9500122, - "y": 7.597872, - "z": -759.37 - }, - "Rotation": 29.94, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9f04fd7f-bc63-4641-8373-ac41edfc16de", - "Infiltration": "Old Station", - "Position": { - "x": -23.418, - "y": 22.953, - "z": -304.148 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9f5da3b8-592e-43aa-8bfd-f2e0710cae63", - "Infiltration": "House", - "Position": { - "x": 283.56, - "y": -0.82, - "z": -43.77 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "a0463071-ceb5-4d1f-8968-33c66ed263ba", - "Infiltration": "", - "Position": { - "x": -23.7000122, - "y": 9.082792, - "z": -779.76 - }, - "Rotation": 10.29, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a0962412-c584-4809-be76-b7a5c78cb855", - "Infiltration": "Old Station", - "Position": { - "x": -616.79, - "y": 14.49, - "z": -324.47 - }, - "Rotation": 66.96001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a112057b-e7f1-4e10-b8e4-ec7d678b8b70", - "Infiltration": "Old Station", - "Position": { - "x": -529.6, - "y": 11.2739992, - "z": 85.98001 - }, - "Rotation": 130.67, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a4b2e037-8469-4547-bea2-348c96ad56e6", - "Infiltration": "House", - "Position": { - "x": 517.98, - "y": -20.9, - "z": 260.66 - }, - "Rotation": 257, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a4cd083a-e76f-456a-be08-885cfbea81e7", - "Infiltration": "Old Station", - "Position": { - "x": -492.6, - "y": 20.60238, - "z": -48.01999 - }, - "Rotation": 53.04, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a4e09fca-93ba-436c-9ffd-051a6b849a3c", - "Infiltration": "Old Station", - "Position": { - "x": -357.55, - "y": 0.862437665, - "z": 237.46 - }, - "Rotation": 129.42, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a5b20828-ad7b-4b07-a291-e2f07aa78e64", - "Infiltration": "Old Station", - "Position": { - "x": -91.26001, - "y": -0.5494947, - "z": 379.36 - }, - "Rotation": 224.32, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a6fd8d7e-1bd3-4a41-8589-b3f0c35eb87c", - "Infiltration": "Old Station", - "Position": { - "x": -26.638, - "y": 23.03, - "z": -310.343 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a70f89f5-20a9-4962-8d08-075aa088c7ba", - "Infiltration": "Old Station", - "Position": { - "x": -272.01, - "y": -2.0762434, - "z": 329.42 - }, - "Rotation": 198.39, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneMiniHouse", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 249.4 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "a73ee418-361e-4513-a631-a8b2a24a85c4", - "Infiltration": "", - "Position": { - "x": 307.94, - "y": -0.59301734, - "z": -159.809982 - }, - "Rotation": 1.62999988, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneWoodCutter", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "a77f891e-8470-4be2-ba24-5ff0bdae422a", - "Infiltration": "", - "Position": { - "x": 125.9, - "y": 0.277326226, - "z": 4.92 - }, - "Rotation": 101.91, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "aaab6926-0679-4bd7-94c5-174a437f0a08", - "Infiltration": "Old Station", - "Position": { - "x": -522.71, - "y": -2.58247924, - "z": 216.57 - }, - "Rotation": 89.89, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ab6dee85-93f5-45cb-a910-1ccd06e604ad", - "Infiltration": "Old Station", - "Position": { - "x": -21.7, - "y": 23.29, - "z": -301.63 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "ac5e45e7-1908-4a6a-9d14-ab7549880e02", - "Infiltration": "", - "Position": { - "x": -496.5, - "y": 5.55468845, - "z": 81.54 - }, - "Rotation": 93.46, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ae63ba35-6701-403b-9803-43a836a08c4b", - "Infiltration": "House", - "Position": { - "x": 367.74, - "y": -1.32168114, - "z": -73.79001 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneScavBase2", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "af2fcb45-fb5f-4826-9e87-e4c2a93d0183", - "Infiltration": "", - "Position": { - "x": 178.999985, - "y": 18.13865, - "z": -771.420044 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneWoodCutter", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 4, - "Id": "af83d40a-a377-488d-a923-a75c9b1bd027", - "Infiltration": "", - "Position": { - "x": 72.91, - "y": 11.85351, - "z": -220.450012 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b0365322-2ae6-4748-9689-d644d2177c73", - "Infiltration": "Old Station", - "Position": { - "x": -494.04, - "y": 20.5889053, - "z": -47.8299866 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 249.4 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "b08c4b36-5e7f-481e-8a2a-cb9dfbf7e1c8", - "Infiltration": "", - "Position": { - "x": 213.47, - "y": -14.6916227, - "z": 291.96 - }, - "Rotation": 151.22, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b09e235d-d504-4607-843f-b8286c3dbd62", - "Infiltration": "Old Station", - "Position": { - "x": -24.03, - "y": 22.904, - "z": -301.99 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneStoneBunker", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "b0ea4e50-f36c-4ebf-8f3d-95407babd393", - "Infiltration": "", - "Position": { - "x": -270.100037, - "y": 20.6486511, - "z": -439.83 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b10e6b2c-93fb-44af-ac24-a016042c03ea", - "Infiltration": "Old Station", - "Position": { - "x": -522.07, - "y": 8.263999, - "z": 97.21001 - }, - "Rotation": 130.67, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 9, - "DelayToCanSpawnSec": 4, - "Id": "b15bf85f-b3b5-40fc-8edd-9e6946dd9a51", - "Infiltration": "", - "Position": { - "x": 471.95, - "y": -18.3825169, - "z": 229.48 - }, - "Rotation": 321.01, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneStoneBunker", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "b1953b64-37ea-484c-9e1e-123972a53ee9", - "Infiltration": "", - "Position": { - "x": -301.8, - "y": 14.938652, - "z": -393.71 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 4, - "Id": "b3040f75-9e3e-4676-8014-d0636abbac8b", - "Infiltration": "", - "Position": { - "x": -516.06, - "y": 21.4670029, - "z": -20.0700073 - }, - "Rotation": 102.45, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b3697fa5-29af-4a4e-afd1-3cf837b1fdae", - "Infiltration": "Old Station", - "Position": { - "x": -280.28, - "y": -0.8622794, - "z": 332.87 - }, - "Rotation": 193.46, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b43bd5a4-aa6c-4dd6-9052-d3359fa6b53c", - "Infiltration": "Old Station", - "Position": { - "x": -260.74, - "y": 10.41, - "z": -639.7899 - }, - "Rotation": 14.210001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 250 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "b46a69e1-1ff9-43da-bc8c-e3ce961acc58", - "Infiltration": "", - "Position": { - "x": -352.33, - "y": -8.285932, - "z": 132.14 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b4cee9ef-7ec2-4799-ad20-92e94b1365fc", - "Infiltration": "Old Station", - "Position": { - "x": -537.1, - "y": -1.2624706, - "z": 294.64 - }, - "Rotation": 76.84, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b4e1a661-9925-4791-a4dd-e2756a6024f0", - "Infiltration": "Old Station", - "Position": { - "x": -229.16, - "y": 4.38, - "z": 99.81 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b593e2ff-9764-4bbe-9f8f-e05781071e7b", - "Infiltration": "Old Station", - "Position": { - "x": 372.94, - "y": 15.3039989, - "z": -695.569946 - }, - "Rotation": 317.312622, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b74b9702-5543-4187-845f-db79885c0b11", - "Infiltration": "House", - "Position": { - "x": 228.390015, - "y": -8.166669, - "z": 199.36 - }, - "Rotation": 157.11, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneUsecBase", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 4, - "Id": "b8405637-6ee3-40ec-8fe7-f69eedd62bb3", - "Infiltration": "", - "Position": { - "x": 307.81, - "y": 12.6186514, - "z": -553.24 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneScavBase2", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "b935be58-2fbb-41c6-bb6c-16ed756e52fc", - "Infiltration": "", - "Position": { - "x": 263.9, - "y": 17.3108673, - "z": -762.5 - }, - "Rotation": 165.36, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b93d8187-0ae2-4971-be9c-7839721aeece", - "Infiltration": "House", - "Position": { - "x": 487.412, - "y": -18.4096375, - "z": 334.496 - }, - "Rotation": 240.480011, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ba05b27c-b857-4d25-9fea-c20a4d7d8ce5", - "Infiltration": "Old Station", - "Position": { - "x": -621, - "y": 14.91, - "z": -328.73 - }, - "Rotation": 66.96001, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBigRocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "ba534ae2-9122-46c5-96eb-7a717dbb4be6", - "Infiltration": "", - "Position": { - "x": -293.67, - "y": 28.9518757, - "z": -199.67 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneClearVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 13, - "DelayToCanSpawnSec": 4, - "Id": "bbeb51de-3986-480c-b678-e37416ad0ded", - "Infiltration": "", - "Position": { - "x": -517.12, - "y": 14.1786509, - "z": -160.300018 - }, - "Rotation": 287.409973, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneClearVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "bce98e55-4df0-4032-9deb-6a0f21c0dfac", - "Infiltration": "", - "Position": { - "x": -389.720032, - "y": 14.5486507, - "z": -423.34 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bd0c617a-4288-47f9-ab50-25848294a38e", - "Infiltration": "House", - "Position": { - "x": 465.27002, - "y": -15.150856, - "z": 177.84 - }, - "Rotation": 239.859985, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bdcfc53f-69f8-44fb-9be1-238bab9c2629", - "Infiltration": "House", - "Position": { - "x": 464.24, - "y": -14.9513435, - "z": 176.19 - }, - "Rotation": 239.859985, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "be022f29-5b2b-4e94-893c-26d18fb3f61d", - "Infiltration": "Old Station", - "Position": { - "x": -524.17, - "y": -2.57875681, - "z": 220.33 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "be2be8fa-4a03-4c1e-b8d7-85d702cf42f6", - "Infiltration": "House", - "Position": { - "x": 487.358643, - "y": -18.8088722, - "z": 332.61 - }, - "Rotation": 245.390015, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneClearVill", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "be65242c-12dd-40c8-84a1-7f6337fc84e0", - "Infiltration": "", - "Position": { - "x": -530.77, - "y": 13.7821617, - "z": -404.130035 - }, - "Rotation": 72.46, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "beefc821-7b82-4489-a064-a43fc1f752b2", - "Infiltration": "Old Station", - "Position": { - "x": -228.55, - "y": 3.13, - "z": 110.76 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bf2a6323-087e-4d49-a160-ea86b8295ac0", - "Infiltration": "Old Station", - "Position": { - "x": 63.3200073, - "y": 8.99399948, - "z": -661.4 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c047a076-7425-4c63-ac40-75be5226847c", - "Infiltration": "House", - "Position": { - "x": 391.61, - "y": 13.62, - "z": -400.750031 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c053faa2-0f4e-4508-ac35-230ff6aa6a74", - "Infiltration": "House", - "Position": { - "x": 234.299988, - "y": 26.98, - "z": -317.97 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c0b93127-2d2f-4129-96e1-0d4dcc18a722", - "Infiltration": "Old Station", - "Position": { - "x": -222.23, - "y": 3.13, - "z": 110.95 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "c0fc88a1-591a-4ccd-8b6f-eb85d8f35b63", - "Infiltration": "", - "Position": { - "x": -486.63, - "y": 0.248063087, - "z": 330.58 - }, - "Rotation": 164.48, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneWoodCutter", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "c2949d57-c244-4752-a803-c920577516e3", - "Infiltration": "", - "Position": { - "x": 102.62, - "y": 7.21457958, - "z": -152.19 - }, - "Rotation": 114.56, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneStoneBunker", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "c2f8e4de-487a-49b8-80d2-1caacf118487", - "Infiltration": "", - "Position": { - "x": -253.652039, - "y": 26.7736511, - "z": -431.906036 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c5021df7-1750-44ff-ae44-137022a8bdac", - "Infiltration": "Old Station", - "Position": { - "x": 365.55, - "y": 13.35, - "z": -700.829956 - }, - "Rotation": 310.421173, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c58f8bd9-ff28-48d3-a8e8-dbad862698a8", - "Infiltration": "Old Station", - "Position": { - "x": -222.56, - "y": 3.13, - "z": 105.69 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c6f6dcc4-17ef-4842-83ab-124e34dfa53e", - "Infiltration": "Old Station", - "Position": { - "x": -225.79, - "y": 4.98, - "z": 85.72 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 11, - "DelayToCanSpawnSec": 4, - "Id": "c82451b7-0f24-4ea7-a00c-fd681c66005d", - "Infiltration": "", - "Position": { - "x": -428.98, - "y": 25.4802856, - "z": -81.73999 - }, - "Rotation": 36.98, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c82d2b76-ad46-4624-825e-975a6d40fcf4", - "Infiltration": "Old Station", - "Position": { - "x": -229.28, - "y": 5.19, - "z": 86.93 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c880793b-d822-4677-870e-6ffa1c05abd7", - "Infiltration": "Old Station", - "Position": { - "x": -359.75, - "y": 0.8591096, - "z": 239.67 - }, - "Rotation": 129.42, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "c8d1f5f7-cdad-4d5a-be9f-e17ba03d0983", - "Infiltration": "", - "Position": { - "x": -540.65, - "y": 5.0159235, - "z": 188.06 - }, - "Rotation": 76.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c93838d9-3ec1-47b9-b5da-db2eb0fbec46", - "Infiltration": "House", - "Position": { - "x": 389.72998, - "y": 13.24, - "z": -403.929962 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ca70d792-4fc8-47d8-a70a-e08bc2598448", - "Infiltration": "House", - "Position": { - "x": 367.37, - "y": 17.74, - "z": -594.9099 - }, - "Rotation": 268.42, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cb602055-146b-4bd4-b43b-4df81301d046", - "Infiltration": "House", - "Position": { - "x": 373.61, - "y": -1.92541981, - "z": -76.16 - }, - "Rotation": 0, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "cb93a2b5-3568-467a-b797-b37f26606dd1", - "Infiltration": "", - "Position": { - "x": -49.76001, - "y": 8.014783, - "z": -766.39 - }, - "Rotation": 29.94, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "cbb701fb-daff-4080-8c0e-c93f00fcacaa", - "Infiltration": "", - "Position": { - "x": -6.42999268, - "y": 10.9864779, - "z": -786.35 - }, - "Rotation": 10.29, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBigRocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "cc7d6ae1-7d0c-4b86-a598-df0fda6b55f3", - "Infiltration": "", - "Position": { - "x": -218.29, - "y": 31.64855, - "z": -202.19 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ce2a9b2d-260a-4eb4-b0b1-239a10eab0cc", - "Infiltration": "House", - "Position": { - "x": 487.358643, - "y": -18.615778, - "z": 330.75 - }, - "Rotation": 228.71, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBrokenVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 1, - "DelayToCanSpawnSec": 4, - "Id": "ce650b81-d07c-4b2d-b401-a38cb77b7a47", - "Infiltration": "", - "Position": { - "x": -117.590027, - "y": 11.9433193, - "z": -729.39 - }, - "Rotation": 29.94, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneMiniHouse", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "ce7f06bd-cad3-45ab-9d45-4ff4cfa42521", - "Infiltration": "", - "Position": { - "x": 242.89, - "y": 1.51325369, - "z": -164.249985 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cead6c41-d92b-47e5-8f03-8365ceccee77", - "Infiltration": "Old Station", - "Position": { - "x": -521.16, - "y": 7.2753315, - "z": 154.3 - }, - "Rotation": 183.39, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ceb25518-5a40-42cd-b57d-076d40d29890", - "Infiltration": "Old Station", - "Position": { - "x": -60.97, - "y": 9.24399948, - "z": -579.6 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cec41a3d-7939-4d43-8c64-36b1aed8818f", - "Infiltration": "Old Station", - "Position": { - "x": -25.361, - "y": 22.997, - "z": -310.053 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cef385ed-2de5-4337-a876-9ae52e50a1c6", - "Infiltration": "House", - "Position": { - "x": 391.52002, - "y": 12.88, - "z": -406.429962 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "cf611793-6d9e-4036-a8c0-a9076390c5b9", - "Infiltration": "", - "Position": { - "x": -162.85, - "y": 0.7303066, - "z": 435.96 - }, - "Rotation": 182.85, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d044ee6d-4391-4496-8d47-e541ea05e94f", - "Infiltration": "House", - "Position": { - "x": 280.469971, - "y": -12.4933405, - "z": 312.44 - }, - "Rotation": 243.09, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d0e088c0-9d02-4227-869b-193aa464d7aa", - "Infiltration": "House", - "Position": { - "x": 516.7999, - "y": -20.9, - "z": 264.43 - }, - "Rotation": 198.81, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d1b20f00-8c54-4ff5-afd6-b3e1035de6d5", - "Infiltration": "House", - "Position": { - "x": 231.075989, - "y": 26.48, - "z": -317.413 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneWoodCutter", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 15, - "DelayToCanSpawnSec": 4, - "Id": "d1f5a6f5-854e-491a-814c-616a6f237f32", - "Infiltration": "", - "Position": { - "x": -60.28, - "y": 18.8811035, - "z": -230.12 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d290e1f7-ce87-4332-b386-c3f2441f45f7", - "Infiltration": "Old Station", - "Position": { - "x": -507.33, - "y": 12.1406317, - "z": -145.300018 - }, - "Rotation": 125.579994, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d2da7554-3689-481c-9e29-4c55f4ba50cb", - "Infiltration": "Old Station", - "Position": { - "x": -24.789, - "y": 22.953, - "z": -304.759 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneStoneBunker", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "d60fe5f9-d16f-4a4d-b254-29a90e2d5198", - "Infiltration": "", - "Position": { - "x": -298.830017, - "y": 15.94865, - "z": -388.750031 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d7005efc-32b9-4c26-bf50-1e13a3c0d774", - "Infiltration": "Old Station", - "Position": { - "x": -229.33, - "y": 4.94, - "z": 93.59 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "da037755-e7ae-4738-8be9-be02991b422b", - "Infiltration": "Old Station", - "Position": { - "x": -254.053009, - "y": 27.412447, - "z": -204.690979 - }, - "Rotation": 23.36, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "da22cead-d753-44c4-b44e-131a3d9690b7", - "Infiltration": "Old Station", - "Position": { - "x": -59.6399841, - "y": 9.093999, - "z": -577.11 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "da89268f-c6c8-4689-a9d5-5be89a23740f", - "Infiltration": "Old Station", - "Position": { - "x": -92.29001, - "y": -0.6761878, - "z": 380.44 - }, - "Rotation": 224.32, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneUsecBase", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 4, - "Id": "dac5c349-4b8a-4f95-9928-16763a8f9901", - "Infiltration": "", - "Position": { - "x": 309.93, - "y": 14.5686512, - "z": -576.86 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneBigRocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "dccba1cc-d462-4aa2-9c24-01e060f5b826", - "Infiltration": "", - "Position": { - "x": -277.3, - "y": 30.9032745, - "z": -196.4 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "dd6a29b3-46ab-4b43-a64d-a556342cc243", - "Infiltration": "Old Station", - "Position": { - "x": -25.769, - "y": 22.998, - "z": -308.583 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "deaa5307-ad18-4d43-a46a-e6ef0c5aad7a", - "Infiltration": "House", - "Position": { - "x": 283.39, - "y": -0.82, - "z": -51.36 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "deea2fb8-334a-4327-8e1e-a520140ac51e", - "Infiltration": "Old Station", - "Position": { - "x": -29.681, - "y": 22.91, - "z": -302.877 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e02b3d1e-aa8d-4482-8188-d8680b91e274", - "Infiltration": "House", - "Position": { - "x": 444.5885, - "y": -20.52517, - "z": 363.106354 - }, - "Rotation": 245.390015, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e05ef34f-8247-44aa-95a9-fc5085998045", - "Infiltration": "Old Station", - "Position": { - "x": -24.698, - "y": 22.998, - "z": -308.343 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e0fb7ebc-0a4c-45a3-b5a3-ba5e6b1456ba", - "Infiltration": "Old Station", - "Position": { - "x": 64.6600342, - "y": 9.084, - "z": -656.64 - }, - "Rotation": 284.39, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 250 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "e14fbe89-b4fd-470a-b5ea-9ef029743815", - "Infiltration": "", - "Position": { - "x": -346.46, - "y": -8.439364, - "z": 131.01 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e1986567-8367-44cd-9bfa-e5c20e9e1460", - "Infiltration": "Old Station", - "Position": { - "x": -253.669983, - "y": 11.57, - "z": -638.929932 - }, - "Rotation": 316.58, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e23a1216-20f7-4675-88b6-8538090e3dcc", - "Infiltration": "House", - "Position": { - "x": 283.33, - "y": -0.82, - "z": -55.13 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneStoneBunker", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 16, - "DelayToCanSpawnSec": 4, - "Id": "e29301b5-4739-4de0-bb4b-8541b3f1d534", - "Infiltration": "", - "Position": { - "x": -308.06, - "y": 13.8386507, - "z": -410.29 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 249.4 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "e2fe413c-7f94-4102-b29b-36a726ad6bb1", - "Infiltration": "", - "Position": { - "x": 218.6, - "y": -12.2584953, - "z": 279.4 - }, - "Rotation": 151.22, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e46cc7ed-cb3b-46cf-a822-ecca3fc36638", - "Infiltration": "Old Station", - "Position": { - "x": -28.69, - "y": 22.963, - "z": -305.98 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBigRocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "e46ed7fd-a0b8-412a-b3e0-5d4407bfe431", - "Infiltration": "", - "Position": { - "x": -139.96, - "y": 30.8123264, - "z": -191.76 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e48a6b22-ef3f-4c2b-96ef-1a36803af60d", - "Infiltration": "Old Station", - "Position": { - "x": -21.816, - "y": 23.211, - "z": -303.139 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e4f280f7-ba13-4fa1-83ec-fac99e8f66b5", - "Infiltration": "Old Station", - "Position": { - "x": -26.16, - "y": 22.91, - "z": -302.47 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e6fb5fd6-dff6-4af0-bc35-7c4d8dd198fc", - "Infiltration": "Old Station", - "Position": { - "x": -31.028, - "y": 22.91, - "z": -303.086 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e79077ff-20e2-401f-8836-87f347497c7d", - "Infiltration": "House", - "Position": { - "x": 515.2101, - "y": -20.88, - "z": 264.44 - }, - "Rotation": 204.02, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e7e7fcfc-f2c0-4f5d-9b69-d6774de59df3", - "Infiltration": "House", - "Position": { - "x": 282.93, - "y": -1.07, - "z": -57.08 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e94aee7d-4b61-4214-a68c-498eebdd6574", - "Infiltration": "House", - "Position": { - "x": 279.900024, - "y": -12.0694313, - "z": 317.73 - }, - "Rotation": 237.94, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneBigRocks", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "e9877e48-6079-4f78-add4-6e42caf9df06", - "Infiltration": "", - "Position": { - "x": -147.94, - "y": 31.125742, - "z": -189.35 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ea838cee-14e1-418f-a616-a5f2d39987c1", - "Infiltration": "House", - "Position": { - "x": 388.36, - "y": 12.85, - "z": -410.250031 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "eaabeff9-9737-4c63-a3e2-42f64c93b7ef", - "Infiltration": "Old Station", - "Position": { - "x": -225.33, - "y": 4.48, - "z": 90.68 - }, - "Rotation": 112.027237, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "eb67cff0-571a-4d65-b9be-766d1a58aafc", - "Infiltration": "Old Station", - "Position": { - "x": -526.74, - "y": 11.2439995, - "z": 86.8600159 - }, - "Rotation": 130.67, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "eb7ad162-909d-415b-9800-3508bc9f8664", - "Infiltration": "House", - "Position": { - "x": 278.75, - "y": -11.9370832, - "z": 315.84 - }, - "Rotation": 223.42, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ec3445e7-00c8-43ba-9a91-69b426d0537e", - "Infiltration": "House", - "Position": { - "x": 231.640015, - "y": -7.43194866, - "z": 201.72 - }, - "Rotation": 136.06, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ed269133-85c0-4307-bfe8-27c2cab926d9", - "Infiltration": "Old Station", - "Position": { - "x": -516.65, - "y": 7.2753315, - "z": 146.29 - }, - "Rotation": 0.08, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "eeafbe43-88fa-4755-8c10-d5815528838d", - "Infiltration": "Old Station", - "Position": { - "x": -29.51, - "y": 23.19, - "z": -308.56 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneWoodCutter", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 18, - "DelayToCanSpawnSec": 4, - "Id": "f069be88-fcfd-4313-bffa-a990777b71e2", - "Infiltration": "", - "Position": { - "x": -2.308197, - "y": -1.44134891, - "z": -74.57119 - }, - "Rotation": 101.91, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f10701b0-ee96-4f9b-94db-8007bc90fb07", - "Infiltration": "House", - "Position": { - "x": 234.960022, - "y": 26.92, - "z": -314.58 - }, - "Rotation": 287.12, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "f277e2a5-1f9f-43c0-b146-7098cdc8d37a", - "Infiltration": "", - "Position": { - "x": -170.87, - "y": 0.9297247, - "z": 431.87 - }, - "Rotation": 152.9, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f2ae3edb-47f9-402e-8e4f-de47df81c9ce", - "Infiltration": "Old Station", - "Position": { - "x": -329.148, - "y": 18.8058033, - "z": -141.793 - }, - "Rotation": 38.5499954, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f3a50056-4d67-43d2-93a0-ea672b49bb5b", - "Infiltration": "House", - "Position": { - "x": 515.24, - "y": -20.81, - "z": 261.53 - }, - "Rotation": 239.859985, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneClearVill", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "f3ee4377-7c67-4d5b-a3a5-1e25c68e8a21", - "Infiltration": "", - "Position": { - "x": -439.99, - "y": 15.5185928, - "z": -325.17 - }, - "Rotation": 287.409973, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f4963cf2-9c80-4a14-b300-eac6102fd51d", - "Infiltration": "House", - "Position": { - "x": 487.358643, - "y": -18.0551147, - "z": 328.52 - }, - "Rotation": 230.000015, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f4f8f8c1-7c55-4b68-878f-f631e769ba30", - "Infiltration": "House", - "Position": { - "x": 444.959961, - "y": -20.52517, - "z": 362.19 - }, - "Rotation": 229.460022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f520eec3-2fe1-4538-9e85-2997336fa667", - "Infiltration": "Old Station", - "Position": { - "x": -525.27, - "y": 10.7439995, - "z": 88.43001 - }, - "Rotation": 130.67, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f66219ad-4eb0-48bd-a435-47f76d48c34d", - "Infiltration": "Old Station", - "Position": { - "x": -515.51, - "y": 12.1576281, - "z": -153.09 - }, - "Rotation": 125.579994, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f6b08d4e-8de0-4922-87b8-546d593d4454", - "Infiltration": "Old Station", - "Position": { - "x": -537.79, - "y": -1.20589864, - "z": 295.99 - }, - "Rotation": 83.79, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneUsecBase", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 4, - "Id": "f72710eb-a9c1-4e01-89d3-127288a2e9bf", - "Infiltration": "", - "Position": { - "x": 297.18, - "y": 23.02765, - "z": -434.389984 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneRedHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 158.9 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "f829bb1a-9eda-44cf-912c-a8cac4b7af12", - "Infiltration": "", - "Position": { - "x": -540.69, - "y": 5.01928234, - "z": 133.86 - }, - "Rotation": 76.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneUsecBase", - "Categories": [ - "Bot", - "Boss" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 17, - "DelayToCanSpawnSec": 4, - "Id": "f876a55b-76a7-43fb-92c9-1be38069449b", - "Infiltration": "", - "Position": { - "x": 311.72998, - "y": 22.96865, - "z": -490.08 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 70 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f997caf2-a40d-457c-ae98-20b17660a5aa", - "Infiltration": "Old Station", - "Position": { - "x": -24.242, - "y": 22.997, - "z": -309.621 - }, - "Rotation": 353.636353, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneHouse", - "Categories": [ - "Player", - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 140 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "fbd25b6f-97ce-4982-906e-9a91e3ce8763", - "Infiltration": "", - "Position": { - "x": 365.98, - "y": 4.369165, - "z": -8.880005 - }, - "Rotation": 295.57, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 100 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "fc1c9271-3fc8-403f-a730-da10e263b9b1", - "Infiltration": "House", - "Position": { - "x": 282.68, - "y": -1.44, - "z": -60.91 - }, - "Rotation": 268.0896, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "ZoneRoad", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 40 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "fed02c94-65f2-48fd-8e17-8ce0b66612b4", - "Infiltration": "", - "Position": { - "x": -298.29, - "y": 0.07000065, - "z": 205.650009 - }, - "Rotation": 212.4, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "ZoneScavBase2", - "Categories": [ - "All" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 60 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "ff8bd8ee-1d0e-4934-93ad-e8c39541e60a", - "Infiltration": "", - "Position": { - "x": 268.699982, - "y": 17.5370255, - "z": -756.9 - }, - "Rotation": 236.87, - "Sides": [ - "Savage" - ] - } - ], - "UnixDateTime": 1636382791, - "_Id": "5704e3c2d2720bac5b8b4567", - "doors": [], - "exit_access_time": 10, - "exit_count": 1, - "exit_time": 90, - "exits": [ - { - "Chance": 66, - "ChancePVE": 66, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "House", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "ZB-016", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Old Station", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Outskirts", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "House", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "UN Roadblock", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequirementTip": "" - }, - { - "Chance": 66, - "ChancePVE": 66, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "House", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "RUAF Gate", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequirementTip": "" - }, - { - "Chance": 66, - "ChancePVE": 66, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "Old Station", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "ZB-014", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 5000, - "CountPVE": 5000, - "EntryPoints": "House,Old Station", - "EventAvailable": false, - "ExfiltrationTime": 60, - "ExfiltrationTimePVE": 60, - "ExfiltrationType": "SharedTimer", - "Id": "5449016a4bdc2d6f028b456f", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "South V-Ex", - "PassageRequirement": "TransferItem", - "PlayersCount": 4, - "PlayersCountPVE": 4, - "RequirementTip": "EXFIL_Item" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "House,Old Station", - "EventAvailable": false, - "ExfiltrationTime": 20, - "ExfiltrationTimePVE": 20, - "ExfiltrationType": "SharedTimer", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "Factory Gate", - "PassageRequirement": "ScavCooperation", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequirementTip": "EXFIL_Cooperate" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "House", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "un-sec", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequirementTip": "" - }, - { - "Chance": 100, - "ChancePVE": 100, - "Count": 0, - "CountPVE": 0, - "EntryPoints": "House,Old Station", - "EventAvailable": false, - "ExfiltrationTime": 8, - "ExfiltrationTimePVE": 8, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MaxTimePVE": 0, - "MinTime": 0, - "MinTimePVE": 0, - "Name": "wood_sniper_exit", - "PassageRequirement": "None", - "PlayersCount": 0, - "PlayersCountPVE": 0, - "RequirementTip": "" - } - ], - "filter_ex": [], - "limits": [ - { - "items": [ - "6389c8c5dbfd5e4b95197e6b" - ], - "max": 1, - "min": 0 - } - ], - "matching_min_seconds": 60, - "maxItemCountInLocation": [ - { - "TemplateId": "634959225289190e5e773b3b", - "Value": 6 - } - ], - "sav_summon_seconds": 60, - "tmp_location_field_remove_me": 0, - "transits": [ - { - "activateAfterSec": 60, - "active": true, - "conditions": "WOO_TRANSIT_15_COND", - "description": "WOO_TRANSIT_15_DESC", - "id": 15, - "location": "factory4_day", - "name": "WOO_TRANSIT_15", - "target": "55f2d3fd4bdc2d5f408b4567", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": true, - "conditions": "WOO_TRANSIT_16_COND", - "description": "WOO_TRANSIT_16_DESC", - "id": 16, - "location": "RezervBase", - "name": "WOO_TRANSIT_16", - "target": "5704e5fad2720bc05b8b4567", - "time": 30 - }, - { - "activateAfterSec": 60, - "active": true, - "conditions": "WOO_TRANSIT_17_COND", - "description": "WOO_TRANSIT_17_DESC", - "id": 17, - "location": "Lighthouse", - "name": "WOO_TRANSIT_17", - "target": "5704e4dad2720bb55b8b4567", - "time": 30 - } - ], - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "waves": [] -} diff --git a/project/assets/database/locations/woods/looseLoot.json b/project/assets/database/locations/woods/looseLoot.json deleted file mode 100644 index 76582d52..00000000 --- a/project/assets/database/locations/woods/looseLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f0cd3e9b069eb5ce477123176afd0039b3307d69262762a4d2b6ad9f968c4d09 -size 27467140 diff --git a/project/assets/database/locations/woods/staticAmmo.json b/project/assets/database/locations/woods/staticAmmo.json deleted file mode 100644 index f8c5132b..00000000 --- a/project/assets/database/locations/woods/staticAmmo.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:774c24ffc0ec05f6ffc925bfd5b421dc98e7b036f05d634aa044c60dd5912c4f -size 11235 diff --git a/project/assets/database/locations/woods/staticContainers.json b/project/assets/database/locations/woods/staticContainers.json deleted file mode 100644 index 5df65836..00000000 --- a/project/assets/database/locations/woods/staticContainers.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:603b7229fd6c5de9a2e3f6e9aa5cb97dba6bad60c6c482d24e9bbf164c83ac77 -size 190786 diff --git a/project/assets/database/locations/woods/staticLoot.json b/project/assets/database/locations/woods/staticLoot.json deleted file mode 100644 index f30c24f3..00000000 --- a/project/assets/database/locations/woods/staticLoot.json +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8107fd44fdf9d47aed8d2314cea91e33e447d28bf66d6bdf097fdf8d46dcd2da -size 706427 diff --git a/project/assets/database/locations/woods/statics.json b/project/assets/database/locations/woods/statics.json deleted file mode 100644 index 09a6f3d7..00000000 --- a/project/assets/database/locations/woods/statics.json +++ /dev/null @@ -1,1393 +0,0 @@ -{ - "containersGroups": { - "PMC_SHOOTOUT_04": { - "minContainers": 3, - "maxContainers": 4 - }, - "PMC_SHOOTOUT_03": { - "minContainers": 0, - "maxContainers": 2 - }, - "Sawmill": { - "minContainers": 23, - "maxContainers": 27 - }, - "Radio": { - "minContainers": 10, - "maxContainers": 14 - }, - "Other": { - "minContainers": 10, - "maxContainers": 12 - }, - "New_Grave_Camp": { - "minContainers": 1, - "maxContainers": 2 - }, - "SouthRoad_Containers": { - "minContainers": 5, - "maxContainers": 7 - }, - "PMC_SHOOTOUT_02": { - "minContainers": 0, - "maxContainers": 1 - }, - "PMC_SHOOTOUT_07": { - "minContainers": 2, - "maxContainers": 3 - }, - "PMC_SHOOTOUT_08": { - "minContainers": 3, - "maxContainers": 5 - }, - "PMC_SHOOTOUT_01": { - "minContainers": 3, - "maxContainers": 4 - }, - "UsecCamp": { - "minContainers": 12, - "maxContainers": 16 - }, - "PMC_SHOOTOUT_05": { - "minContainers": 3, - "maxContainers": 4 - }, - "Rocks": { - "minContainers": 7, - "maxContainers": 9 - }, - "MesCamp": { - "minContainers": 17, - "maxContainers": 21 - }, - "Forrest": { - "minContainers": 11, - "maxContainers": 15 - }, - "New_Bunker": { - "minContainers": 3, - "maxContainers": 4 - }, - "DestroedVilage": { - "minContainers": 4, - "maxContainers": 6 - }, - "Village": { - "minContainers": 25, - "maxContainers": 29 - }, - "PMC_SHOOTOUT_06": { - "minContainers": 2, - "maxContainers": 3 - }, - "Depo": { - "minContainers": 16, - "maxContainers": 24 - }, - "New_Railway": { - "minContainers": 3, - "maxContainers": 4 - }, - "Stashes": { - "minContainers": 35, - "maxContainers": 37 - }, - "new_exp": { - "minContainers": 4, - "maxContainers": 6 - }, - "Bunker": { - "minContainers": 6, - "maxContainers": 9 - } - }, - "containers": { - "container_woods_design_stuff_00151": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00251": { - "groupId": "Sawmill" - }, - "container_woods_DesignMain_00019": { - "groupId": "Depo" - }, - "container_woods_design_stuff_00134": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00040": { - "groupId": "Radio" - }, - "container_woods_DesignMain_00007": { - "groupId": "Bunker" - }, - "container_woods_design_stuff_00252": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00050": { - "groupId": "Radio" - }, - "container_woods_DesignMain_00051": { - "groupId": "Bunker" - }, - "container_woods_design_stuff_00254": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00001": { - "groupId": "New_Bunker" - }, - "container_woods_design_stuff_00000": { - "groupId": "New_Bunker" - }, - "container_woods_design_stuff_00002": { - "groupId": "New_Bunker" - }, - "container_woods_design_stuff_00003": { - "groupId": "New_Bunker" - }, - "container_woods_DesignMain_00042": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00030": { - "groupId": "Depo" - }, - "container_woods_design_stuff_00253": { - "groupId": "Sawmill" - }, - "container_woods_DesignMain_00017": { - "groupId": "new_exp" - }, - "container_woods_DesignMain_00049": { - "groupId": "Bunker" - }, - "Lootable_00009": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00127": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00027": { - "groupId": "Depo" - }, - "container_woods_design_stuff_00250": { - "groupId": "Sawmill" - }, - "container_woods_DesignMain_00012": { - "groupId": "new_exp" - }, - "container_woods_DesignMain_00029": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00028": { - "groupId": "Depo" - }, - "Lootable_00002": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00018": { - "groupId": "New_Railway" - }, - "container_woods_design_stuff_00019": { - "groupId": "New_Railway" - }, - "container_woods_design_stuff_00017": { - "groupId": "New_Railway" - }, - "container_woods_design_stuff_00016": { - "groupId": "New_Railway" - }, - "container_woods_design_stuff_00128": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00022": { - "groupId": "Depo" - }, - "container_woods_design_stuff_00148": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00149": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00147": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00146": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00244": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00245": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00247": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00246": { - "groupId": "Sawmill" - }, - "container_woods_DesignMain_00039": { - "groupId": "Depo" - }, - "Lootable_00000": { - "groupId": "Sawmill" - }, - "container_woods_DesignMain_00006": { - "groupId": "Bunker" - }, - "container_woods_DesignMain_00021": { - "groupId": "Depo" - }, - "container_woods_design_stuff_00109": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00110": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00125": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00111": { - "groupId": "Forrest" - }, - "Lootable_00001": { - "groupId": "Sawmill" - }, - "container_woods_DesignMain_00036": { - "groupId": "Depo" - }, - "Lootable_00005": { - "groupId": "Sawmill" - }, - "Lootable_00006": { - "groupId": "Sawmill" - }, - "Lootable_00008": { - "groupId": "Sawmill" - }, - "Lootable_00007": { - "groupId": "Sawmill" - }, - "container_woods_DesignMain_00038": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00050": { - "groupId": "Bunker" - }, - "container_woods_design_stuff_00028": { - "groupId": "SouthRoad_Containers" - }, - "container_woods_design_stuff_00015": { - "groupId": "New_Railway" - }, - "container_woods_design_stuff_00014": { - "groupId": "New_Railway" - }, - "container_woods_design_stuff_00012": { - "groupId": "New_Railway" - }, - "container_woods_design_stuff_00013": { - "groupId": "New_Railway" - }, - "container_woods_design_stuff_00249": { - "groupId": "Sawmill" - }, - "container_woods_DesignMain_00034": { - "groupId": "Depo" - }, - "container_woods_design_stuff_00034": { - "groupId": "SouthRoad_Containers" - }, - "container_woods_DesignMain_00010": { - "groupId": "new_exp" - }, - "container_woods_DesignMain_00013": { - "groupId": "new_exp" - }, - "container_woods_design_stuff_00007": { - "groupId": "New_Bunker" - }, - "container_woods_design_stuff_00006": { - "groupId": "New_Bunker" - }, - "container_woods_design_stuff_00004": { - "groupId": "New_Bunker" - }, - "container_woods_design_stuff_00005": { - "groupId": "New_Bunker" - }, - "container_woods_design_stuff_00255": { - "groupId": "Sawmill" - }, - "container_woods_DesignMain_00037": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00002": { - "groupId": "Bunker" - }, - "container_woods_DesignMain_00020": { - "groupId": "Depo" - }, - "container_woods_design_stuff_00132": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00003": { - "groupId": "Bunker" - }, - "container_woods_design_stuff_00023": { - "groupId": "New_Railway" - }, - "container_woods_design_stuff_00022": { - "groupId": "New_Railway" - }, - "container_woods_design_stuff_00020": { - "groupId": "New_Railway" - }, - "container_woods_design_stuff_00021": { - "groupId": "New_Railway" - }, - "container_woods_design_stuff_00248": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00234": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00133": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00220": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00150": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00327": { - "groupId": "" - }, - "container_woods_design_stuff_00008": { - "groupId": "New_Bunker" - }, - "container_woods_DesignMain_00014": { - "groupId": "new_exp" - }, - "container_woods_DesignMain_00018": { - "groupId": "new_exp" - }, - "container_woods_DesignMain_00005": { - "groupId": "Bunker" - }, - "container_woods_DesignMain_00041": { - "groupId": "Depo" - }, - "container_woods_design_stuff_00129": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00040": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00035": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00032": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00023": { - "groupId": "Depo" - }, - "container_woods_design_stuff_00130": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00048": { - "groupId": "Bunker" - }, - "container_woods_DesignMain_00033": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00047": { - "groupId": "Bunker" - }, - "container_woods_DesignMain_00004": { - "groupId": "Bunker" - }, - "container_woods_DesignMain_00031": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00011": { - "groupId": "new_exp" - }, - "container_woods_DesignMain_00044": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00046": { - "groupId": "Depo" - }, - "container_woods_design_stuff_00126": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00045": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00009": { - "groupId": "new_exp" - }, - "container_woods_DesignMain_00008": { - "groupId": "Bunker" - }, - "container_woods_DesignMain_00043": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00001": { - "groupId": "Bunker" - }, - "container_woods_design_stuff_00059": { - "groupId": "Other" - }, - "container_woods_design_stuff_00058": { - "groupId": "Other" - }, - "container_woods_design_stuff_00057": { - "groupId": "Other" - }, - "container_woods_design_stuff_00062": { - "groupId": "Other" - }, - "container_woods_design_stuff_00061": { - "groupId": "Other" - }, - "container_woods_design_stuff_00060": { - "groupId": "Other" - }, - "container_woods_design_stuff_00221": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00131": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00026": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00025": { - "groupId": "Depo" - }, - "container_woods_DesignMain_00024": { - "groupId": "Depo" - }, - "container_woods_design_stuff_00081": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00070": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00072": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00076": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00073": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00078": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00107": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00086": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00069": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00074": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00079": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00077": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00075": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00083": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00080": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00084": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00085": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00082": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00071": { - "groupId": "Stashes" - }, - "Lootable_00072": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00087": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00199": { - "groupId": "Village" - }, - "container_woods_design_stuff_00144": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00202": { - "groupId": "Village" - }, - "container_woods_design_stuff_00268": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00299": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00037": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00027": { - "groupId": "SouthRoad_Containers" - }, - "container_woods_design_stuff_00269": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00164": { - "groupId": "DestroedVilage" - }, - "container_woods_design_stuff_00280": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00271": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00267": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00056": { - "groupId": "Other" - }, - "container_woods_design_stuff_00239": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00240": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00201": { - "groupId": "Village" - }, - "container_woods_design_stuff_00173": { - "groupId": "Village" - }, - "container_woods_design_stuff_00032": { - "groupId": "SouthRoad_Containers" - }, - "container_woods_design_stuff_00241": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00196": { - "groupId": "Village" - }, - "container_woods_design_stuff_00298": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00174": { - "groupId": "Village" - }, - "container_woods_design_stuff_00281": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00108": { - "groupId": "Forrest" - }, - "container_Test_for_export_00000": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00270": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00055": { - "groupId": "Other" - }, - "container_woods_design_stuff_00145": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00169": { - "groupId": "Village" - }, - "container_woods_design_stuff_00171": { - "groupId": "Village" - }, - "container_woods_design_stuff_00279": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00198": { - "groupId": "Village" - }, - "container_woods_design_stuff_00036": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00033": { - "groupId": "SouthRoad_Containers" - }, - "container_woods_design_stuff_00170": { - "groupId": "Village" - }, - "container_woods_design_stuff_00172": { - "groupId": "Village" - }, - "container_woods_design_stuff_00049": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00197": { - "groupId": "Village" - }, - "container_woods_design_stuff_00038": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00200": { - "groupId": "Village" - }, - "container_woods_design_stuff_00048": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00159": { - "groupId": "DestroedVilage" - }, - "container_woods_design_stuff_00243": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00026": { - "groupId": "SouthRoad_Containers" - }, - "container_woods_design_stuff_00175": { - "groupId": "Village" - }, - "container_woods_design_stuff_00242": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00096": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00094": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00088": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00105": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00097": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00101": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00106": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00090": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00098": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00089": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00103": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00095": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00091": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00102": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00093": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00099": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00092": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00104": { - "groupId": "Stashes" - }, - "container_woods_design_stuff_00100": { - "groupId": "Stashes" - }, - "Lootable_00068": { - "groupId": "Stashes" - }, - "container_Woods_Blockout2b_00006": { - "groupId": "New_Grave_Camp" - }, - "container_ProfileEditor_00003": { - "groupId": "PMC_SHOOTOUT_01" - }, - "container_woods_design_stuff_00115": { - "groupId": "PMC_SHOOTOUT_07" - }, - "container_Woods_Blockout2b_00016": { - "groupId": "PMC_SHOOTOUT_03" - }, - "container_Woods_Blockout2b_00025": { - "groupId": "PMC_SHOOTOUT_06" - }, - "container_Woods_Blockout2b_00020": { - "groupId": "PMC_SHOOTOUT_05" - }, - "container_woods_design_stuff_00120": { - "groupId": "PMC_SHOOTOUT_08" - }, - "container_Woods_Blockout2b_00010": { - "groupId": "PMC_SHOOTOUT_04" - }, - "container_Woods_Blockout2b_00028": { - "groupId": "PMC_SHOOTOUT_06" - }, - "container_Woods_Blockout2b_00012": { - "groupId": "PMC_SHOOTOUT_02" - }, - "container_Woods_Blockout2b_00017": { - "groupId": "PMC_SHOOTOUT_05" - }, - "container_woods_design_stuff_00112": { - "groupId": "PMC_SHOOTOUT_07" - }, - "container_ProfileEditor_00005": { - "groupId": "PMC_SHOOTOUT_01" - }, - "container_Woods_Blockout2b_00014": { - "groupId": "PMC_SHOOTOUT_04" - }, - "container_woods_design_stuff_00123": { - "groupId": "PMC_SHOOTOUT_08" - }, - "container_woods_design_stuff_00117": { - "groupId": "PMC_SHOOTOUT_07" - }, - "container_woods_design_stuff_00118": { - "groupId": "PMC_SHOOTOUT_08" - }, - "container_woods_design_stuff_00124": { - "groupId": "New_Bunker" - }, - "container_Woods_Blockout2b_00007": { - "groupId": "PMC_SHOOTOUT_04" - }, - "container_Woods_Blockout2b_00023": { - "groupId": "PMC_SHOOTOUT_06" - }, - "container_ProfileEditor_00000": { - "groupId": "PMC_SHOOTOUT_01" - }, - "container_Woods_Blockout2b_00022": { - "groupId": "PMC_SHOOTOUT_05" - }, - "container_woods_design_stuff_00168": { - "groupId": "DestroedVilage" - }, - "container_woods_design_stuff_00189": { - "groupId": "Village" - }, - "container_woods_design_stuff_00209": { - "groupId": "Village" - }, - "container_woods_design_stuff_00191": { - "groupId": "Village" - }, - "container_woods_design_stuff_00192": { - "groupId": "Village" - }, - "container_woods_design_stuff_00190": { - "groupId": "Village" - }, - "container_woods_design_stuff_00167": { - "groupId": "DestroedVilage" - }, - "container_woods_design_stuff_00187": { - "groupId": "Village" - }, - "container_woods_design_stuff_00052": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00206": { - "groupId": "Village" - }, - "container_woods_design_stuff_00318": { - "groupId": "Rocks" - }, - "container_woods_design_stuff_00160": { - "groupId": "DestroedVilage" - }, - "container_woods_design_stuff_00165": { - "groupId": "DestroedVilage" - }, - "container_woods_design_stuff_00186": { - "groupId": "Village" - }, - "container_woods_design_stuff_00210": { - "groupId": "Village" - }, - "container_woods_design_stuff_00188": { - "groupId": "Village" - }, - "container_woods_design_stuff_00317": { - "groupId": "Rocks" - }, - "container_woods_design_stuff_00043": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00166": { - "groupId": "DestroedVilage" - }, - "container_woods_design_stuff_00185": { - "groupId": "Village" - }, - "container_woods_design_stuff_00322": { - "groupId": "Rocks" - }, - "container_woods_design_stuff_00212": { - "groupId": "Village" - }, - "container_woods_design_stuff_00207": { - "groupId": "Village" - }, - "container_woods_design_stuff_00323": { - "groupId": "Rocks" - }, - "container_woods_design_stuff_00163": { - "groupId": "DestroedVilage" - }, - "container_woods_design_stuff_00162": { - "groupId": "DestroedVilage" - }, - "container_woods_design_stuff_00161": { - "groupId": "DestroedVilage" - }, - "container_woods_design_stuff_00211": { - "groupId": "Village" - }, - "container_woods_design_stuff_00208": { - "groupId": "Village" - }, - "container_woods_design_stuff_00113": { - "groupId": "PMC_SHOOTOUT_07" - }, - "container_ProfileEditor_00002": { - "groupId": "PMC_SHOOTOUT_01" - }, - "container_Woods_Blockout2b_00018": { - "groupId": "PMC_SHOOTOUT_05" - }, - "container_Woods_Blockout2b_00005": { - "groupId": "New_Grave_Camp" - }, - "container_woods_design_stuff_00122": { - "groupId": "PMC_SHOOTOUT_08" - }, - "container_Woods_Blockout2b_00013": { - "groupId": "PMC_SHOOTOUT_04" - }, - "container_Woods_Blockout2b_00027": { - "groupId": "PMC_SHOOTOUT_06" - }, - "container_woods_design_stuff_00195": { - "groupId": "Village" - }, - "container_woods_design_stuff_00262": { - "groupId": "Sawmill" - }, - "Lootable_00004": { - "groupId": "Sawmill" - }, - "container_Test_for_export_00001": { - "groupId": "PMC_SHOOTOUT_08" - }, - "container_woods_design_stuff_00302": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00231": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00285": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00282": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00303": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00176": { - "groupId": "Village" - }, - "container_woods_design_stuff_00304": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00217": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00300": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00219": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00177": { - "groupId": "Village" - }, - "container_woods_design_stuff_00024": { - "groupId": "New_Railway" - }, - "container_woods_design_stuff_00218": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00287": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00316": { - "groupId": "Rocks" - }, - "container_woods_design_stuff_00301": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00233": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00232": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00215": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00039": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00230": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00286": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00009": { - "groupId": "New_Bunker" - }, - "container_woods_design_stuff_00305": { - "groupId": "MesCamp" - }, - "00012": { - "groupId": "Rocks" - }, - "container_woods_design_stuff_00203": { - "groupId": "Village" - }, - "container_woods_design_stuff_00284": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00216": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00229": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00283": { - "groupId": "MesCamp" - }, - "container_Woods_Blockout2b_00009": { - "groupId": "PMC_SHOOTOUT_04" - }, - "container_Woods_Blockout2b_00021": { - "groupId": "PMC_SHOOTOUT_05" - }, - "container_Woods_Blockout2b_00008": { - "groupId": "PMC_SHOOTOUT_02" - }, - "container_Woods_Blockout2b_00024": { - "groupId": "PMC_SHOOTOUT_06" - }, - "container_woods_design_stuff_00116": { - "groupId": "PMC_SHOOTOUT_07" - }, - "container_ProfileEditor_00001": { - "groupId": "PMC_SHOOTOUT_01" - }, - "container_woods_design_stuff_00119": { - "groupId": "PMC_SHOOTOUT_08" - }, - "container_woods_design_stuff_00292": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00136": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00309": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00311": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00291": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00293": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00310": { - "groupId": "MesCamp" - }, - "n1": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00265": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00277": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00264": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00227": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00276": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00261": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00181": { - "groupId": "Village" - }, - "container_woods_design_stuff_00182": { - "groupId": "Village" - }, - "container_woods_design_stuff_00226": { - "groupId": "UsecCamp" - }, - "container_woods_combined_00002": { - "groupId": "" - }, - "container_woods_design_stuff_00010": { - "groupId": "New_Railway" - }, - "container_woods_design_stuff_00011": { - "groupId": "New_Railway" - }, - "Lootable_00063": { - "groupId": "" - }, - "container_woods_design_stuff_00053": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00213": { - "groupId": "Village" - }, - "container_woods_design_stuff_00321": { - "groupId": "Rocks" - }, - "container_woods_design_stuff_00067": { - "groupId": "Other" - }, - "container_woods_design_stuff_00214": { - "groupId": "Village" - }, - "container_woods_design_stuff_00046": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00142": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00228": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00315": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00066": { - "groupId": "Other" - }, - "container_woods_design_stuff_00295": { - "groupId": "MesCamp" - }, - "Lootable_00003": { - "groupId": "" - }, - "container_woods_design_stuff_00320": { - "groupId": "Rocks" - }, - "container_woods_design_stuff_00154": { - "groupId": "Forrest" - }, - "container_woods_combined_00000": { - "groupId": "Depo" - }, - "container_woods_design_stuff_00068": { - "groupId": "Other" - }, - "container_woods_design_stuff_00138": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00157": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00324": { - "groupId": "Rocks" - }, - "container_woods_design_stuff_00045": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00312": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00297": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00194": { - "groupId": "Village" - }, - "container_woods_design_stuff_00266": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00047": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00031": { - "groupId": "SouthRoad_Containers" - }, - "container_woods_design_stuff_00314": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00319": { - "groupId": "Rocks" - }, - "container_woods_design_stuff_00155": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00064": { - "groupId": "Other" - }, - "container_woods_design_stuff_00313": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00035": { - "groupId": "SouthRoad_Containers" - }, - "container_woods_design_stuff_00325": { - "groupId": "Rocks" - }, - "container_woods_design_stuff_00141": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00156": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00044": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00158": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00193": { - "groupId": "Village" - }, - "container_woods_design_stuff_00065": { - "groupId": "Other" - }, - "container_woods_design_stuff_00140": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00139": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00054": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00238": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00296": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00326": { - "groupId": "Rocks" - }, - "container_woods_design_stuff_00294": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00137": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00143": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00153": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00183": { - "groupId": "Village" - }, - "container_woods_design_stuff_00263": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00184": { - "groupId": "Village" - }, - "container_woods_design_stuff_00278": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00051": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00042": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00041": { - "groupId": "Radio" - }, - "container_woods_design_stuff_00030": { - "groupId": "SouthRoad_Containers" - }, - "container_woods_design_stuff_00063": { - "groupId": "Other" - }, - "container_woods_design_stuff_00235": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00204": { - "groupId": "Village" - }, - "container_woods_design_stuff_00273": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00135": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00222": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00257": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00178": { - "groupId": "Village" - }, - "container_woods_design_stuff_00256": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00272": { - "groupId": "Sawmill" - }, - "container_woods_combined_00001": { - "groupId": "" - }, - "container_woods_design_stuff_00152": { - "groupId": "Forrest" - }, - "container_woods_design_stuff_00258": { - "groupId": "Sawmill" - }, - "container_Test_for_export_00002": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00179": { - "groupId": "Village" - }, - "container_woods_design_stuff_00029": { - "groupId": "SouthRoad_Containers" - }, - "container_ProfileEditor_00004": { - "groupId": "PMC_SHOOTOUT_01" - }, - "container_woods_design_stuff_00114": { - "groupId": "PMC_SHOOTOUT_07" - }, - "container_Woods_Blockout2b_00019": { - "groupId": "PMC_SHOOTOUT_05" - }, - "container_Woods_Blockout2b_00026": { - "groupId": "PMC_SHOOTOUT_06" - }, - "container_Woods_Blockout2b_00015": { - "groupId": "PMC_SHOOTOUT_03" - }, - "container_Woods_Blockout2b_00011": { - "groupId": "PMC_SHOOTOUT_04" - }, - "container_woods_design_stuff_00121": { - "groupId": "PMC_SHOOTOUT_08" - }, - "container_woods_design_stuff_00223": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00260": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00236": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00275": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00237": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00259": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00180": { - "groupId": "Village" - }, - "container_woods_design_stuff_00288": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00225": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00290": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00224": { - "groupId": "UsecCamp" - }, - "container_woods_design_stuff_00289": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00306": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00307": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00274": { - "groupId": "Sawmill" - }, - "container_woods_design_stuff_00308": { - "groupId": "MesCamp" - }, - "container_woods_design_stuff_00205": { - "groupId": "Village" - }, - "container_woods_design_stuff_00025": { - "groupId": "PMC_SHOOTOUT_08" - }, - "container_Lighthouse_Bus_Stop_00001": { - "groupId": "" - } - } -} \ No newline at end of file diff --git a/project/gulpfile.mjs b/project/gulpfile.mjs index 3f024904..2bc8e02b 100644 --- a/project/gulpfile.mjs +++ b/project/gulpfile.mjs @@ -1,5 +1,6 @@ import crypto from "node:crypto"; import path from "node:path"; +import { path7za } from "7zip-bin"; import pkg from "@yao-pkg/pkg"; import pkgfetch from "@yao-pkg/pkg-fetch"; import fs from "fs-extra"; @@ -9,6 +10,7 @@ import download from "gulp-download"; import { exec } from "gulp-execa"; import rename from "gulp-rename"; import minimist from "minimist"; +import Seven from "node-7z"; import * as ResEdit from "resedit"; import manifest from "./package.json" assert { type: "json" }; @@ -34,6 +36,69 @@ const entries = { }; const licenseFile = "../LICENSE.md"; +/** + * Decompresses the database archives from the assets/compressed/database directory into the assets/database directory. + */ +const decompressArchives = async () => { + const compressedDir = path.resolve("assets", "compressed", "database"); + const assetsDir = path.resolve("assets", "database"); + + // Read the compressed directory and filter out only the 7z files. + let compressedFiles = []; + try { + const files = await fs.readdir(compressedDir); + compressedFiles = files.filter((file) => file.endsWith(".7z")); + } catch (error) { + console.error(`Error reading compressed directory: ${error}`); + return; + } + + if (compressedFiles.length === 0) { + console.log("No compressed database archives found."); + return; + } + + for (const compressedFile of compressedFiles) { + const compressedFilePath = path.join(compressedDir, compressedFile); + const relativeTargetPath = compressedFile.replace(".7z", ""); + const targetDir = path.join(assetsDir, relativeTargetPath); + + console.log(`Processing archive: ${compressedFile}`); + + // Clean the target directory before extracting the archive. + try { + await fs.remove(targetDir); + console.log(`Cleaned target directory: ${targetDir}`); + } catch (error) { + console.error(`Error cleaning target directory ${targetDir}: ${error}`); + continue; + } + + // Extract the archive. + await new Promise((resolve, reject) => { + const stream = Seven.extractFull(compressedFilePath, targetDir, { + $bin: path7za, + overwrite: "a", + }); + + let hadError = false; + + stream.on("end", () => { + if (!hadError) { + console.log(`Successfully decompressed: ${compressedFile}`); + resolve(); + } + }); + + stream.on("error", (err) => { + hadError = true; + console.error(`Error decompressing ${compressedFile}: ${err}`); + reject(err); + }); + }); + } +}; + /** * Transpile src files into Javascript with SWC */ @@ -94,7 +159,7 @@ const updateBuildProperties = async () => { res.entries, 1, 1033, - iconFile.icons.map((item) => item.data), + iconFile.icons.map((item) => item.data) ); const vi = ResEdit.Resource.VersionInfo.fromEntries(res.entries)[0]; @@ -106,7 +171,7 @@ const updateBuildProperties = async () => { FileDescription: manifest.description, CompanyName: manifest.name, LegalCopyright: manifest.license, - }, + } ); vi.removeStringValue({ lang: 1033, codepage: 1200 }, "OriginalFilename"); vi.removeStringValue({ lang: 1033, codepage: 1200 }, "InternalName"); @@ -189,7 +254,14 @@ const createHashFile = async () => { }; // Combine all tasks into addAssets -const addAssets = gulp.series(copyAssets, downloadPnpm, copyLicense, writeBuildDataToJSON, createHashFile); +const addAssets = gulp.series( + decompressArchives, + copyAssets, + downloadPnpm, + copyLicense, + writeBuildDataToJSON, + createHashFile +); /** * Cleans the build directory. @@ -327,7 +399,7 @@ gulp.task("build:bleedingmods", build("bleedingmods")); gulp.task("run:build", async () => await exec(serverExeName, { stdio, cwd: buildDir })); gulp.task( "run:debug", - async () => await exec("ts-node-dev -r tsconfig-paths/register src/ide/TestEntry.ts", { stdio }), + async () => await exec("ts-node-dev -r tsconfig-paths/register src/ide/TestEntry.ts", { stdio }) ); gulp.task("run:profiler", async () => { await cleanCompiled(); diff --git a/project/package.json b/project/package.json index feaa7d50..01939268 100644 --- a/project/package.json +++ b/project/package.json @@ -11,6 +11,7 @@ "node": "20.11.1" }, "scripts": { + "postinstall": "node scripts/fix-7za-permissions.js", "check:circular": "madge --circular --ts-config tsconfig.json --extensions ts ./src/", "lint": "npx @biomejs/biome lint ./", "lint:fix": "npx @biomejs/biome lint --write ./", @@ -31,9 +32,12 @@ "gen:types": "tsc -p tsconfig.typedef.json --resolveJsonModule", "gen:docs": "typedoc --options ./typedoc.json --entryPointStrategy expand ./src", "gen:items": "ts-node -r tsconfig-paths/register ./src/tools/ItemTplGenerator/ItemTplGeneratorProgram.ts", - "gen:productionquests": "ts-node -r tsconfig-paths/register ./src/tools/ProductionQuestsGen/ProductionQuestsGenProgram.ts" + "gen:productionquests": "ts-node -r tsconfig-paths/register ./src/tools/ProductionQuestsGen/ProductionQuestsGenProgram.ts", + "database:compress": "node scripts/databaseCompress.js", + "database:decompress": "node scripts/databaseDecompress.js" }, "dependencies": { + "7zip-bin": "^5.2.0", "atomically": "~1.7", "buffer-crc32": "~1.0", "date-fns": "~3.6", @@ -43,6 +47,7 @@ "json5": "~2.2", "jsonc": "~2.0", "mongoid-js": "~1.3", + "node-7z": "^3.0.0", "proper-lockfile": "~4.1", "reflect-metadata": "~0.2", "semver": "~7.6", @@ -80,8 +85,7 @@ "resedit": "~2.0", "ts-node-dev": "~2.0", "tsconfig-paths": "~4.2", - "typedoc": "~0.26", - "typemoq": "~2.1" + "typedoc": "~0.26" }, "targets": { "default": { diff --git a/project/scripts/databaseCompress.js b/project/scripts/databaseCompress.js new file mode 100644 index 00000000..ea27f262 --- /dev/null +++ b/project/scripts/databaseCompress.js @@ -0,0 +1,28 @@ +// This script compresses the locations database into a 7z archive. + +const Seven = require("node-7z"); +const path = require("node:path"); +const { path7za } = require("7zip-bin"); + +const archivePath = path.resolve(__dirname, "../assets/compressed/database/locations.7z"); +const locationsDir = path.resolve(__dirname, "../assets/database/locations/*.json"); + +let hadError = false; + +const myStream = Seven.add(archivePath, locationsDir, { + recursive: true, + $bin: path7za, + method: ["0=LZMA2"], + compressionLevel: 9, +}); + +myStream.on("end", () => { + if (!hadError) { + console.log("Compression completed successfully."); + } +}); + +myStream.on("error", (err) => { + hadError = true; + console.error(`Error compressing locations: ${err}`); +}); diff --git a/project/scripts/databaseDecompress.js b/project/scripts/databaseDecompress.js new file mode 100644 index 00000000..030d9b6a --- /dev/null +++ b/project/scripts/databaseDecompress.js @@ -0,0 +1,47 @@ +// This script removes the contents of the locations directory and then decompresses +// the locations database from a 7z archive. + +const Seven = require("node-7z"); +const path = require("node:path"); +const fs = require("fs-extra"); +const { path7za } = require("7zip-bin"); + +const archivePath = path.resolve(__dirname, "../assets/compressed/database/locations.7z"); +const databaseDir = path.resolve(__dirname, "../assets/database/locations"); + +(async () => { + try { + const archiveExists = await fs.pathExists(archivePath); + if (!archiveExists) { + console.error("Error: Archive file does not exist:", archivePath); + process.exit(1); + } + + const locationsDir = path.join(databaseDir, "locations"); + if (await fs.pathExists(locationsDir)) { + await fs.remove(locationsDir); + console.log("Existing locations directory removed."); + } + + let hadError = false; + + const myStream = Seven.extractFull(archivePath, databaseDir, { + $bin: path7za, + overwrite: "a", + }); + + myStream.on("end", () => { + if (!hadError) { + console.log("Decompression completed successfully."); + } + }); + + myStream.on("error", (err) => { + hadError = true; + console.error(`Error decompressing locations: ${err}`); + }); + } catch (err) { + console.error(`Error during decompression: ${err}`); + process.exit(1); + } +})(); diff --git a/project/scripts/fix-7za-permissions.js b/project/scripts/fix-7za-permissions.js new file mode 100644 index 00000000..e166bbc9 --- /dev/null +++ b/project/scripts/fix-7za-permissions.js @@ -0,0 +1,30 @@ +// This script sets the execute permission on the 7za binary if you're on macOS or Linux. + +const fs = require("node:fs"); +const path = require("node:path"); +const os = require("node:os"); + +const platform = os.platform(); +const arch = os.arch(); + +let sevenZipPath; + +if (platform === "darwin") { + // macOS + sevenZipPath = path.join(__dirname, "..", "node_modules", "7zip-bin", "mac", arch, "7za"); +} else if (platform === "linux") { + // Linux + sevenZipPath = path.join(__dirname, "..", "node_modules", "7zip-bin", "linux", arch, "7za"); +} else { + // Windows (or other) + process.exit(0); +} + +fs.chmod(sevenZipPath, 0o755, (err) => { + if (err) { + console.error("Failed to set execute permission on 7za:", err); + process.exit(1); + } else { + console.log("Execute permission set on 7za."); + } +}); diff --git a/project/src/Program.ts b/project/src/Program.ts index 167cdc94..a90294a7 100644 --- a/project/src/Program.ts +++ b/project/src/Program.ts @@ -2,6 +2,7 @@ import { ErrorHandler } from "@spt/ErrorHandler"; import { Container } from "@spt/di/Container"; import type { PreSptModLoader } from "@spt/loaders/PreSptModLoader"; import { App } from "@spt/utils/App"; +import { DatabaseDecompressionUtil } from "@spt/utils/DatabaseDecompressionUtil"; import { Watermark } from "@spt/utils/Watermark"; import { container } from "tsyringe"; @@ -21,6 +22,10 @@ export class Program { const watermark = childContainer.resolve("Watermark"); watermark.initialize(); + const databaseDecompressionUtil = + childContainer.resolve("DatabaseDecompressionUtil"); + await databaseDecompressionUtil.initialize(); + const preSptModLoader = childContainer.resolve("PreSptModLoader"); Container.registerListTypes(childContainer); await preSptModLoader.load(childContainer); diff --git a/project/src/di/Container.ts b/project/src/di/Container.ts index 4433426c..d66367ab 100644 --- a/project/src/di/Container.ts +++ b/project/src/di/Container.ts @@ -253,6 +253,7 @@ import { StaticRouterModService } from "@spt/services/mod/staticRouter/StaticRou import { App } from "@spt/utils/App"; import { AsyncQueue } from "@spt/utils/AsyncQueue"; import { CompareUtil } from "@spt/utils/CompareUtil"; +import { DatabaseDecompressionUtil } from "@spt/utils/DatabaseDecompressionUtil"; import { DatabaseImporter } from "@spt/utils/DatabaseImporter"; import { EncodingUtil } from "@spt/utils/EncodingUtil"; import { HashUtil } from "@spt/utils/HashUtil"; @@ -419,6 +420,9 @@ export class Container { private static registerUtils(depContainer: DependencyContainer): void { // Utils depContainer.register("App", App, { lifecycle: Lifecycle.Singleton }); + depContainer.register("DatabaseDecompressionUtil", DatabaseDecompressionUtil, { + lifecycle: Lifecycle.Singleton, + }); depContainer.register("DatabaseImporter", DatabaseImporter, { lifecycle: Lifecycle.Singleton, }); diff --git a/project/src/utils/DatabaseDecompressionUtil.ts b/project/src/utils/DatabaseDecompressionUtil.ts new file mode 100644 index 00000000..17ca893d --- /dev/null +++ b/project/src/utils/DatabaseDecompressionUtil.ts @@ -0,0 +1,143 @@ +import * as path from "node:path"; +import { path7za } from "7zip-bin"; +import { ILogger } from "@spt/models/spt/utils/ILogger"; +import * as fs from "fs-extra"; +import * as Seven from "node-7z"; +import { inject, injectable } from "tsyringe"; + +@injectable() +export class DatabaseDecompressionUtil { + private compressedDir: string; + private assetsDir: string; + private compiled: boolean; + + constructor(@inject("PrimaryLogger") protected logger: ILogger) { + this.compressedDir = path.normalize("./assets/compressed/database"); + this.assetsDir = path.normalize("./assets/database"); + this.compiled = this.isCompiled(); + } + + /** + * Checks if the application is running in a compiled environment. A simple check is done to see if the relative + * assets directory exists. If it does not, the application is assumed to be running in a compiled environment. All + * relative asset paths are different within a compiled environment, so this simple check is sufficient. + */ + private isCompiled(): boolean { + const assetsDir = path.normalize("./assets"); + return !fs.existsSync(assetsDir); + } + + /** + * Initializes the database compression utility. + * + * This method will decompress all 7-zip archives within the compressed database directory. The decompressed files + * are placed in their respective directories based on the name and location of the compressed file. + */ + public async initialize(): Promise { + if (this.compiled) { + this.logger.debug("Skipping database decompression in compiled environment"); + return; + } + + try { + const compressedFiles = await this.getCompressedFiles(); + if (compressedFiles.length === 0) { + this.logger.debug("No database archives found"); + return; + } + + for (const compressedFile of compressedFiles) { + await this.processCompressedFile(compressedFile); + } + this.logger.info("Database archives processed"); + } catch (error) { + this.logger.error(`Error handling database archives: ${error}`); + } + } + + /** + * Retrieves a list of all 7-zip archives within the compressed database directory. + */ + private async getCompressedFiles(): Promise { + try { + const files = await fs.readdir(this.compressedDir); + const compressedFiles = files.filter((file) => file.endsWith(".7z")); + return compressedFiles; + } catch (error) { + this.logger.error(`Error reading database archive directory: ${error}`); + return []; + } + } + + /** + * Processes a compressed file by checking if the target directory is empty, and if so, decompressing the file into + * the target directory. + */ + private async processCompressedFile(compressedFileName: string): Promise { + this.logger.info("Processing database archives..."); + + const compressedFilePath = path.join(this.compressedDir, compressedFileName); + const relativeTargetPath = compressedFileName.replace(".7z", ""); + const targetDir = path.join(this.assetsDir, relativeTargetPath); + + try { + this.logger.debug(`Processing: ${compressedFileName}`); + + const isTargetDirEmpty = await this.isDirectoryEmpty(targetDir); + if (!isTargetDirEmpty) { + this.logger.debug(`Archive target directory not empty, skipping: ${targetDir}`); + return; + } + + await this.decompressFile(compressedFilePath, targetDir); + + this.logger.debug(`Successfully processed: ${compressedFileName}`); + } catch (error) { + this.logger.error(`Error processing ${compressedFileName}: ${error}`); + } + } + + /** + * Checks if a directory exists and is empty. + */ + private async isDirectoryEmpty(directoryPath: string): Promise { + try { + const exists = await fs.pathExists(directoryPath); + if (!exists) { + return true; // Directory doesn't exist, consider it empty. + } + const files = await fs.readdir(directoryPath); + return files.length === 0; + } catch (error) { + this.logger.error(`Error checking if directory is empty ${directoryPath}: ${error}`); + throw error; + } + } + + /** + * Decompresses a 7-zip archive to the target directory. + */ + private decompressFile(archivePath: string, destinationPath: string): Promise { + return new Promise((resolve, reject) => { + const myStream = Seven.extractFull(archivePath, destinationPath, { + $bin: path7za, + overwrite: "a", + }); + + let hadError = false; + + myStream.on("end", () => { + if (!hadError) { + this.logger.debug(`Decompressed ${archivePath} to ${destinationPath}`); + resolve(); + } + }); + + myStream.on("error", (err) => { + hadError = true; + this.logger.error(`Error decompressing ${archivePath}: ${err}`); + reject(err); + }); + }); + } +}